Installation guide

Appendix A: FlashCONNECT SOAP Access
124 FlashCONNECT Administrators Guide
To create and run the deployment wsdd:
1. Insert the wsdd code. For example:
2. Run the deployment. For example:
java org.apache.axis.client.AdminClient deploy.wsdd
Generating a wsdl File for Client Software
(Optional)
These instructions are SOAP server dependent. Below is an Apache Axis wsdl
generated for the FlashCONNECT interface. The wsdl language facilitates the client
program creation in that it allows you to write less code (than a nonwsdl application
requires) to accomplish your program’s goals.
The wsdl file should be either available on your web server to access client software
(more flexible) or shipped with the client software (better performance).
flashconnect.wsdl
<?xml version="1.0" encoding="UTF-8" ?>
<deployment name="FlashCONNECT" xmlns="http://xml.apache.org/
axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="flashconnect" provider="java:RPC">
<parameter name="className"
value="com.rdta.fc.facade.flashconnect"/>
<parameter name="allowedMethods" value="execute"/>
</service>
</deployment>
NOTE—In case of failures, you may need to create and run a wsdd to undeploy the
application. For example:
undeploy.wsdd
<undeployment name="FlashCONNECT" xmlns="http://xml.apache.org/
axis/wsdd/">
<service name="flashconnect"/>
</undeployment>
java org.apache.axis.client.AdminClient undeploy.wsdd
NOTE— The wsdl file contains the name of the server to access.
<hostname> is the name of your server host.
8080 is the default servlet server port.