To connect to Conga Web Service using SoapUI
- Open SoapUI. Go to File > New SOAP Project.
- Enter a name for the project.
- Click Browse. Navigate to the saved Enterprise or Partner WSDL file that you downloaded and click Open.
- Click OK to close the project window.
-
From the Navigation panel to the left, highlight the project folder and click to
expand. Click to expand the SoapBinding.
The list of methods that comprise the Enterprise or Partner services are displayed.
- Scroll down and right click on login. Double-click on an existing Request. The request window opens in the SoapUI interface.Note:
If you are doing this for the first time, you need to right-click on the login method and select New Request.
- Select and delete all content following the <soapenv:Header> tag and the </soapenv:Header> tag.
- Enter the username for your org (must have appropriate privileges) between the <urn:username> and </urn:username> tags.
- Enter the username for your org (must have appropriate privileges) between the <urn:password> and </urn:password> tags.The request should look like the following:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:partner.soap.sforce.com"> <soapenv:Header> </soapenv:Header> <soapenv:Body> <urn:login> <urn:username>username@example.com</urn:username> <urn:password>password</urn:password> </urn:login> </soapenv:Body> </soapenv:Envelope> -
From the upper-left corner of the window, click the Run
(
) icon.
The response is generated in the right-hand window. - Make note of the serverURL and the sessionId returned by the server. You will use the information to make Conga Web Service calls.