ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » SOAP Async Request Reply [Unsolved]

Post new topic  Reply to topic Goto page Previous  1, 2, 3  Next
 SOAP Async Request Reply [Unsolved] « View previous topic :: View next topic » 
Author Message
Vitor
PostPosted: Mon Aug 15, 2011 7:12 am    Post subject: Reply with quote

Grand High Poobah

Joined: 11 Nov 2005
Posts: 26093
Location: Texas, USA

kotagiriaashish wrote:
*** is the message you are seeing above...


I'm having trouble seeing that

You have:
Code:

2011-08-13 21:38:32.073886     2144   UserTrace   BIP3630I: The broker has received an HTTP message on port '7800' with URL path '/MS_WSDLSOAP_HTTP_Service'.
                                       The broker is listening on port '7800' and has received a message sent by a client using URL path '/MS_WSDLSOAP_HTTP_Service'. This message will be sent on to either a SOAP Input Node or a SOAP Asynchronous Response Node.
                                       No action required.
2011-08-13 21:38:32.076496      184   UserTrace   BIP6060I: Parser type ''Properties'' created on behalf of node 'SERVER.SOAP Input' to handle portion of incoming message of length 0 bytes beginning at offset '0'.
2011-08-13 21:38:32.076534      184   UserTrace   BIP6069W: The broker is not capable of handling a message of data type ''''.
                                       The message broker received a message that requires the handling of data of type '''', but the broker does not have the capability to handle data of this type.
                                       Check both the message being sent to the message broker and the configuration data for the node. References to the unsupported data type must be removed if the message is to be processed by the broker.
2011-08-13 21:38:32.076614      184   UserTrace   BIP6061I: Parser type ''SOAP'' created on behalf of node 'SERVER.SOAP Input' to handle portion of incoming message of length '4' bytes beginning at offset '0'. Parser type selected based on value ''SOAP'' from previous parser.


The message you posted is more than 4 bytes long. 4 bytes sounds like a header. Then you have a Compute node saying:
Code:

2011-08-13 21:38:33.576412      184   UserTrace   BIP6068W:  A request was made to serialize a bitstream from element ''SOAP'' using parser ''SOAP''. The result was zero bytes long.
                                       The node or ESQL ASBITSTREAM function requested that an element serialize its bitstream and this resulted in no bytes being written.


which sounds like an empty message to me.


So where are you seeing this data? If it's on a breakpoint in the debugger then that doesn't count.
_________________
Honesty is the best policy.
Insanity is the best defence.
Back to top
View user's profile Send private message
mqjeff
PostPosted: Mon Aug 15, 2011 7:15 am    Post subject: Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

The message never comes out of the async soap reply node because it never gets sent by the soap reply node.

It never gets sent by the soap reply node because the soap reply node can't serialize the message tree it's given.

Looking a bit closer at your trace, I see this
Code:
2011-08-13 21:38:32.076614      184   UserTrace   BIP6061I: Parser type ''SOAP'' created on behalf of node 'SERVER.SOAP Input' to handle portion of incoming message of length '4' bytes beginning at offset '0'. Parser type selected based on value ''SOAP'' from previous parser.


I don't think that should be 4 bytes long?

It's not clear from here what's wrong with your flow - either it's an issue with the message you're sending or with how you are sending the response message to the soap reply node...

does the soap portion of the flow work just fine if you don't call it from the async flows?
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Mon Aug 15, 2011 7:21 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

Exactly!! thats on a break point... how did you guess?!?!!

Code:
Body   
         PurchaseOrder   
            OrderDate   2011-08-12   
            ShipTo   
               country   US   
               name   trrte   
               street   tret   
               city   ertretr   
               state   etertret   
               zip   4354   
            BillTo   
               country   US   
               name   sddsfsf   
               street   dsfegvgh   
               city   dsfewdsg   
               state   gsdgsdfsd   
               zip   234   


this is the message which is supposed to reach the reply node... you say this doesn't count??
Back to top
View user's profile Send private message
Vitor
PostPosted: Mon Aug 15, 2011 7:27 am    Post subject: Reply with quote

Grand High Poobah

Joined: 11 Nov 2005
Posts: 26093
Location: Texas, USA

kotagiriaashish wrote:
this is the message which is supposed to reach the reply node... you say this doesn't count??


The debugger is all very well, but it lies. Or at least doesn't tell the whole story.

Put a Trace node with ${Root} at the point after the Compute node & before the Reply node and take another trace.

I don't think what you're seeing under SOAP is actually part of the SOAP domain in the message tree. All those points in the trace you posted saying:

Code:
2011-08-13 21:38:32.076534      184   UserTrace   BIP6069W: The broker is not capable of handling a message of data type ''''.
                                       The message broker received a message that requires the handling of data of type '''', but the broker does not have the capability to handle data of this type.


is not a good sign the tree is being built correctly. Data, certainly the data you posted, should not be an unrecognised type.
_________________
Honesty is the best policy.
Insanity is the best defence.
Back to top
View user's profile Send private message
dilse
PostPosted: Mon Aug 15, 2011 12:16 pm    Post subject: Reply with quote

Master

Joined: 24 Jun 2004
Posts: 270

Test the following web service flow individually with a tool like SOAPUI, Nettool etc., and see if you are getting a good response. When you made sure that the web service is flow is producing the results as expected, then try the Async nodes flow to test. This simplifies your troubleshooting.

Quote:
Soap Input>Compute>***>Soap Reply
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Tue Aug 16, 2011 6:07 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

dilse wrote:
Test the following web service flow individually with a tool like SOAPUI, Nettool etc., and see if you are getting a good response. When you made sure that the web service is flow is producing the results as expected, then try the Async nodes flow to test. This simplifies your troubleshooting.

Quote:
Soap Input>Compute>***>Soap Reply


Sure..
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Tue Aug 16, 2011 6:39 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

mqjeff wrote:
The message never comes out of the async soap reply node because it never gets sent by the soap reply node.

It never gets sent by the soap reply node because the soap reply node can't serialize the message tree it's given.

Looking a bit closer at your trace, I see this
Code:
2011-08-13 21:38:32.076614      184   UserTrace   BIP6061I: Parser type ''SOAP'' created on behalf of node 'SERVER.SOAP Input' to handle portion of incoming message of length '4' bytes beginning at offset '0'. Parser type selected based on value ''SOAP'' from previous parser.


I don't think that should be 4 bytes long?

It's not clear from here what's wrong with your flow - either it's an issue with the message you're sending or with how you are sending the response message to the soap reply node...

does the soap portion of the flow work just fine if you don't call it from the async flows?


Yes..
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Tue Aug 16, 2011 6:43 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

Hear are the collected traces of the flow...

this is the trace of the message after entering the soap input but before reaching compute

Code:
( ['SOAPRoot' : 0x6b738c0]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3663308]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:26:41.916' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b730a0]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAPRoot' : 0x6b746f8]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3663308]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:32:10.079' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b730a0]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAP' : 0x6c899f8]
    (0x01000000:Folder):Context = ( ['xmlnsc' : 0x6cf5020]
      (0x03000100:Attribute  ):operation         = 'Operation1' (CHARACTER)
      (0x03000100:Attribute  ):operationType     = 'REQUEST_RESPONSE' (CHARACTER)
      (0x03000100:Attribute  ):portType          = 'MS_SOAPPortType' (CHARACTER)
      (0x03000100:Attribute  ):portTypeNamespace = 'http://tempuri.org/MS_SOAP' (CHARACTER)
      (0x03000100:Attribute  ):port              = 'SOAP_HTTP_Port' (CHARACTER)
      (0x03000100:Attribute  ):service           = 'MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (0x03000100:Attribute  ):fileName          = 'C:\Documents and Settings\All Users\Application Data\IBM\MQSI/components/WBRK61_DEFAULT_BROKER/98c0a152-3001-0000-0080-f4102838f1d2/config/XSD/MS_SOAP/MS_SOAPService.wsdl' (CHARACTER)
      (0x03000000:PCDataField):SOAP_Version      = '1.1' (CHARACTER)
      (0x01000000:Folder     ):Namespace         = (
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsd     = 'http://www.w3.org/2001/XMLSchema' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:q0      = 'http://tempuri.org/PurchaseOrderSchema.xsd' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsi     = 'http://www.w3.org/2001/XMLSchema-instance' (CHARACTER)
      )
      (0x01000000:Folder     ):_XmlDeclaration   = (
        (0x03000100:Attribute):Version  = '1.0' (CHARACTER)
        (0x03000100:Attribute):Encoding = 'utf-8' (CHARACTER)
      )
    )
    (0x01000000:Folder):Header  = ( ['xmlnsc' : 0x6cf5020]
      (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wsa              = 'http://www.w3.org/2005/08/addressing' (CHARACTER)
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:To        = 'http://localhost:7800/MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x01000000:Folder       )http://www.w3.org/2005/08/addressing:ReplyTo   = (
        (0x03000100:Attribute  )http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
        (0x03000000:PCDataField)http://www.w3.org/2005/08/addressing:Address             = 'http://172.17.3.60:7800/WMB/Async/Response/Node/svr?context=534f4150040000000000000000000000b403000000000000&timestamp=5863' (CHARACTER)
        (0x01000000:Folder     )http://www.w3.org/2005/08/addressing:ReferenceParameters = (
          (0x01000000:Folder)http://www.ibm.com/wmb/2007/05/rp:context = (
            (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wmb               = 'http://www.ibm.com/wmb/2007/05/rp' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:operationName = 'Operation1' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:timeStamp     = '5863' (CHARACTER)
          )
        )
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:MessageID = 'urn:uuid:47EA3873B9AC6E7EC81313505149118' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:Action    = 'http://tempuri.org/MS_SOAP/MS_SOAPPortType/Operation1_Input' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
    )
    (0x01000000:Folder):Body    = ( ['xmlnsc' : 0x6cf5020]
      (0x01000000:Folder)http://tempuri.org/PurchaseOrderSchema.xsd:PurchaseOrder = (
        (0x03000100:Attribute):OrderDate                                        = DATE '2011-08-16' (DATE)
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:ShipTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:BillTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
      )
    )
  )
)






this one is after compute node but before soap reply node

Code:
( ['SOAPRoot' : 0x6b72c90]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3663308]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:14:19.325' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b72e98]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '837' (CHARACTER)
    (0x03000000:NameValue):Accept                  = 'application/soap+xml, application/dime, multipart/related, text/*' (CHARACTER)
    (0x03000000:NameValue):User-Agent              = 'IBM Web Services Explorer' (CHARACTER)
    (0x03000000:NameValue):Cache-Control           = 'no-cache' (CHARACTER)
    (0x03000000:NameValue):Pragma                  = 'no-cache' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'close' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
    (0x03000000:NameValue):X-Scheme                = 'http' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAPRoot' : 0x6b742e8]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3662a80]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:23:26.827' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b72470]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
    (0x03000000:NameValue):X-Scheme                = 'http' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAPRoot' : 0x6b742e8]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3662a80]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:23:26.827' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b72470]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
  )
  (0x01000000:Name):SOAP            =
)
( ['SOAPRoot' : 0x6b736b8]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x36621f8]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:32:10.079' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b72268]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAP' : 0x6c89568]
    (0x01000000:Folder):Context = ( ['xmlnsc' : 0x6cf5698]
      (0x03000100:Attribute  ):operation         = 'Operation1' (CHARACTER)
      (0x03000100:Attribute  ):operationType     = 'REQUEST_RESPONSE' (CHARACTER)
      (0x03000100:Attribute  ):portType          = 'MS_SOAPPortType' (CHARACTER)
      (0x03000100:Attribute  ):portTypeNamespace = 'http://tempuri.org/MS_SOAP' (CHARACTER)
      (0x03000100:Attribute  ):port              = 'SOAP_HTTP_Port' (CHARACTER)
      (0x03000100:Attribute  ):service           = 'MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (0x03000100:Attribute  ):fileName          = 'C:\Documents and Settings\All Users\Application Data\IBM\MQSI/components/WBRK61_DEFAULT_BROKER/98c0a152-3001-0000-0080-f4102838f1d2/config/XSD/MS_SOAP/MS_SOAPService.wsdl' (CHARACTER)
      (0x03000000:PCDataField):SOAP_Version      = '1.1' (CHARACTER)
      (0x01000000:Folder     ):Namespace         = (
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsd     = 'http://www.w3.org/2001/XMLSchema' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:q0      = 'http://tempuri.org/PurchaseOrderSchema.xsd' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsi     = 'http://www.w3.org/2001/XMLSchema-instance' (CHARACTER)
      )
      (0x01000000:Folder     ):_XmlDeclaration   = (
        (0x03000100:Attribute):Version  = '1.0' (CHARACTER)
        (0x03000100:Attribute):Encoding = 'utf-8' (CHARACTER)
      )
    )
    (0x01000000:Folder):Header  = ( ['xmlnsc' : 0x6cf58c0]
      (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wsa              = 'http://www.w3.org/2005/08/addressing' (CHARACTER)
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:To        = 'http://localhost:7800/MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x01000000:Folder       )http://www.w3.org/2005/08/addressing:ReplyTo   = (
        (0x03000100:Attribute  )http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
        (0x03000000:PCDataField)http://www.w3.org/2005/08/addressing:Address             = 'http://172.17.3.60:7800/WMB/Async/Response/Node/svr?context=534f4150040000000000000000000000b403000000000000&timestamp=5863' (CHARACTER)
        (0x01000000:Folder     )http://www.w3.org/2005/08/addressing:ReferenceParameters = (
          (0x01000000:Folder)http://www.ibm.com/wmb/2007/05/rp:context = (
            (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wmb               = 'http://www.ibm.com/wmb/2007/05/rp' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:operationName = 'Operation1' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:timeStamp     = '5863' (CHARACTER)
          )
        )
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:MessageID = 'urn:uuid:47EA3873B9AC6E7EC81313505149118' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:Action    = 'http://tempuri.org/MS_SOAP/MS_SOAPPortType/Operation1_Input' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
    )
    (0x01000000:Folder):Body    = ( ['xmlnsc' : 0x6a81100]
      (0x01000000:Folder)http://tempuri.org/PurchaseOrderSchema.xsd:PurchaseOrder = (
        (0x03000100:Attribute):OrderDate                                        = DATE '2011-08-16' (DATE)
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:ShipTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:BillTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
      )
    )
  )
)




this one is after the soap reply node...

Code:
( ['SOAPRoot' : 0x6b72880]
  (0x01000000:Name):Properties      = ( ['SOAPPROPERTYPARSER' : 0x3665528]
    (0x03000000:NameValue):MessageSet             = 'MS_SOAP' (CHARACTER)
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
    (0x03000000:NameValue):CodedCharSetId         = 1208 (INTEGER)
    (0x03000000:NameValue):Transactional          = FALSE (BOOLEAN)
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2011-08-16 14:32:10.079' (GMTTIMESTAMP)
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
    (0x03000000:NameValue):ReplyProtocol          = 'SOAP-AXIS2' (CHARACTER)
    (0x03000000:NameValue):Topic                  = NULL
    (0x03000000:NameValue):ContentType            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
  )
  (0x01000000:Name):HTTPInputHeader = ( ['WSINPHDR' : 0x6b72060]
    (0x03000000:NameValue):X-Original-HTTP-Command = 'POST http://localhost:7800/MS_SOAPSOAP_HTTP_Service HTTP/1.1' (CHARACTER)
    (0x03000000:NameValue):Content-Length          = '1556' (CHARACTER)
    (0x03000000:NameValue):Content-Type            = 'text/xml; charset=utf-8' (CHARACTER)
    (0x03000000:NameValue):Host                    = 'localhost:7800' (CHARACTER)
    (0x03000000:NameValue):SOAPAction              = '""' (CHARACTER)
    (0x03000000:NameValue):Connection              = 'keep-alive' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Addr           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Remote-Host           = '127.0.0.1' (CHARACTER)
    (0x03000000:NameValue):X-Server-Name           = 'localhost' (CHARACTER)
    (0x03000000:NameValue):X-Server-Port           = '7800' (CHARACTER)
    (0x03000000:NameValue):X-Query-String          = '' (CHARACTER)
  )
  (0x01000000:Name):SOAP            = ( ['SOAP' : 0x6aac2a8]
    (0x01000000:Folder):Context = ( ['xmlnsc' : 0x6cf3ee0]
      (0x03000100:Attribute  ):operation         = 'Operation1' (CHARACTER)
      (0x03000100:Attribute  ):operationType     = 'REQUEST_RESPONSE' (CHARACTER)
      (0x03000100:Attribute  ):portType          = 'MS_SOAPPortType' (CHARACTER)
      (0x03000100:Attribute  ):portTypeNamespace = 'http://tempuri.org/MS_SOAP' (CHARACTER)
      (0x03000100:Attribute  ):port              = 'SOAP_HTTP_Port' (CHARACTER)
      (0x03000100:Attribute  ):service           = 'MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (0x03000100:Attribute  ):fileName          = 'C:\Documents and Settings\All Users\Application Data\IBM\MQSI/components/WBRK61_DEFAULT_BROKER/98c0a152-3001-0000-0080-f4102838f1d2/config/XSD/MS_SOAP/MS_SOAPService.wsdl' (CHARACTER)
      (0x03000000:PCDataField):SOAP_Version      = '1.1' (CHARACTER)
      (0x01000000:Folder     ):Namespace         = (
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsd     = 'http://www.w3.org/2001/XMLSchema' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:q0      = 'http://tempuri.org/PurchaseOrderSchema.xsd' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' (CHARACTER)
        (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:xsi     = 'http://www.w3.org/2001/XMLSchema-instance' (CHARACTER)
      )
      (0x01000000:Folder     ):_XmlDeclaration   = (
        (0x03000100:Attribute):Version  = '1.0' (CHARACTER)
        (0x03000100:Attribute):Encoding = 'utf-8' (CHARACTER)
      )
    )
    (0x01000000:Folder):Header  = ( ['xmlnsc' : 0x6a80a88]
      (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wsa              = 'http://www.w3.org/2005/08/addressing' (CHARACTER)
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:To        = 'http://localhost:7800/MS_SOAPSOAP_HTTP_Service' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x01000000:Folder       )http://www.w3.org/2005/08/addressing:ReplyTo   = (
        (0x03000100:Attribute  )http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
        (0x03000000:PCDataField)http://www.w3.org/2005/08/addressing:Address             = 'http://172.17.3.60:7800/WMB/Async/Response/Node/svr?context=534f4150040000000000000000000000b403000000000000&timestamp=5863' (CHARACTER)
        (0x01000000:Folder     )http://www.w3.org/2005/08/addressing:ReferenceParameters = (
          (0x01000000:Folder)http://www.ibm.com/wmb/2007/05/rp:context = (
            (0x03000102:NamespaceDecl)http://www.w3.org/2000/xmlns/:wmb               = 'http://www.ibm.com/wmb/2007/05/rp' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:operationName = 'Operation1' (CHARACTER)
            (0x03000000:PCDataField  )http://www.ibm.com/wmb/2007/05/rp:timeStamp     = '5863' (CHARACTER)
          )
        )
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:MessageID = 'urn:uuid:47EA3873B9AC6E7EC81313505149118' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
      (0x03000000:PCDataField  )http://www.w3.org/2005/08/addressing:Action    = 'http://tempuri.org/MS_SOAP/MS_SOAPPortType/Operation1_Input' (CHARACTER)
      (
        (0x03000100:Attribute)http://schemas.xmlsoap.org/soap/envelope/:mustUnderstand = '1' (CHARACTER)
      )
    )
    (0x01000000:Folder):Body    = ( ['xmlnsc' : 0x6a80cb0]
      (0x01000000:Folder)http://tempuri.org/PurchaseOrderSchema.xsd:PurchaseOrder = (
        (0x03000100:Attribute):OrderDate                                        = DATE '2011-08-16' (DATE)
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:ShipTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
        (0x01000000:Folder   )http://tempuri.org/PurchaseOrderSchema.xsd:BillTo = (
          (0x03000100:Attribute  ):country                                          = 'US' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:name   = 'Aashish Kotagiri' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:street = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:city   = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:state  = 'Vizag' (CHARACTER)
          (0x03000000:PCDataField)http://tempuri.org/PurchaseOrderSchema.xsd:zip    = 530009 (DECIMAL)
        )
      )
    )
  )
)




i can see the data...
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Tue Aug 16, 2011 6:44 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

Vitor wrote:
kotagiriaashish wrote:
!!!


- we're not a help desk with an SLA on responses
- many of us don't work weekends and don't check the forum either

So yowling that you posted on Saturday & no-one's answered yet is only likely to annoy us.


That will never happen again..
Back to top
View user's profile Send private message
mqjeff
PostPosted: Tue Aug 16, 2011 6:48 am    Post subject: Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

'xmlnsc' is *not* the same as 'XMLNSC'....
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Tue Aug 16, 2011 6:54 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

mqjeff wrote:
'xmlnsc' is *not* the same as 'XMLNSC'....


What? please explain... i thought some Replyto value was missing or not set...
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Wed Aug 17, 2011 7:10 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Wed Aug 17, 2011 7:20 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

Everything works fine with Synchronous flow... the problem is with the A sync flow... did any one try this one out, while you were practicing or experimenting ??
Back to top
View user's profile Send private message
smdavies99
PostPosted: Wed Aug 17, 2011 8:50 am    Post subject: Reply with quote

Jedi Council

Joined: 10 Feb 2003
Posts: 6076
Location: Somewhere over the Rainbow this side of Never-never land.

kotagiriaashish wrote:
mqjeff wrote:
'xmlnsc' is *not* the same as 'XMLNSC'....


What? please explain... i thought some Replyto value was missing or not set...


Look in the documentation and all ye seek will be revealed to the xmlnsc and XMLNSC question.
_________________
WMQ User since 1999
MQSI/WBI/WMB/'Thingy' User since 2002
Linux user since 1995

Every time you reinvent the wheel the more square it gets (anon). If in doubt think and investigate before you ask silly questions.
Back to top
View user's profile Send private message
kotagiriaashish
PostPosted: Wed Aug 17, 2011 11:53 am    Post subject: Reply with quote

Disciple

Joined: 06 Aug 2011
Posts: 165

thats not the issue.... xml is being parsed correctly... its the reply thats not being generated
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Goto page Previous  1, 2, 3  Next Page 2 of 3

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » SOAP Async Request Reply [Unsolved]
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.