Hi,

I'm trying to integrate our platform with aspdotnetstorefront and I'm having a hard time figuring out how to use the API. I'm really new at this and I would really appreciate it if someone could point me to the right direction.

I've been reading the manual and I have a few questions I need to ask. How do I make a request? I know the endpoint is http://www.mysite.com/ipx.asmx but what about the methods and the request structure. I have a http:/www.mysite.com/ipx.asmx?WSDL and my request structure is something like this. .

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:asp="http://www.aspdotnetstorefront.com/">
<soapenv:Header/>
<soapenv:Body>
<aspoItUsernamePwd>
<asp:AuthenticationEMail>username</asp:AuthenticationEMail>
<asp:AuthenticationPassword>password</asp:AuthenticationPassword>
<asp:XmlInputRequestString>?</asp:XmlInputRequestString>
</aspoItUsernamePwd>
</soapenv:Body>
</soapenv:Envelope>

What should be on the <xmlInputRequestString>?


Thanks.