cancel
Showing results for 
Search instead for 
Did you mean: 

MII Web Services Object questions

former_member196557
Active Contributor
0 Kudos

1. What is the WSDL Base Url property in the Authentication tab of the Configure Object screen?

2. Is there a way to Trace the raw soap message and web service url that is sent when the web service is executed?

Thanks,

Steve

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Steve,

Ok, in short:

1) The WSDL Base url is prepended to the WSDL URL property. This allows for the user to swap out the http://<server>:<port>; when migrating between dev, qa, and prod without having to worry about modifying the entire WSDL URL. In v12.1 the easy way to accomplish this is to create a Shared Memory property called something like WSDLBaseTargetServer and set it equal to your web service source system relevant to that particular MII instance.

2) If you mean during design time simply use the Logging -> Tracer action, if you're talking runtime then you can write files into the MII content DB via the File I/O -> Write File & Web -> XML Saver action blocks. Be sure to use the guid function in the expression editor to ensure that your generated filenames are unique. So something like:

"MyServiceRequestXML_" & guid & ".xml"

Hope this helps,

Sam