[jboss-user] [JBossWS] - Re: implicit namespace support?
jktinoco
do-not-reply at jboss.com
Mon Jul 16 21:49:02 EDT 2007
Hi,
I was using JBoss 4.0.5 and the next SOAP request works perfectly, now with JBoss 4.2 this request doesn't works.
| <?xml version="1.0"?>
| <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
| <SOAP-ENV:Body>
| <find xmlns="http://ejb.evoti.com/">
| <arg0>3</arg0>
| </find>
| </SOAP-ENV:Body>
| </SOAP-ENV:Envelope>
|
This same request with explicit namespace works perfectly in Jboss 4.2
| <?xml version="1.0"?>
| <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xmlns:ejb="http://ejb.evoti.com/" >
| <SOAP-ENV:Body>
| <ejb:find >
| <arg0>3</arg0>
| </ejb:find>
| </SOAP-ENV:Body>
| </SOAP-ENV:Envelope>
|
Why doesn't work in JBoss 4.2 my first request?
Thanks in advance!!
Jair Karim
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064799#4064799
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064799
More information about the jboss-user
mailing list