Soap Envelope Parse Error

redsuitee

Member
Hello..

I try to call a procedure using SOAP-UI application.
But I have a problem here, it always return error message 'Could not parse the soap envelope.'
Where is the problem so that I always got the error?
I highly appreciate for your help.. Thanks

here is my code
Code:
<soapenv:Envelope xmlns:soapenv=[COLOR=red]"http://schemas.xmlsoap.org/soap/envelope/"[/COLOR] xmlns:ns=[COLOR=red]"http://queue.amazonaws.com/doc/2009-02-01/"[/COLOR]>   
     <soapenv:Header API Version 2009-02-01 5 Amazon Simple Queue Service API Reference API Versions xmlns:aws=[COLOR=red]"http://security.amazonaws.com/doc/2007-01-01/"[/COLOR]>
          <aws:AWSAccessKeyId>-KeyID-</AWSAccessKeyId>
          <aws:Timestamp>2008-02-10T00:00:00Z</Timestamp>     
          <aws:Signature>-Signature-</Signature>    
     </soapenv:Header>    
     <soapenv:Body>       
          <ns:CreateQueue>          
               <ns:QueueName>My Queue</ns:QueueName>          
               <ns:DefaultVisibilityTimeout>30</ns:DefaultVisibilityTimeout>
               <ns:Attribute>             
                    <ns:Name>Test</ns:Name>             
                    <ns:Value>Tes123</ns:Value>          
               </ns:Attribute>      
          </ns:CreateQueue>    
     </soapenv:Body> 
</soapenv:Envelope>
 
Top