Hey Todd,

there is nothing much in the code - I open a server socket and I am simply read everything
coming in using readLine() ... such as:

                          while ( (line = in.readLine() ) != null) {
System.out.println("["+this+"]"+"Received from Axis=["+ line+"]");
                          }

But I am realizing this is not as straight-forward. Are the raw SOAP message encoded/serialized
in a way that simple text reads is a sophomoric way to read them?

Thanks

Toon Wouters wrote:
Can you post the code that processes the incoming data and prints out those lines?

Toon

On 5/23/07, *Demetris G* < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:


    To make this more specific, this is what I get coming into my server
    socket from
    the Axis client:

    Waiting for Axis outgoing SOAP message ...
    [Thread[Thread-1,5,main]]Received from Axis=[POST
    /axis/services/remoteFW HTTP/1.0]
    [Thread[Thread-1,5,main]]Received from Axis=[Content-Type: text/xml;
    charset=utf-8]
    [Thread[Thread-1,5,main]]Received from Axis=[Accept:
    application/soap+xml, application/dime, multipart/related, text/*]
    [Thread[Thread-1,5,main]]Received from Axis=[User-Agent: Axis/1.4]
    [Thread[Thread-1,5,main]]Received from Axis=[Host: 127.0.0.1:9090
    <http://127.0.0.1:9090>]
    [Thread[Thread-1,5,main]]Received from Axis=[Cache-Control: no-cache]
    [Thread[Thread-1,5,main]]Received from Axis=[Pragma: no-cache]
    [Thread[Thread-1,5,main]]Received from Axis=[SOAPAction: ""]
    [Thread[Thread-1,5,main]]Received from Axis=[Content-Length: 398]
    [Thread[Thread-1,5,main]]Received from Axis=[]

    But then it stalls here waiting for something more that never comes ..
    any ideas ?

    Thanks


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



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

Reply via email to