I am doing some work with Robin Hilliard's Galaxy Service CFC application and seem to be having an issue.
I get the following error when trying to run a function on a remote service. Cannot perform web service invocation send. The fault returned when invoking the web service operation is: '' java.lang.IllegalArgumentException: argument type mismatch If I call the URI directly - then I see the raw XML fine and dandy. Using : http://localhost/loginService/loginServiceSampleApp/authUser/AppLoginService.cfc?wsdl Returns : This XML file does not appear to have any style information associated with it. The document tree is shown below. - <wsdl:definitions targetNamespace="http:// authUser.loginServiceSampleApp.loginService"> <!--WSDL created by ColdFusion version 9,0,0,251028--> - <wsdl:types> - <schema targetNamespace="http://xml.apache.org/xml-soap"> <import namespace="http://authUser.loginServiceSampleApp.loginService"/ > <import namespace="http://rpc.xml.coldfusion"/> <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> - <complexType name="mapItem"> ......etc...... So I am assuming that the CFC invocation is all fine and dandy; Here's my code that I am using that causes the error; <cfset remoteLoginService = createObject("component","/loginService/ loginServiceSampleApp/authUser/AppLoginService").init("http:// localhost/loginService/loginServiceSampleApp/authUser/ AppLoginService.cfc?wsdl")> Does the password match?<br /> Is the user authenticated?<br /> <cfoutput> #remoteLoginService.fn_check_user_in_ldap(user = 'test_user', password = 'test_password')#<br /> </cfoutput> I do see the text; "Does the Password..." So it would seem that I have an issue passing parameters to the function in the manner that I currently am... If anyone can see anything obivous - I would be most grateful... Gavin -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en.
