Web Service Bridge to AdminStudio

Workflow Manager 6.0

As explained in Integrating AdminStudio and Workflow Manager, you can integrate Workflow Manager with AdminStudio to make software packaging procedures easier and more efficient. Integration with AdminStudio enables you to:

Launch Workflow Manager inside of the AdminStudio interface.
Define a Workflow Manager Workflow Phase as an AdminStudio Workflow Project, and receive progress notification from AdminStudio as the project Steps are completed.
Share application-related data between AdminStudio and Workflow Manager using AdminStudio extended attributes and Workflow Manager data groups.
Open the AdminStudio Report Center from the Workflow Manager All Reports page and view reports that give you a centralized view of information regarding packages in the Application Catalog.

The default value of the AttributeBridgeWebServiceUrl setting in web.config is:

<!--This is a Web service talk to the AdminStudio Web service to import the extended attributes. It was used by ASP pages, now it is used by .net pages (this service can be removed later)-->

<add key="AttributeBridgeWebServiceUrl" value="http://localhost/ASInterfaceBridge/AttributeBridge.asmx"/>

To modify this setting:

1. Open the wwwroot directory of the Workflow Manager installation and open web.config in a text editor.
2. Locate the AttributeBridgeWebServiceUrl portion of this file.

<add key="AttributeBridgeWebServiceUrl" value="http://localhost/ASInterfaceBridge/AttributeBridge.asmx"/>

3. To modify the IP address of the connection to AdminStudio, change the root directory of the URL (http://localhost in this example) to the new IP address. For example:

<add key="AttributeBridgeWebServiceUrl" value="http://178.22.333.44/ASInterfaceBridge/AttributeBridge.asmx"/>