We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm soap for billing api. WSDL URL : http://94.206.70.106:8181/cxf/services/UnifiedPartner?wsdl My request is :
<?xml version="1.0" encoding="UTF-8"?> <v:Envelope xmlns:v="http://schemas.xmlsoap.org/soap/envelope/" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <v:Header /> <v:Body> <purchaseConsumeProduct xmlns="https://94.206.70.106:8181/"> <userId>97XXXXXXX</userId> <serviceId>S-KXXXXX</serviceId> <premiumResourceType>MP-xxx-xx-xxxx-Sub-B2-D-xx</premiumResourceType> <productId>Daily MAP Test Sub V2 IN</productId> <purchaseMetas> <key>du:assetDescription</key> <value>Subscription</value> </purchaseMetas> <!--Zero or more repetitions:--> <billingMetas> <key>du:assetID</key> <value>-</value> </billingMetas> <billingMetas> <key>du:contentType</key> <value>mobileApp</value> </billingMetas> <billingMetas> <key>du:channel</key> <value>COMMERCE_API</value> </billingMetas> <!--Zero or more repetitions:--> <usageMetas> <key>du:externalid</key> <value>S-XXXXXX</value> </usageMetas> </purchaseConsumeProduct> </v:Body> </v:Envelope>
But they need like below
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.api.sdp.ericsson.com/"> <soapenv:Header/> <soapenv:Body> <ws:purchaseConsumeProduct>//Method name <userId>97XXXXXXX</userId> <serviceId>S-KXXXXX</serviceId> <premiumResourceType>MP-xxx-xx-xxxx-Sub-B2-D-xx</premiumResourceType> <productId>Daily MAP Test Sub V2 IN</productId> <purchaseMetas> <key>du:assetDescription</key> <value>Subscription</value> </purchaseMetas> <!--Zero or more repetitions:--> <billingMetas> <key>du:assetID</key> <value>-</value> </billingMetas> <billingMetas> <key>du:contentType</key> <value>mobileApp</value> </billingMetas> <billingMetas> <key>du:channel</key> <value>COMMERCE_API</value> </billingMetas> <!--Zero or more repetitions:--> <usageMetas> <key>du:externalid</key> <value>S-XXXXXX</value> </usageMetas> </ws:purchaseConsumeProduct> </soapenv:Body> </soapenv:Envelope>
How i can achieve above request with Ksoap.I have tried lots of way but not got any success. Please help me here.
The text was updated successfully, but these errors were encountered:
Vq
Sorry, something went wrong.
Va
No branches or pull requests
I'm soap for billing api.
WSDL URL : http://94.206.70.106:8181/cxf/services/UnifiedPartner?wsdl
My request is :
But they need like below
How i can achieve above request with Ksoap.I have tried lots of way but not got any success.
Please help me here.
The text was updated successfully, but these errors were encountered: