Dear Support,
I am trying to use following WSDL to query diamond information and I am using username/password which I use to log into rapNet website:
https://technet.rapaport.com/WebServices/RetailFeed/Feed.asmx?WSDL
My soap request to login is as follows:
<soap:Envelope xmlns:soap="
http://www.w3.org/2003/05/soap-envelope" xmlns:tec="
http://technet.rapaport.com/">
<soap:Header/>
<soap:Body>
<tec:Login>
<!--Optional:-->
<tec:Username>9471</tec:Username>
<!--Optional:-->
<tec:Password>xxhiddenxx</tec:Password>
</tec:Login>
</soap:Body>
</soap:Envelope>
I have valid password, but the response I get back is:
<soap:Envelope xmlns:soap="
http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="
http://www.w3.org/2001/XMLSchema">
<soap:Body>
<soap:Fault>
<soap:Code>
<soap:Value>soap:Receiver</soap:Value>
</soap:Code>
<soap:Reason>
<soap:Text xml:lang="en">Server was unable to process request. ---> You are not authenticated for RapNet InventoryLink web service.</soap:Text>
</soap:Reason>
<soap:Detail/>
</soap:Fault>
</soap:Body>
</soap:Envelope>
Please advise what I need to do to get InventoryLink Web Service access. I am able to login into Upload Webservice using same username and password without any issue. Thanks for your help.
Ben