Axeda WSDL files

Using the Axeda WSDL's (Please note these are for Release 6.0+)

The exact steps for using the Platform Web Services and creating your application to
communicate with an Axeda Enterprise server are specific to your development environment.
 
Java has multiple environments which may provide different tools for working with Web
Services. One method uses Apache Axis, which is available from http://ws.apache.org/axis.
Axis has tools for creating Java client stubs from a WSDL service description.
 
Microsoft .NET languages have a common method of dealing with Web Services. The
examples use Visual Basic, but C++ and C# have similar functionality. 

Perl
has support for Web Services through SOAP::Lite available from http://www.soaplite.com/.
The tool stubmaker.pl reads a WSDL service description and creates a module which encapsulates
the operations in that service.

Download WSDL's here 

Please do not import the WSDL's directly from the platform URL. The files here include the header needed for authentication.

 

How to import WSDL's into Java

To create Java client stubs using Axis, do the following:
1. Make sure the axis.jar and related jars are in your classpath.
2. Run WSDL2Java to create java classes from wsdl.
     For example:
    prompt>java org.apache.axis.wsdl.WSDL2Java <wsdl file name>
The classes generated will have the paths:
com.axeda.sdk.webservices.data and com.axeda.sdk.webservices.type.

 
How to Import WSDL's into .NET as a Web Reference

 

The .Net Clients on the Developer connection all use the "Add Web reference" to import the WSDL's

The following steps show how they were imported into Microsoft Visual .NET 2008.

1. Start the .NET IDE and create a new project.

2. In the Solution Explorer (right side of IDE), right click on References and select Add Service Reference...

3. Click on Advanced button and then the Add Web Reference button

4. In the URL area, type in the location of the WSDL (including the service e.g. c:\WSDLs\GeneralService.wsdl) and click Go

5. You will see the methods for the Web Service (if not, make sure path and case to WSDL is correct)

6. Change the WebReference name to the service name e.g GeneralService and click Add Reference

7. This will add the reference to your project

A list of .NET examples can be found here.

For more information see the Axeda Platform Web Services Developer's Reference Guide or the Web Services Overview.