1 2 3 4 Previous Next 47 Replies Latest reply on Jan 8, 2008 10:04 AM by beve Go to original post
      • 45. Re: Webservice integration questions
        beve

        Hey Vikas,

        I've resent the mail now. The name of the zip file is smooks.esb.piz.

        Let me know if you don't get it.

        /Daniel

        • 46. Re: Webservice integration questions
          vikas_sm

          Hi Daniel, Got it working now . Thanks a lot.
          Can we get rid of the namespace that is getting added with the return tag. I think i should start seperate thread for this query.

          When will this change be officialy available in JBossESB.
          Regards/Vikas

          • 47. Re: Webservice integration questions
            beve

            Hi Vikas,

            glad to hear that you got it working.

            To strip the namespaces off the returned xml this should work:

            <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
             xmlns:ns2="http://webservice_producer/goodbyeworld"
             exclude-result-prefixes="ns2 xhtml env">
            
             <xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes" />
            
             <xsl:template match="/">
             <return-message>
             <xsl:value-of select="env:Envelope/env:Body/ns2:sayGoodbyeResponse/return"/>
             </return-message>
             </xsl:template>
             </xsl:stylesheet>
            


            There is a Jira for this: http://jira.jboss.com/jira/browse/JBESB-1385. You can vote for it which can help :)
            I is currently planned for Version 4.3.

            Regards,

            Daniel

            1 2 3 4 Previous Next