We know that solace topic is just message property, and there are topic endpoint for JMS compliant, but per my test (VMR 8.10.0.1092):
So, i do NOT know how to use solace topic endpoint with JMS API.
Topic endpoints are one of the two type of endpoints for the purpose of spooling guaranteed messages. Unlike queues, topic endpoints offer an ingress selector, but can only have one topic subscription (wildcards are allowed).
No. Subscription of topic endpoints can only be managed by the application and not the UI.
Topic endpoints are only created when a MessageConsumer, or a durable subscriber is used by the JMS application. It has nothing to do with publishers.
It sounds like you are using a MessageConsumer that is subscribing to topic "T/sampleTopic". MessageConsumers on topics are mapped internally to non-durable topic endpoints.
Yes, this is expected. Durable subscription will be mapped internally to a durable topic endpoint.
It sounds like you have enabled "Dynamic Durables" in the connection factory, which causes the Solace JMS API to create endpoints. "Endpoint Property Mismatch" indicates that the endpoint that the API is trying to create contains one or more properties that does not match the one that already exists. Since "Dynamic Durables" is enabled, then you should leave creation of endpoints to the API. Note that the default setting of "Dynamic Durables" is disabled.