Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
What are the steps for performing a simple Connect Web Services for SOAP request to verify the API is up and running?
Environment
CWS for SOAP API Oracle B2C Service, All Supported versions
Resolution
First you would need to make sure the CWS for SOAP API is enabled on your site and on the profile associated to your staff account:
Answer ID 8270: Enabling Connect for Web Services API Answer ID 4832: Connect Web Services for SOAP access
If everything is set-up correctly, you should be able to access the CWS for SOAP API.
The next step would be to download and install SoapUI, which is an advanced API testing tool that is also used by CX Service Support to troubleshoot potential API issues reported by customers.
Before proceeding with the request, you should make sure SoapUI is using a supported TLS version. Oracle B2C Service sites, including all the included public APIs cannot be accessed using TLS 1.0. By default, SoapUI is using TLS 1.0 so you would have to configure it to use TLS 1.2. Please review the following answer for step by step instructions on doing so:
Answer ID 8387: Enforce TLS v1.2 in SoapUI
Now we can finally proceed with the SOAP request.
Open SoapUI and Import the WSDL (Web Service Description Language) into SoapUI by going to File -> New Soap Project. The following URL should be entered in the "Initial WSDL" field, based on your Oracle B2C Service product version:
May 2017 and below: https://<your_site>/cgi-bin/<your_interface>.cfg/services/soap?wsdl August 2017 and above: https://<your_site>/services/soap/connect/soap?wsdl Examples: https://yoursite.custhelp.com/cgi-bin/yourinterface.cfg/services/soap?wsdl https://yoursite.custhelp.com/services/soap/connect/soap?wsdl
You have now created a SOAP project. Expand the "Get" operation on the Navigator (left side) and open "Request 1". Now replace the existing XML of the request with the sample XML available in the documentation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header> <ns7:ClientInfoHeader xmlns:ns7="urn:messages.ws.rightnow.com/v1_3" soapenv:mustUnderstand="0"> <ns7:AppID>Basic Get</ns7:AppID> </ns7:ClientInfoHeader> <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" mustUnderstand="1"> <wsse:UsernameToken> <wsse:Username>comland**</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText"> connecttest**</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ns7:Get xmlns:ns7="urn:messages.ws.rightnow.com/v1_3"> <ns7:RNObjects xmlns:ns4="urn:objects.ws.rightnow.com/v1_3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns4:Contact"> <ID xmlns="urn:base.ws.rightnow.com/v1_3" id="1" /> <ns4:Notes /> </ns7:RNObjects> <ns7:RNObjects xmlns:ns4="urn:objects.ws.rightnow.com/v1_3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns4:Incident"> <ID xmlns="urn:base.ws.rightnow.com/v1_3" id="1" /> <ns4:Severity /> </ns7:RNObjects> <ns7:ProcessingOptions> <ns7:FetchAllNames>false</ns7:FetchAllNames> </ns7:ProcessingOptions> </ns7:Get> </soapenv:Body> </soapenv:Envelope>
** Make sure to replace the username (comland) and password (connecttest) with the credentials of your Oracle B2C Service staff account.
Finally, click the green arrow next to the URL to run the request (shortcut key Alt+Enter). You should see the response on the right.
For more information, please see the Connect Web Services for SOAP API documentation: Answer ID 5169: Technical Documentation and Sample Code