Hi all!

I'm new to Axis and I'm sorry if my question sounds silly...

I developed a webservice with Axis 1.4 and Java. Furthermore I wrote a Client 
to access this webserver. 
What I'm supposed to do now is to examine the SOAP Body, if it really contains 
the message that is contained and to validate the message for my purposes. So I 
would like to read the XML of the SOAP Body. Is that possible? How can I do 
this?

Some more information:
I created the webservice by writing the wsdl-document and then using the 
wsdl2java command for creating the java classes.

An excerpt of my client code:

RetManService service = new RetManServiceLocator();
RetMan stub;
try {
    stub = service.getretMan();
    result = stub.search(query);
...
}

An excerpt of my webserver code:

public class RetManSOAPBindingImpl implements retrievalJava.RetMan{
    public MQueryType search(MQueryType queryType) throws RemoteException {
    ...
    }
}

Thanks in advance for your help!

Kerstin

-- 
Psssst! Schon vom neuen GMX MultiMessenger gehört?
Der kanns mit allen: http://www.gmx.net/de/go/multimessenger

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to