As we all know if webservices of another party using window NT authentication, we cannot use CFInvoke for calling webservices. At that time, we need another 3rd party webservices integrator for coldfusion to access another party. At that time, we need to use CFObject instead of CFInvoke.
2<cfobject type=".NET" name="webServiceName" class="ViewUserLibrary.UserManagementService" assembly="C:\ViewUserLibrary.dll" />
3<!--- call webservices URL --->
4<cfset webServiceName.set_wsdl("http://10.168.7.71:8080/oaswebservices/OASWebSvcPatientMgmt.asmx?wsdl") />
5<!--- Window NT Username --->
6<cfset webServiceName.set_userId( "CTTT24" ) />
7<!--- Window NT Password --->
8<cfset webServiceName.set_password( "passwd78" ) />
9<!--- Window NT Domain --->
10<cfset webServiceName.set_domain( "CGHAD" ) />
11<cfset dataSetResult = webServiceName.viewUserInfo("CG","PPShein")/>
12
13<!--- Dump it --->
14<cfdump var="#dataSetResult#"/>

Android
Top of Page
#1 by Steve Bryant on 8/16/12 - 8:59 AM
#2 by ppshein on 8/16/12 - 8:07 PM