I am developing a Java application to exchange xml files with some
other applications that could include JAVA and .NET.
I would like to receive and return an XML with all its tags in a String.
I have built the Document in a DOM an then I want to convert it into a
String as you see in the folowing example:
public String MyWebService (String parameter) {
}
I have installed the Apache SOAP.
Could I return an Element with .NET applications like this: ?
public Element MyWebService (Element parameter)
{}
If this is possible, should I register any serializer in the
Descriptor.xml of the Apache SOAP ?
Could you give me an example.