|
Rank: Starting Member
Groups: Registered
Joined: 8/25/2005 Posts: 2 Location: ,
|
Can someone tell me what's wrong with my code or post a working GetExpressCheckout code? Any help will be greatly appreciated...
<SOAP-ENV:Body>
<GetExpressCheckoutReq xmlns="urn:ebay:api:PayPalAPI">
<GetExpressCheckoutDetailsRequest
xsi:type="ns:GetExpressCheckoutDetailsRequestType>
<Token xmlns="urn:ebay:api:PayPalAPI"
xsi:type="xsd:string">myToken</Token>
</GetExpressCheckoutDetailsRequest >
</GetExpressCheckoutReq >
</SOAP-ENV:Body>
This is the error I am getting:
<faultstring>Method 'GetExpressCheckoutReq' not implemented</faultstring>
I have also tried code template print in the back of the .NET sdk guide...same error with diff. method of course
on this method: 'GetExpressCheckoutDetailsRequestType'
<SOAP-ENV:Body>
<GetExpressCheckoutDetailsRequestType >
<Token xmlns="urn:ebay:api:PayPalAPI" >myToken</Token>
</GetExpressCheckoutDetailsRequestType>
</SOAP-ENV:Body>
|