Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

FAQs

...

Specific

...

How get WSDL file from URL?

The WSDL can be obtained from the following URL http://example-custhelp.com/cgi-bin/interface.cfg/services/soap?wsdl=typed 

This URL will always return the latest version of the WSDL.
If a previous WSDL version is needed, it can be seen with the following URL https://example-custhelp.com/cgi-bin/interface.cfg/services/soap?wsdl=typed_v(version_number) 

How generate source code from WSDL URL?

  1. Download Axis2 from http://axis.apache.org/axis2/java/core/download.cgi
  2. Decompress the file.
  3. Open a console.
  4. Go to the \bin folder of the uncompressed file.
  5. Execute the command

    Code Block
    languagepowershell
    collapsetrue
    wsdl2java -uri http://<domain>.custhelp.com/cgi-bin/<interface>.cfg/services/soap?wsdl -ns2p urn:wsdl.ws.rightnow.com/v1=com.rightnow.ws.wsdl,urn:objects.ws.rightnow.com/v1=com.rightnow.ws.objects,urn:messages.ws.rightnow.com/v1=com.rightnow.ws.messages,urn:common.ws.rightnow.com/v1=com.rightnow.ws.common -u -uw -or
    1. wsdl2java options:

      1. -uri: WSDL location

      2. -ns2p: Set the namespace for each package in the notation of [namespace]=[package], could change between versions of Right Now, see Right Now Getting Started (Axis2) - Creating the Ant Build File

      3. -u: Unpack databinding classes

      4. -uw: Switch on un-wrapping

      5. -or: Overwrite files

General 

Include Page
aspire:Aspire Connectors FAQ & Troubleshootingaspire:
Aspire Connectors FAQ & Troubleshooting

Troubleshooting

...

Problem

The connector is returning duplicated data.

...