function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nishikant TaksandeNishikant Taksande 

No operation available for request {http://soap.sforce.com/schemas/class/ws_Application_BLL_PF}onboard_Sub_Merchant

Hey Guys,

I have been facing issue integrating partner SOAP web service:
  • Login call goes through successfully, so I could get session ID and URL
  • When I make the second request to perform the specific operation I get an error: No operation available for request {http://soap.sforce.com/schemas/class/ws_Application_BLL_PF}onboard_Sub_Merchant
I have been changing URL, modifying the header, even WSDL file itself, nothing seems to be working, is there anything that I can try to make it work?
Raj VakatiRaj Vakati
Looks like while generating the WSDL file , you dnt include the Package components in your WSDL 
John WelberJohn Welber
Am too facing the same problem. Thanks in advance for your help. Regard, John Welber. Please help me as soon as possible. Regards, 
3ds emulator (https://get3dsemulator.org/) Cartoon HD (https://get-cartoonhd.org/) droid4x app download (https://droid4x.org/)
Nishikant TaksandeNishikant Taksande
thank for your comment @Raj - can you explain what you mean by Package component? 

FYI: SOAP request is below:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://soap.sforce.com/schemas/class/ws_Application_BLL_PF" xmlns:ws1="http://soap.sforce.com/schemas/class/ws_Application_DTO_PF">
   <soapenv:Header>
      <ws:AllowFieldTruncationHeader>
         <ws:allowFieldTruncation>1</ws:allowFieldTruncation>
      </ws:AllowFieldTruncationHeader>
      <ws:DebuggingHeader>
         <!--Zero or more repetitions:-->
         <ws:categories>
            <ws:category>1</ws:category>
            <ws:level>1</ws:level>
         </ws:categories>
         <ws:debugLevel>?</ws:debugLevel>
      </ws:DebuggingHeader>
      <ws:CallOptions>
         <ws:client>?</ws:client>
      </ws:CallOptions>
      <ws:SessionHeader>
         <ws:sessionId> </ws:sessionId>
      </ws:SessionHeader>
   </soapenv:Header>
   <soapenv:Body>
      <ws:onboard_Sub_Merchant>
         <ws:application>
            <!--Optional:-->
            <ws1:ACCEPTED_CARDS_PREVIOUSLY>?</ws1:ACCEPTED_CARDS_PREVIOUSLY>
            <!--Optional:-->
            <ws1:BUSINESS_MODEL>?</ws1:BUSINESS_MODEL>
            <!--Optional:-->
            <ws1:CARD_PRESENT>?</ws1:CARD_PRESENT>
            <!--Optional:-->
            <ws1:CITY>?</ws1:CITY>
            <!--Optional:-->
            <ws1:CONTACT_CITY>?</ws1:CONTACT_CITY>
            <!--Optional:-->
            <ws1:CONTACT_COUNTRY>?</ws1:CONTACT_COUNTRY>
            <!--Optional:-->
            <ws1:CONTACT_EMAIL>?</ws1:CONTACT_EMAIL>
            <!--Optional:-->
            <ws1:CONTACT_NAME>?</ws1:CONTACT_NAME>
            <!--Optional:-->
            <ws1:CONTACT_PHONE>?</ws1:CONTACT_PHONE>
            <!--Optional:-->
            <ws1:CONTACT_STREET>?</ws1:CONTACT_STREET>
            <!--Optional:-->
            <ws1:CONTACT_ZIP_CODE>?</ws1:CONTACT_ZIP_CODE>
            <!--Optional:-->
            <ws1:COUNTRY>?</ws1:COUNTRY>
            <!--Optional:-->
            <ws1:FACE_TO_FACE_BUSINESS>?</ws1:FACE_TO_FACE_BUSINESS>
            <!--Optional:-->
            <ws1:IN_APP>?</ws1:IN_APP>
            <!--Optional:-->
            <ws1:MCC>?</ws1:MCC>
            <!--Optional:-->
            <ws1:MERCHANT_NAME_ON_CH_STATEMENT>?</ws1:MERCHANT_NAME_ON_CH_STATEMENT>
            <!--Optional:-->
            <ws1:MONTHLY_VOLUME_CREDORAX_AMOUNT>?</ws1:MONTHLY_VOLUME_CREDORAX_AMOUNT>
            <!--Optional:-->
            <ws1:MONTHLY_VOLUME_CURRENCY>?</ws1:MONTHLY_VOLUME_CURRENCY>
            <!--Optional:-->
            <ws1:MOTO>?</ws1:MOTO>
            <!--Optional:-->
            <ws1:OVER_1M_MC_ANNUAL_SALES>?</ws1:OVER_1M_MC_ANNUAL_SALES>
            <!--Zero or more repetitions:-->
            <ws1:POS_INFORMATION>
               <!--Optional:-->
               <ws1:DEVICE_CITY>?</ws1:DEVICE_CITY>
               <!--Optional:-->
               <ws1:DEVICE_COUNTRY>?</ws1:DEVICE_COUNTRY>
               <!--Optional:-->
               <ws1:DEVICE_STREET>?</ws1:DEVICE_STREET>
               <!--Optional:-->
               <ws1:DEVICE_ZIP_CODE>?</ws1:DEVICE_ZIP_CODE>
               <!--Optional:-->
               <ws1:NUM_DEVICES>?</ws1:NUM_DEVICES>
               <!--Optional:-->
               <ws1:POS_MODEL>?</ws1:POS_MODEL>
            </ws1:POS_INFORMATION>
            <!--Optional:-->
            <ws1:SOURCE>?</ws1:SOURCE>
            <!--Optional:-->
            <ws1:STATE>?</ws1:STATE>
            <!--Optional:-->
            <ws1:STREET>?</ws1:STREET>
            <!--Optional:-->
            <ws1:SUB_MERCHANT_EXTERNAL_ID>?</ws1:SUB_MERCHANT_EXTERNAL_ID>
            <!--Optional:-->
            <ws1:SUB_MERCHANT_ID>?</ws1:SUB_MERCHANT_ID>
            <!--Optional:-->
            <ws1:SUB_MERCHANT_NAME>?</ws1:SUB_MERCHANT_NAME>
            <!--Optional:-->
            <ws1:WEB>?</ws1:WEB>
            <!--Zero or more repetitions:-->
            <ws1:WEBSITE_INFORMATION>
               <!--Optional:-->
               <ws1:TEST_PASSWORD>?</ws1:TEST_PASSWORD>
               <!--Optional:-->
               <ws1:TEST_USERNAME>?</ws1:TEST_USERNAME>
               <!--Optional:-->
               <ws1:WEBSITE_DOMAIN>?</ws1:WEBSITE_DOMAIN>
            </ws1:WEBSITE_INFORMATION>
            <!--Optional:-->
            <ws1:ZIP_CODE>?</ws1:ZIP_CODE>
         </ws:application>
      </ws:onboard_Sub_Merchant>
   </soapenv:Body>
</soapenv:Envelope>