2010-03-11 3 views
0

반복 요청 (SandBox에 대한 SOAP 요청) 인 을 보내고 있지만 응답이 누락 된 토큰 및 다른 필드가 유효하지 않음 (누락 된 토큰 또는 지불 출처)에 대한 오류 메시지가 표시됩니다. 무엇이 잘못되었을 수 있습니까? CreateRecurringPaymentsProfile 요청?PayPal - CreateRecurringPaymentsProfile -이 요청이 유효합니까?

<?xml version="1.0" encoding="UTF-8"?> 
<SOAP-ENV:Envelope 
    xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" 
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:xsd="http://www.w3.org/1999/XMLSchema" 
    SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
    <SOAP-ENV:Header> 
     <RequesterCredentials xmlns="urn:ebay:api:PayPalAPI" 
SOAP-ENV:mustUnderstand="1"> 
     <Credentials xmlns="urn:ebay:apis:eBLBaseComponents"> 
      <Username>xxxxx_biz_api1.gmail.com</Username> 
      <Password>xxxxxxx</Password> 
      <Subject/> 
     </Credentials> 

     </RequesterCredentials> 
    </SOAP-ENV:Header> 
<SOAP-ENV:Body> 
     <CreateRecurringPaymentsProfileReq xmlns="urn:ebay:api:PayPalAPI"> 
     <CreateRecurringPaymentsProfileRequest> 
      <Version 
       xmlns="urn:ebay:apis:eBLBaseComponents" 
       xsi:type="xsd:string">58.0</Version> 



<CreateRecurringPaymentsProfileRequestDetails> 

      <RecurringPaymentsProfileDetails xmlns="urn:ebay:apis:eBLBaseComponents"> 

      <BillingStartDate></BillingStartDate> 
    </RecurringPaymentsProfileDetails> 

<ScheduleDetails> 
    <Description>Must match</Description> 
    <PaymentPeriod> 

    <BillingPeriod>Day</BillingPeriod> 
    <BillingFrequency>1</BillingFrequency> 

    <Amount>39.95</Amount> 
    </PaymentPeriod> 
</ScheduleDetails> 

     <Token>EC-480620864W522011V</Token> 

</CreateRecurringPaymentsProfileRequestDetails> 
     </CreateRecurringPaymentsProfileRequest> 
     </CreateRecurringPaymentsProfileReq> 

    </SOAP-ENV:Body> 

P. "Doexpresscheckout"명령 다음에이 요청을 올바른 방법으로 보냅니다.

답변

0

해결되었습니다.

<CreateRecurringPaymentsProfileRequestDetails> 
should be 
<CreateRecurringPaymentsProfileResponse xmlns="urn:ebay:apis:eBLBaseComponents" xsi:type="ebl:CreateRecurringPaymentsProfileResponseDetailsType"> 
관련 문제