You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by Davanum Srinivas <da...@gmail.com> on 2004/05/12 05:09:08 UTC

Sandesha - Readme for running tests

Jaliya, Nimalan,

Can you guys please check in a readme.txt for absolute beginners on
how to run the server and the client (step-by-step)? Am going to try
and follow the steps to recreate the NPE for Axis.

thanks,
dims

Re: step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readmefor running tests]

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
snimalan@opensource.lk wrote:

>Thanks Alek,
>We will look in that.
>Becouse we too like to use the same JVM to run whole Client side component..
>
>On my understanding, what we need is we have to extend the
>SimpleAxisServer class and have to we configure the Object in the Client
>Message.
>Colud you please sugguest any way to configure the Object.
>
>Please understand That, now the response or ack will be in a different
>HTTP connection and to a Referencible URL.
>That means, In the client side have to have a Server(Listner) to get the
>http post from server side.
>For that we found that deploying a service in the Tomcat..
>Whether there is any option?
>  
>
i think there is an optionto start SimpleAxisServer in the same JVM and 
use its endpoint (acting as node, endpoint, socket  listner). did you 
try to do this?

thanks,

alek

-- 
The best way to predict the future is to invent it - Alan Kay


Re: step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readmefor running tests]

Posted by sn...@opensource.lk.
Thanks Alek,
We will look in that.
Becouse we too like to use the same JVM to run whole Client side component..

On my understanding, what we need is we have to extend the
SimpleAxisServer class and have to we configure the Object in the Client
Message.
Colud you please sugguest any way to configure the Object.

Please understand That, now the response or ack will be in a different
HTTP connection and to a Referencible URL.
That means, In the client side have to have a Server(Listner) to get the
http post from server side.
For that we found that deploying a service in the Tomcat..
Whether there is any option?

Thanks
Nimalan


> snimalan@opensource.lk wrote:
>
>>"Aleksander Slominski" wrote it>>
>>
>>
>>
>>>>moreover it looks to me that SimpleAxisServer should have been used
>>>>on client side to support async communication endpoint if
>>>> SimpleAxisServer
>>>>was started int he same JVM ...
>>>>
>>>>
>>>>
>>
>>Please make clear that Alek,
>>Are we going to Change in the Axis Implementation OR
>>Are we going to Use the Axis Extendible Object (Handelr etc...).
>>
>>Main problems:
>>1. Retranmission should be possible by the Objects.
>>2. The response message will be able to set to the message context and
>>send to back
>>
>>
>
> what i mean is that Call java is no longer working without externally
> deploying RMClientService . instead i thin it make sense to have
> RMClientService  hosted in the same JVM where Call is running. to make
> it happen i think SimpleAxisServer could be started in-process?
>
> thanks,
>
> alek
>
> --
> The best way to predict the future is to invent it - Alan Kay
>
>
>


Re: step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readmefor running tests]

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
snimalan@opensource.lk wrote:

>"Aleksander Slominski" wrote it>>
>
>  
>
>>>moreover it looks to me that SimpleAxisServer should have been used
>>>on client side to support async communication endpoint if SimpleAxisServer
>>>was started int he same JVM ...
>>>
>>>      
>>>
>
>Please make clear that Alek,
>Are we going to Change in the Axis Implementation OR
>Are we going to Use the Axis Extendible Object (Handelr etc...).
>
>Main problems:
>1. Retranmission should be possible by the Objects.
>2. The response message will be able to set to the message context and
>send to back
>  
>

what i mean is that Call java is no longer working without externally 
deploying RMClientService . instead i thin it make sense to have 
RMClientService  hosted in the same JVM where Call is running. to make 
it happen i think SimpleAxisServer could be started in-process?

thanks,

alek

-- 
The best way to predict the future is to invent it - Alan Kay


Re: step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readmefor running tests]

Posted by sn...@opensource.lk.
"Aleksander Slominski" wrote it>>

>>moreover it looks to me that SimpleAxisServer should have been used
>>on client side to support async communication endpoint if SimpleAxisServer
>>was started int he same JVM ...
>>

Please make clear that Alek,
Are we going to Change in the Axis Implementation OR
Are we going to Use the Axis Extendible Object (Handelr etc...).

Main problems:
1. Retranmission should be possible by the Objects.
2. The response message will be able to set to the message context and
send to back

Thanks
Nimalan




> jaliya@opensource.lk wrote:
>
>>Hi all,
>>
>>This is just to clarify the message path:
>>
>>The client actually invokes the required WebService(Business Service)
>>>From the client side if he needs reliability he has to deploy
>>RMClientRequestHandler and the RMClientResponseHandler in the request and
>>response paths.
>>
>>Then he should have RMClientService running on axis/tomcat in his side.
>>But cient doesnot send the messages to RMClientService but it is the
>>RMClientRequesthandler that do the calling with all the parameters to the
>>RMClientService.
>>
>>Then RMCleitnService acts as the ClientEndpoint and will send the message
>>to the server side using the original message sent by the client.
>>So there may be retransmissions from this point.
>>
>>When there is a response the RMClientService will send it to the client
>>back using the response path.
>>
>>Server side logic is mainly handle by the RMProvider so hope that no
>>complexities there..
>>
>>
>>
> i had to reverse-engineer design and it seems i got it right ...
>
>>Corrections Required:
>>
>>The client side architecture ha the following drawbacks
>>
>>Client (java Client scenarion_1_1_client etc.) invokes the service
>>(Actuall business service) but they will hang there untill
>> RMClientService
>>returns something for them. This method is used because we need a method
>>to transfer the response back to the client.
>>
>>
>>
> yes. that is what i meant by lack of async communication channel.
>
> IMHO it is not good idea to use blocking connection from client to
> RMClientService as TCP may time out and i have seen it happening. you
> can override socket timeout but that will also mean that client may
> block possibly indefinitely (or for very long time) for RMClientService
> response (not very async way to do thing for one-way messages) or this
> happens on client side in a separate thread?
>
>>If the reliability is handle between two web services then it will not be
>>a problem because we have a referencaiable entity with the client.
>>
>>
> could you clarify that? what referencaiable entity?
>
>>In order to get the full randomness we can use threading for sample
>>clients, but for the interop we don't need that kind of clients.
>>
>>
> could you clarify what do you mean by randomness - where is it needed?
>
>>Please note that the client side require some architectural changes and
>> we
>>need some advices on the actual web service usage with respect to the
>> axis
>>client side processing.
>>
>>
> OK
>
>>This is just to clarify some matters.
>>After the workshop will be setting up the site agian with diagrams.
>>
>>
> sending emails (as you did now) and communicating your design choices is
> more important than diagrams ...
>
> thanks,
>
> alek
>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>>Davanum Srinivas wrote:
>>>
>>>
>>>
>>>>Can you guys please check in a readme.txt for absolute beginners on
>>>>how to run the server and the client (step-by-step)?
>>>>
>>>>
>>>>
>>>it is more tricky than i expected ... it seems that Scenario_1_1_Client
>>>does not really send a messages
>>>directly to the service but instead it is forwarded (encapsulated with
>>>meaningful parameter names
>>>such as arg1, arg2, ..., argN -- see wire dump below) to RMClientService
>>>(and that service location
>>>path is *hardcoded* to something
>>>http://localhost:7080/axis/services/RMClientService?wsdl
>>>(see org.apache.sandesha.Constants.AXIS_SERVICES and similar constants)
>>>and actual host:port is put in interop/**/ClientDeploy.wsdd
>>>
>>>-- it took me a while to figure that out as i had  target service
>>> location
>>>port set to 7080 and ClientDeploy.wsdd was set 8070 so when debugging
>>>i could not believe my own eyes when 80 was being replaced with 70
>>>and vice versa ...
>>>
>>>debugging errors like that is too much fun for one guy too handle ...
>>>(but it seems it worked see below)
>>>
>>>the design/model is complicated (documentation anywhere?!)
>>>as it seems that we have:
>>>
>>>client -> RMClientService (axis/tomcat) <-> PingService (axis/tomcat)
>>>
>>>it is not clear for me how back communication can happen in async way
>>> i.e
>>>client <-> RMClientService
>>>so only polling is supported?
>>>
>>>moreover it looks to me that SimpleAxisServer should have been used
>>>on client side to support async communication endpoint if
>>> SimpleAxisServer
>>>was started int he same JVM ...
>>>
>>>i have added to build.xml "deploy" target: make sure to set correctly
>>> set
>>>build.properties (copy from build.properties.txt) with location
>>>of webapps/axis and then do "ant deploy"
>>>
>>>that should copy required class/jar files and deploy all necessary
>>>services into tomcat/webapps/axis (as specified in build.properties)
>>>
>>>to run client do "ant client.interop" (that needs more work to pass
>>>somehow parameters - using system properties?)
>>>it will deploy client side wsdd file (client-config.wsdd in current dir)
>>>and run Scenario_1_1_Client
>>>
>>>client.interop:
>>>     [java] log4j:WARN No appenders could be found for logger
>>>(org.apache.axis.i18n.ProjectResourceBundle).
>>>     [java] log4j:WARN Please initialize the log4j system properly.
>>>     [java] <?xml version="1.0" encoding="UTF-8"?>
>>>     [java] <Admin>Done processing</Admin>
>>>     [java] Client started......
>>>     [java] log4j:WARN No appenders could be found for logger
>>>(org.apache.axis.i18n.ProjectResourceBundle).
>>>     [java] log4j:WARN Please initialize the log4j system properly.
>>>     [java] Sending ping messages to
>>>http://localhost:7080/axis/services/PingService
>>>
>>>BUILD SUCCESSFUL
>>>
>>>you can find dump of SOAP messages below - based on them it looked
>>>like it worked (maybe ... )
>>>
>>>
>>>
>>>>Am going to try
>>>>and follow the steps to recreate the NPE for Axis.
>>>>
>>>>
>>>>
>>>>
>>>what NPE? i had updated axis.jar to current CVS version so it may be
>>>fixed now?
>>>
>>>thanks,
>>>
>>>alek
>>>
>>>ps. wire dumps:
>>>
>>>########################################################################
>>># Thu May 13 01:25:08 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1513 bytes)]
>>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1217
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>>   <arg1><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:x
>>>si="http://www.w3.org/2001/XMLSchema-instance">
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>>ing/" xmlns:ns1="PingService">
>>>   <Text xsi:type="xsd:string">Ping 1</Text>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope></arg1>
>>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>>   <arg5>false</arg5>
>>>   <arg6>false</arg6>
>>>   <arg7>false</arg7>
>>>   <arg8>wsrm:Ping</arg8>
>>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>>  </ns1:clientMethod>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1809 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1522
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>1</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
>>>6731D18CBA</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 1</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:09 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1646 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1348
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>>env:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>>ng">uuid:485954D0-A4A6-11D8-8118-E1A30B23DB7E</wsa:MessageID>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:09 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:09 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1959 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1672
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>1</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
>>>6731D18CBA</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>  </wsrm:AckRequested>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 1</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:11 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>>########################################################################
>>>
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>[src  => dest, (1476 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1178
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <wsrm:AcknowledgementRange Upper="1" Lower="1"/>
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>########################################################################
>>>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:11 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:11 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[dest => src, (600 bytes)]
>>>HTTP/1.1 200 OK
>>>Content-Type: text/xml;charset=utf-8
>>>Date: Thu, 13 May 2004 06:25:13 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethodResponse
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>>ap/encoding/" xmlns:ns1="RMClientService">
>>>   <clientMethodReturn xsi:nil="true"/>
>>>  </ns1:clientMethodResponse>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:13 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:14 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:14 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1513 bytes)]
>>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1217
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>>   <arg1><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:x
>>>si="http://www.w3.org/2001/XMLSchema-instance">
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>>ing/" xmlns:ns1="PingService">
>>>   <Text xsi:type="xsd:string">Ping 2</Text>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope></arg1>
>>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>>   <arg5>false</arg5>
>>>   <arg6>false</arg6>
>>>   <arg7>false</arg7>
>>>   <arg8>wsrm:Ping</arg8>
>>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>>  </ns1:clientMethod>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:14 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:14 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1809 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1522
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>2</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
>>>B49DB96358</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 2</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:15 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:15 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1646 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1348
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>>env:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>>ng">uuid:4B76E880-A4A6-11D8-8118-93C724990056</wsa:MessageID>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:15 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:15 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:15 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:15 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1959 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1672
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>2</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
>>>B49DB96358</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>  </wsrm:AckRequested>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 2</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:17 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>>
>>>[src  => dest, (1476 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1178
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <wsrm:AcknowledgementRange Upper="2" Lower="1"/>
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:17 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:17 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[dest => src, (600 bytes)]
>>>HTTP/1.1 200 OK
>>>Content-Type: text/xml;charset=utf-8
>>>Date: Thu, 13 May 2004 06:25:19 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethodResponse
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>>ap/encoding/" xmlns:ns1="RMClientService">
>>>   <clientMethodReturn xsi:nil="true"/>
>>>  </ns1:clientMethodResponse>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:19 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1512 bytes)]
>>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1216
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>>   <arg1><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:x
>>>si="http://www.w3.org/2001/XMLSchema-instance">
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>>ing/" xmlns:ns1="PingService">
>>>   <Text xsi:type="xsd:string">Ping 3</Text>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope></arg1>
>>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>>   <arg5>false</arg5>
>>>   <arg6>true</arg6>
>>>   <arg7>false</arg7>
>>>   <arg8>wsrm:Ping</arg8>
>>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>>  </ns1:clientMethod>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1832 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1545
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsrm:LastMessage/>
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>3</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
>>>B5F61FAD79</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 3</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:19 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1646 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1348
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>>env:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>>ng">uuid:4F0120B0-A4A6-11D8-8118-C509F76C8783</wsa:MessageID>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:20 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:20 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:22 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:22 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1982 bytes)]
>>>POST /axis/services/PingService HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: localhost:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1695
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>>xmlns:wsa="
>>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>xmlns:wsu="http://docs.oasis-o
>>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>>> <soapenv:Header>
>>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>>   <wsrm:LastMessage/>
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>   <wsrm:MessageNumber>3</wsrm:MessageNumber>
>>>  </wsrm:Sequence>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>>soapenv:actor="http://schemas.xmlsoap
>>>.org/soap/actor/next"
>>>soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
>>>B5F61FAD79</wsa:MessageID>
>>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>>soapenv:actor="http://schemas.xmlsoap.
>>>org/soap/actor/next"
>>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>>ces/PingService</wsa:To>
>>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>>  </wsrm:AckRequested>
>>> </soapenv:Header>
>>> <soapenv:Body>
>>>  <ns1:Ping
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>>lns:ns1="PingService">
>>>     <Text xsi:type="xsd:string">Ping 3</Text>
>>>
>>>  </ns1:Ping>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>########################################################################
>>># Thu May 13 01:25:23 EST 2004
>>># TCPReflector
>>># Connection initiated from: /127.0.0.1
>>>########################################################################
>>>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:23 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:23 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>########################################################################
>>># Thu May 13 01:25:23 EST 2004
>>># TCPReflector
>>># Connection established from: /127.0.0.1:7080
>>># To                         : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[src  => dest, (1476 bytes)]
>>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>>Content-Type: text/xml; charset=utf-8
>>>Accept: application/soap+xml, application/dime, multipart/related,
>>> text/*
>>>User-Agent: Axis/1.2beta
>>>Host: 127.0.0.1:7080
>>>Cache-Control: no-cache
>>>Pragma: no-cache
>>>SOAPAction: ""
>>>Content-Length: 1178
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Header>
>>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>>xmlns:wsrm="http://sc
>>>hemas.xmlsoap.org/ws/2004/03/rm">
>>>   <wsrm:AcknowledgementRange Upper="3" Lower="1"/>
>>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>>  </wsrm:SequenceAcknowledgement>
>>><ns1:From
>>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>>> <w
>>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv:mustUnd
>>>erstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>>soapenv
>>>:mustUnderstand="0"
>>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>>
>>>
>>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>>
>>>>
>>> </soapenv:Header>
>>> <soapenv:Body/>
>>></soapenv:Envelope>
>>>[dest => src, (127 bytes)]
>>>HTTP/1.1 202 Accepted
>>>Content-Length: 0
>>>Date: Thu, 13 May 2004 06:25:23 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>>
>>>########################################################################
>>># Thu May 13 01:25:23 EST 2004
>>># TCPReflector
>>># Removing connection from: /127.0.0.1:7080
>>># To                      : localhost/127.0.0.1:8080
>>>########################################################################
>>>
>>>[dest => src, (600 bytes)]
>>>HTTP/1.1 200 OK
>>>Content-Type: text/xml;charset=utf-8
>>>Date: Thu, 13 May 2004 06:25:25 GMT
>>>Server: Apache-Coyote/1.1
>>>Connection: close
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><soapenv:Envelope
>>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>>hema-instance">
>>> <soapenv:Body>
>>>  <ns1:clientMethodResponse
>>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>>ap/encoding/" xmlns:ns1="RMClientService">
>>>   <clientMethodReturn xsi:nil="true"/>
>>>  </ns1:clientMethodResponse>
>>> </soapenv:Body>
>>></soapenv:Envelope>
>>>
>>>--
>>>The best way to predict the future is to invent it - Alan Kay
>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>
>
> --
> The best way to predict the future is to invent it - Alan Kay
>
>
>


Re: step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readmefor running tests]

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
jaliya@opensource.lk wrote:

>Hi all,
>
>This is just to clarify the message path:
>
>The client actually invokes the required WebService(Business Service)
>>From the client side if he needs reliability he has to deploy
>RMClientRequestHandler and the RMClientResponseHandler in the request and
>response paths.
>
>Then he should have RMClientService running on axis/tomcat in his side.
>But cient doesnot send the messages to RMClientService but it is the
>RMClientRequesthandler that do the calling with all the parameters to the
>RMClientService.
>
>Then RMCleitnService acts as the ClientEndpoint and will send the message
>to the server side using the original message sent by the client.
>So there may be retransmissions from this point.
>
>When there is a response the RMClientService will send it to the client
>back using the response path.
>
>Server side logic is mainly handle by the RMProvider so hope that no
>complexities there..
>
>  
>
i had to reverse-engineer design and it seems i got it right ...

>Corrections Required:
>
>The client side architecture ha the following drawbacks
>
>Client (java Client scenarion_1_1_client etc.) invokes the service
>(Actuall business service) but they will hang there untill RMClientService
>returns something for them. This method is used because we need a method
>to transfer the response back to the client.
>
>  
>
yes. that is what i meant by lack of async communication channel.

IMHO it is not good idea to use blocking connection from client to 
RMClientService as TCP may time out and i have seen it happening. you 
can override socket timeout but that will also mean that client may 
block possibly indefinitely (or for very long time) for RMClientService 
response (not very async way to do thing for one-way messages) or this 
happens on client side in a separate thread?

>If the reliability is handle between two web services then it will not be
>a problem because we have a referencaiable entity with the client.
>  
>
could you clarify that? what referencaiable entity?

>In order to get the full randomness we can use threading for sample
>clients, but for the interop we don't need that kind of clients.
>  
>
could you clarify what do you mean by randomness - where is it needed?

>Please note that the client side require some architectural changes and we
>need some advices on the actual web service usage with respect to the axis
>client side processing.
>  
>
OK

>This is just to clarify some matters.
>After the workshop will be setting up the site agian with diagrams.
>  
>
sending emails (as you did now) and communicating your design choices is 
more important than diagrams ...

thanks,

alek

>
>
>
>
>
>
>
>  
>
>>Davanum Srinivas wrote:
>>
>>    
>>
>>>Can you guys please check in a readme.txt for absolute beginners on
>>>how to run the server and the client (step-by-step)?
>>>
>>>      
>>>
>>it is more tricky than i expected ... it seems that Scenario_1_1_Client
>>does not really send a messages
>>directly to the service but instead it is forwarded (encapsulated with
>>meaningful parameter names
>>such as arg1, arg2, ..., argN -- see wire dump below) to RMClientService
>>(and that service location
>>path is *hardcoded* to something
>>http://localhost:7080/axis/services/RMClientService?wsdl
>>(see org.apache.sandesha.Constants.AXIS_SERVICES and similar constants)
>>and actual host:port is put in interop/**/ClientDeploy.wsdd
>>
>>-- it took me a while to figure that out as i had  target service location
>>port set to 7080 and ClientDeploy.wsdd was set 8070 so when debugging
>>i could not believe my own eyes when 80 was being replaced with 70
>>and vice versa ...
>>
>>debugging errors like that is too much fun for one guy too handle ...
>>(but it seems it worked see below)
>>
>>the design/model is complicated (documentation anywhere?!)
>>as it seems that we have:
>>
>>client -> RMClientService (axis/tomcat) <-> PingService (axis/tomcat)
>>
>>it is not clear for me how back communication can happen in async way i.e
>>client <-> RMClientService
>>so only polling is supported?
>>
>>moreover it looks to me that SimpleAxisServer should have been used
>>on client side to support async communication endpoint if SimpleAxisServer
>>was started int he same JVM ...
>>
>>i have added to build.xml "deploy" target: make sure to set correctly set
>>build.properties (copy from build.properties.txt) with location
>>of webapps/axis and then do "ant deploy"
>>
>>that should copy required class/jar files and deploy all necessary
>>services into tomcat/webapps/axis (as specified in build.properties)
>>
>>to run client do "ant client.interop" (that needs more work to pass
>>somehow parameters - using system properties?)
>>it will deploy client side wsdd file (client-config.wsdd in current dir)
>>and run Scenario_1_1_Client
>>
>>client.interop:
>>     [java] log4j:WARN No appenders could be found for logger
>>(org.apache.axis.i18n.ProjectResourceBundle).
>>     [java] log4j:WARN Please initialize the log4j system properly.
>>     [java] <?xml version="1.0" encoding="UTF-8"?>
>>     [java] <Admin>Done processing</Admin>
>>     [java] Client started......
>>     [java] log4j:WARN No appenders could be found for logger
>>(org.apache.axis.i18n.ProjectResourceBundle).
>>     [java] log4j:WARN Please initialize the log4j system properly.
>>     [java] Sending ping messages to
>>http://localhost:7080/axis/services/PingService
>>
>>BUILD SUCCESSFUL
>>
>>you can find dump of SOAP messages below - based on them it looked
>>like it worked (maybe ... )
>>
>>    
>>
>>>Am going to try
>>>and follow the steps to recreate the NPE for Axis.
>>>
>>>
>>>      
>>>
>>what NPE? i had updated axis.jar to current CVS version so it may be
>>fixed now?
>>
>>thanks,
>>
>>alek
>>
>>ps. wire dumps:
>>
>>########################################################################
>># Thu May 13 01:25:08 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1513 bytes)]
>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1217
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>   <arg1><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:x
>>si="http://www.w3.org/2001/XMLSchema-instance">
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>ing/" xmlns:ns1="PingService">
>>   <Text xsi:type="xsd:string">Ping 1</Text>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope></arg1>
>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>   <arg5>false</arg5>
>>   <arg6>false</arg6>
>>   <arg7>false</arg7>
>>   <arg8>wsrm:Ping</arg8>
>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>  </ns1:clientMethod>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1809 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1522
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>1</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
>>6731D18CBA</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 1</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:09 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1646 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1348
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>env:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>ng">uuid:485954D0-A4A6-11D8-8118-E1A30B23DB7E</wsa:MessageID>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:09 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:09 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1959 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1672
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>1</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
>>6731D18CBA</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>  </wsrm:AckRequested>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 1</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:11 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>>########################################################################
>>
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>[src  => dest, (1476 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1178
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <wsrm:AcknowledgementRange Upper="1" Lower="1"/>
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>########################################################################
>>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:11 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:11 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[dest => src, (600 bytes)]
>>HTTP/1.1 200 OK
>>Content-Type: text/xml;charset=utf-8
>>Date: Thu, 13 May 2004 06:25:13 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethodResponse
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>ap/encoding/" xmlns:ns1="RMClientService">
>>   <clientMethodReturn xsi:nil="true"/>
>>  </ns1:clientMethodResponse>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:13 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:14 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:14 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1513 bytes)]
>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1217
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>   <arg1><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:x
>>si="http://www.w3.org/2001/XMLSchema-instance">
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>ing/" xmlns:ns1="PingService">
>>   <Text xsi:type="xsd:string">Ping 2</Text>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope></arg1>
>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>   <arg5>false</arg5>
>>   <arg6>false</arg6>
>>   <arg7>false</arg7>
>>   <arg8>wsrm:Ping</arg8>
>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>  </ns1:clientMethod>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:14 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:14 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1809 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1522
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>2</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
>>B49DB96358</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 2</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:15 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:15 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1646 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1348
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>env:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>ng">uuid:4B76E880-A4A6-11D8-8118-93C724990056</wsa:MessageID>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:15 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:15 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:15 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:15 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1959 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1672
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>2</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
>>B49DB96358</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>  </wsrm:AckRequested>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 2</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:17 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>>
>>[src  => dest, (1476 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1178
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <wsrm:AcknowledgementRange Upper="2" Lower="1"/>
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:17 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:17 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[dest => src, (600 bytes)]
>>HTTP/1.1 200 OK
>>Content-Type: text/xml;charset=utf-8
>>Date: Thu, 13 May 2004 06:25:19 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethodResponse
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>ap/encoding/" xmlns:ns1="RMClientService">
>>   <clientMethodReturn xsi:nil="true"/>
>>  </ns1:clientMethodResponse>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:19 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1512 bytes)]
>>POST /axis/services/RMClientService?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1216
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethod xmlns:ns1="RMClientService">
>>   <arg1><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soa
>>p/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:x
>>si="http://www.w3.org/2001/XMLSchema-instance">
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encod
>>ing/" xmlns:ns1="PingService">
>>   <Text xsi:type="xsd:string">Ping 3</Text>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope></arg1>
>>   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
>>   <arg3>http://localhost:7080/axis/services/PingService</arg3>
>>   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
>>   <arg5>false</arg5>
>>   <arg6>true</arg6>
>>   <arg7>false</arg7>
>>   <arg8>wsrm:Ping</arg8>
>>   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
>>  </ns1:clientMethod>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1832 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1545
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsrm:LastMessage/>
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>3</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
>>B5F61FAD79</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 3</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:19 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1646 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1348
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
>>env:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
>>ng">uuid:4F0120B0-A4A6-11D8-8118-C509F76C8783</wsa:MessageID>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:20 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:20 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:22 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:22 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1982 bytes)]
>>POST /axis/services/PingService HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: localhost:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1695
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm"
>>xmlns:wsa="
>>http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>xmlns:wsu="http://docs.oasis-o
>>pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
>> <soapenv:Header>
>>  <wsrm:Sequence soapenv:mustUnderstand="1">
>>   <wsrm:LastMessage/>
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>   <wsrm:MessageNumber>3</wsrm:MessageNumber>
>>  </wsrm:Sequence>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0">wsrm:Ping</wsa:Action>
>><wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
>>l</wsa:Address></wsa:From>  <wsa:MessageID
>>soapenv:actor="http://schemas.xmlsoap
>>.org/soap/actor/next"
>>soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
>>B5F61FAD79</wsa:MessageID>
>><wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
>>wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To
>>soapenv:actor="http://schemas.xmlsoap.
>>org/soap/actor/next"
>>soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
>>ces/PingService</wsa:To>
>>  <wsrm:AckRequested soapenv:mustUnderstand="0">
>>   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
>>  </wsrm:AckRequested>
>> </soapenv:Header>
>> <soapenv:Body>
>>  <ns1:Ping
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
>>lns:ns1="PingService">
>>     <Text xsi:type="xsd:string">Ping 3</Text>
>>
>>  </ns1:Ping>
>> </soapenv:Body>
>></soapenv:Envelope>
>>########################################################################
>># Thu May 13 01:25:23 EST 2004
>># TCPReflector
>># Connection initiated from: /127.0.0.1
>>########################################################################
>>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:23 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:23 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>########################################################################
>># Thu May 13 01:25:23 EST 2004
>># TCPReflector
>># Connection established from: /127.0.0.1:7080
>># To                         : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[src  => dest, (1476 bytes)]
>>POST /axis/services/RMClientReference?wsdl HTTP/1.0
>>Content-Type: text/xml; charset=utf-8
>>Accept: application/soap+xml, application/dime, multipart/related, text/*
>>User-Agent: Axis/1.2beta
>>Host: 127.0.0.1:7080
>>Cache-Control: no-cache
>>Pragma: no-cache
>>SOAPAction: ""
>>Content-Length: 1178
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Header>
>>  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0"
>>xmlns:wsrm="http://sc
>>hemas.xmlsoap.org/ws/2004/03/rm">
>>   <wsrm:AcknowledgementRange Upper="3" Lower="1"/>
>>   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
>>  </wsrm:SequenceAcknowledgement>
>><ns1:From
>>xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
>>ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>
>> <w
>>sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv:mustUnd
>>erstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
>>127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
>>  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
>>soapenv
>>:mustUnderstand="0"
>>xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>>    
>>
>>>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
>>>      
>>>
>> </soapenv:Header>
>> <soapenv:Body/>
>></soapenv:Envelope>
>>[dest => src, (127 bytes)]
>>HTTP/1.1 202 Accepted
>>Content-Length: 0
>>Date: Thu, 13 May 2004 06:25:23 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>>
>>########################################################################
>># Thu May 13 01:25:23 EST 2004
>># TCPReflector
>># Removing connection from: /127.0.0.1:7080
>># To                      : localhost/127.0.0.1:8080
>>########################################################################
>>
>>[dest => src, (600 bytes)]
>>HTTP/1.1 200 OK
>>Content-Type: text/xml;charset=utf-8
>>Date: Thu, 13 May 2004 06:25:25 GMT
>>Server: Apache-Coyote/1.1
>>Connection: close
>>
>><?xml version="1.0" encoding="UTF-8"?>
>><soapenv:Envelope
>>xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
>>s:xsd="http://www.w3.org/2001/XMLSchema"
>>xmlns:xsi="http://www.w3.org/2001/XMLSc
>>hema-instance">
>> <soapenv:Body>
>>  <ns1:clientMethodResponse
>>soapenv:encodingStyle="http://schemas.xmlsoap.org/so
>>ap/encoding/" xmlns:ns1="RMClientService">
>>   <clientMethodReturn xsi:nil="true"/>
>>  </ns1:clientMethodResponse>
>> </soapenv:Body>
>></soapenv:Envelope>
>>
>>--
>>The best way to predict the future is to invent it - Alan Kay
>>
>>
>>
>>    
>>
>
>  
>


-- 
The best way to predict the future is to invent it - Alan Kay


step-by-step how to run interop scenario 1.1 [Re: Sandesha - Readme for running tests]

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
Davanum Srinivas wrote:

>Can you guys please check in a readme.txt for absolute beginners on
>how to run the server and the client (step-by-step)? 
>
it is more tricky than i expected ... it seems that Scenario_1_1_Client 
does not really send a messages
directly to the service but instead it is forwarded (encapsulated with 
meaningful parameter names
such as arg1, arg2, ..., argN -- see wire dump below) to RMClientService 
(and that service location
path is *hardcoded* to something 
http://localhost:7080/axis/services/RMClientService?wsdl
(see org.apache.sandesha.Constants.AXIS_SERVICES and similar constants)
and actual host:port is put in interop/**/ClientDeploy.wsdd

-- it took me a while to figure that out as i had  target service location 
port set to 7080 and ClientDeploy.wsdd was set 8070 so when debugging 
i could not believe my own eyes when 80 was being replaced with 70 
and vice versa ...

debugging errors like that is too much fun for one guy too handle ... 
(but it seems it worked see below)

the design/model is complicated (documentation anywhere?!)
as it seems that we have:

client -> RMClientService (axis/tomcat) <-> PingService (axis/tomcat)

it is not clear for me how back communication can happen in async way i.e
client <-> RMClientService 
so only polling is supported?

moreover it looks to me that SimpleAxisServer should have been used 
on client side to support async communication endpoint if SimpleAxisServer 
was started int he same JVM ...

i have added to build.xml "deploy" target: make sure to set correctly set 
build.properties (copy from build.properties.txt) with location 
of webapps/axis and then do "ant deploy"

that should copy required class/jar files and deploy all necessary 
services into tomcat/webapps/axis (as specified in build.properties)

to run client do "ant client.interop" (that needs more work to pass 
somehow parameters - using system properties?)
it will deploy client side wsdd file (client-config.wsdd in current dir) 
and run Scenario_1_1_Client

client.interop:
     [java] log4j:WARN No appenders could be found for logger 
(org.apache.axis.i18n.ProjectResourceBundle).
     [java] log4j:WARN Please initialize the log4j system properly.
     [java] <?xml version="1.0" encoding="UTF-8"?>
     [java] <Admin>Done processing</Admin>
     [java] Client started......
     [java] log4j:WARN No appenders could be found for logger 
(org.apache.axis.i18n.ProjectResourceBundle).
     [java] log4j:WARN Please initialize the log4j system properly.
     [java] Sending ping messages to 
http://localhost:7080/axis/services/PingService

BUILD SUCCESSFUL

you can find dump of SOAP messages below - based on them it looked 
like it worked (maybe ... )

>Am going to try
>and follow the steps to recreate the NPE for Axis.
>  
>
what NPE? i had updated axis.jar to current CVS version so it may be 
fixed now?

thanks,

alek

ps. wire dumps:

########################################################################
# Thu May 13 01:25:08 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1513 bytes)]
POST /axis/services/RMClientService?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1217

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethod xmlns:ns1="RMClientService">
   <arg1>&lt;soapenv:Envelope xmlns:soapenv=&quot;http://schemas.xmlsoap.org/soa
p/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:x
si=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;
 &lt;soapenv:Body&gt;
  &lt;ns1:Ping soapenv:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encod
ing/&quot; xmlns:ns1=&quot;PingService&quot;&gt;
   &lt;Text xsi:type=&quot;xsd:string&quot;&gt;Ping 1&lt;/Text&gt;
  &lt;/ns1:Ping&gt;
 &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</arg1>
   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
   <arg3>http://localhost:7080/axis/services/PingService</arg3>
   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
   <arg5>false</arg5>
   <arg6>false</arg6>
   <arg7>false</arg7>
   <arg8>wsrm:Ping</arg8>
   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
  </ns1:clientMethod>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1809 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1522

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>1</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
6731D18CBA</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 1</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:09 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1646 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1348

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
env:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
ng">uuid:485954D0-A4A6-11D8-8118-E1A30B23DB7E</wsa:MessageID>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:09 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:09 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:11 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:11 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1959 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1672

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>1</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:47FC19A0-A4A6-11D8-8118-C4
6731D18CBA</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
  <wsrm:AckRequested soapenv:mustUnderstand="0">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
  </wsrm:AckRequested>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 1</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:11 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:11 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:11 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:11 EST 2004
########################################################################

# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
[src  => dest, (1476 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1178

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <wsrm:AcknowledgementRange Upper="1" Lower="1"/>
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
########################################################################

[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:11 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:11 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

[dest => src, (600 bytes)]
HTTP/1.1 200 OK
Content-Type: text/xml;charset=utf-8
Date: Thu, 13 May 2004 06:25:13 GMT
Server: Apache-Coyote/1.1
Connection: close

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethodResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/so
ap/encoding/" xmlns:ns1="RMClientService">
   <clientMethodReturn xsi:nil="true"/>
  </ns1:clientMethodResponse>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:13 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:14 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:14 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1513 bytes)]
POST /axis/services/RMClientService?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1217

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethod xmlns:ns1="RMClientService">
   <arg1>&lt;soapenv:Envelope xmlns:soapenv=&quot;http://schemas.xmlsoap.org/soa
p/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:x
si=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;
 &lt;soapenv:Body&gt;
  &lt;ns1:Ping soapenv:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encod
ing/&quot; xmlns:ns1=&quot;PingService&quot;&gt;
   &lt;Text xsi:type=&quot;xsd:string&quot;&gt;Ping 2&lt;/Text&gt;
  &lt;/ns1:Ping&gt;
 &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</arg1>
   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
   <arg3>http://localhost:7080/axis/services/PingService</arg3>
   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
   <arg5>false</arg5>
   <arg6>false</arg6>
   <arg7>false</arg7>
   <arg8>wsrm:Ping</arg8>
   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
  </ns1:clientMethod>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:14 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:14 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1809 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1522

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>2</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
B49DB96358</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 2</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:15 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:15 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1646 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1348

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
env:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
ng">uuid:4B76E880-A4A6-11D8-8118-93C724990056</wsa:MessageID>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:15 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:15 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:15 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:15 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1959 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1672

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>2</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:4B479B20-A4A6-11D8-8118-F4
B49DB96358</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
  <wsrm:AckRequested soapenv:mustUnderstand="0">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
  </wsrm:AckRequested>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 2</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:17 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################

[src  => dest, (1476 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1178

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <wsrm:AcknowledgementRange Upper="2" Lower="1"/>
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:17 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:17 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

[dest => src, (600 bytes)]
HTTP/1.1 200 OK
Content-Type: text/xml;charset=utf-8
Date: Thu, 13 May 2004 06:25:19 GMT
Server: Apache-Coyote/1.1
Connection: close

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethodResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/so
ap/encoding/" xmlns:ns1="RMClientService">
   <clientMethodReturn xsi:nil="true"/>
  </ns1:clientMethodResponse>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:19 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1512 bytes)]
POST /axis/services/RMClientService?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1216

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethod xmlns:ns1="RMClientService">
   <arg1>&lt;soapenv:Envelope xmlns:soapenv=&quot;http://schemas.xmlsoap.org/soa
p/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:x
si=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;
 &lt;soapenv:Body&gt;
  &lt;ns1:Ping soapenv:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encod
ing/&quot; xmlns:ns1=&quot;PingService&quot;&gt;
   &lt;Text xsi:type=&quot;xsd:string&quot;&gt;Ping 3&lt;/Text&gt;
  &lt;/ns1:Ping&gt;
 &lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</arg1>
   <arg2>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</arg2>
   <arg3>http://localhost:7080/axis/services/PingService</arg3>
   <arg4>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg4>
   <arg5>false</arg5>
   <arg6>true</arg6>
   <arg7>false</arg7>
   <arg8>wsrm:Ping</arg8>
   <arg9>http://127.0.0.1:7080/axis/services/RMClientReference?wsdl</arg9>
  </ns1:clientMethod>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1832 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1545

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsrm:LastMessage/>
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>3</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
B5F61FAD79</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 3</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:19 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1646 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1348

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soap
env:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressi
ng">uuid:4F0120B0-A4A6-11D8-8118-C509F76C8783</wsa:MessageID>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:20 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:20 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:22 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

########################################################################
# Thu May 13 01:25:22 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1982 bytes)]
POST /axis/services/PingService HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: localhost:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1695

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance" xmlns:wsrm="http://schemas.xmlsoap.org/ws/2004/03/rm" xmlns:wsa="
http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsu="http://docs.oasis-o
pen.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
 <soapenv:Header>
  <wsrm:Sequence soapenv:mustUnderstand="1">
   <wsrm:LastMessage/>
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
   <wsrm:MessageNumber>3</wsrm:MessageNumber>
  </wsrm:Sequence>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0">wsrm:Ping</wsa:Action>
<wsa:From><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?wsd
l</wsa:Address></wsa:From>  <wsa:MessageID soapenv:actor="http://schemas.xmlsoap
.org/soap/actor/next" soapenv:mustUnderstand="0">uuid:4ECD3F70-A4A6-11D8-8118-FF
B5F61FAD79</wsa:MessageID>
<wsa:ReplyTo><wsa:Address>http://127.0.0.1:7080/axis/services/RMClientReference?
wsdl</wsa:Address></wsa:ReplyTo>  <wsa:To soapenv:actor="http://schemas.xmlsoap.
org/soap/actor/next" soapenv:mustUnderstand="0">http://localhost:7080/axis/servi
ces/PingService</wsa:To>
  <wsrm:AckRequested soapenv:mustUnderstand="0">
   <wsu:Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</wsu:Identifier>
  </wsrm:AckRequested>
 </soapenv:Header>
 <soapenv:Body>
  <ns1:Ping soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
lns:ns1="PingService">
     <Text xsi:type="xsd:string">Ping 3</Text>

  </ns1:Ping>
 </soapenv:Body>
</soapenv:Envelope>
########################################################################
# Thu May 13 01:25:23 EST 2004
# TCPReflector
# Connection initiated from: /127.0.0.1
########################################################################

[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:23 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:23 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

########################################################################
# Thu May 13 01:25:23 EST 2004
# TCPReflector
# Connection established from: /127.0.0.1:7080
# To                         : localhost/127.0.0.1:8080
########################################################################

[src  => dest, (1476 bytes)]
POST /axis/services/RMClientReference?wsdl HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.2beta
Host: 127.0.0.1:7080
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 1178

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Header>
  <wsrm:SequenceAcknowledgement soapenv:mustUnderstand="0" xmlns:wsrm="http://sc
hemas.xmlsoap.org/ws/2004/03/rm">
   <wsrm:AcknowledgementRange Upper="3" Lower="1"/>
   <Identifier>uuid:478059F0-A4A6-11D8-8754-C45F3F5F814D</Identifier>
  </wsrm:SequenceAcknowledgement>
<ns1:From xmlns:ns1="http://schemas.xmlsoap.org/ws/2003/03/addressing"><ns1:Addr
ess>http://localhost:7080/axis/services/PingService</ns1:Address></ns1:From>  <w
sa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnd
erstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">http://
127.0.0.1:7080/axis/services/RMClientReference?wsdl</wsa:To>
  <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv
:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
>http://schemas.xmlsoap.org/ws/2004/03/rm/SequenceAcknowledgement</wsa:Action>
 </soapenv:Header>
 <soapenv:Body/>
</soapenv:Envelope>
[dest => src, (127 bytes)]
HTTP/1.1 202 Accepted
Content-Length: 0
Date: Thu, 13 May 2004 06:25:23 GMT
Server: Apache-Coyote/1.1
Connection: close


########################################################################
# Thu May 13 01:25:23 EST 2004
# TCPReflector
# Removing connection from: /127.0.0.1:7080
# To                      : localhost/127.0.0.1:8080
########################################################################

[dest => src, (600 bytes)]
HTTP/1.1 200 OK
Content-Type: text/xml;charset=utf-8
Date: Thu, 13 May 2004 06:25:25 GMT
Server: Apache-Coyote/1.1
Connection: close

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSc
hema-instance">
 <soapenv:Body>
  <ns1:clientMethodResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/so
ap/encoding/" xmlns:ns1="RMClientService">
   <clientMethodReturn xsi:nil="true"/>
  </ns1:clientMethodResponse>
 </soapenv:Body>
</soapenv:Envelope>

-- 
The best way to predict the future is to invent it - Alan Kay