[JBossWS] - Cannot deploy web service
by wero_shinoda
Hi everyone, I have a problem deploying a JAX web service.
I created the web service on my computer using eclipse, I have no problem deploying it to JBoss locally.
But now I need to deploy the same web service on the test server of my company, and I just cannot do it! I changed the wsdlsoap:address location from localhost, to the address of the test server, then I copied the EAR file to the deploy folder of JBoss on the test server, but the service is not available, The tomcat status shows an …
[View More]application with the name of my web service, but when I enter the address of my service, the following shows:
AXIS error
No service is available at this URL
I just don't know what to do, and nobody here seems to know either, can you please help me.
Thanks!
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4247360#4247360
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4247360
[View Less]
15 years, 5 months
[JBossWS] - Re: String being escaped
by nicksyd
This is my finding so far after debugging through the jboss-xb-binding source code
The class MarshallerImpl() is the core class that does the serialization of the result from the objects to XML. The main method to do the serialization is called marshal(...) [ which have got several method implementation ]. The marshal (..) method calls an internal method (which is a private method) called marshallInternal(..). Basically what the marshallInternal(..) method does is it serialize the created "…
[View More]elements" and "value" to a String representation and it uses a class called ContentWriter (which is an implementation of org.xml.sax.ContentHandler interface), inside ContentWriter the characters(..) method implementation "normalize" all string character, this is where the problem lies as it converts all different character such as <,>,&,\," to it's respective decoded style <,>,&,',"
The question that I'm wondering is this a bug , a feature or it's intentionally put in as a JBoss implementation ?
I tried the same sample in WebSphere and the output inside the element is not being escaped.
Can anybody point me to the right direction ?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4247128#4247128
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4247128
[View Less]
15 years, 5 months