Have found that the error does only occur when the property is accessed as a
public field, without accessor methods defined.
Change field to private, and create accessor methods, regenerate
wsdl+mapping.xml, and everything works correctly.
But I think the first variant should also work, therefo
Have set up web service in JBoss 4.0.2 of type document/literal,
the argument of my method is a user defined type which contains a field of type
byte[].
class DataDTO() {
| public byte[] data;
| }
the wsdl (generated with wscompile as recommended) contains the schema for this
and looks
Thanks for the hint.
Any comments on when/how this might get fixed.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883615#3883615
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883615
In the meantime I have looked further into this.
When my hello world web service is hosted in .NET (version 1.1), the xml tags
of the answer are assigned to the target namespace.
When the same service is run from JBoss, the answer tags are not part of the
namespace. This latter version is parse
Have created a hello world web service in .NET and want to call it from JBoss
4.0.2 on j2se1.4.2.
I have encountered following problem:
org.xml.sax.SAXException: Invalid element in (packagename).HelloWorldResponse
- HelloWorldResult
After looking around a bit in the code I found a place wher