Quote Originally Posted by vinay563 View Post
1.How can i publish the jms details like defaulturi(jms:RequestQueue)and the connectionurl (tcp://localhost:61616) in the wsdl using the DynamicWsdl11Definition
You can set the locationUri in the XsdBasedSoap11Wsdl4jDefinitionBuilder. Just change it from a HTTP location to a jms location. Note that this could mean that you need to have multiple WSDLs, one for HTTP and one for JMS. You can't specify the connection url in there, because I think that is ActiveMQ-specific.

Quote Originally Posted by vinay563 View Post
2.Can i access the jms message before sending it over the detination similarly on the service side can i access the jmsmessage before the endpoint is invoked.
You currently can't. That might be a nice feature to add.

Quote Originally Posted by vinay563 View Post
3.how can i set the jms replyto property
You can define a replyToName in the jsm uri, i.e. jms:requestQueue?replyToName=responseQueue

Quote Originally Posted by vinay563 View Post
4.how to provide the jms jndi related properties.
You mean the connection factory name and others? These properties are not supported, since in spring you either don't use JNDI for getting a connectionfactory, or use <jee:jndi-lookup/> to inject a connectionfactory into the messagesender.

I hope you like the JMS support .