Are your other web services also called via document-style wsdl's? I ask because I had trouble calling document-style wsdl's in the manner you're indicating. I found that rpc-style could be called as you indicate
webserviceid.operation.send(param1, param2, paramN) syntax But, document-style had a problem unless I passed to it an object with the params appended as object properties. Specifically, I had to declare an object with the same name as the input operation's root xml node name, and then append the child nodes as follows. If the input to the web service was an xml like <login> <Email>[EMAIL PROTECTED]</Emaile> <Password>1234</Password> </login> the object I had to pass was var login:Object = new Object(); login.Email = _email; login.Password = _password; _loginWS.LoginOperation(login); R. Grimes

