Hi,

I am trying to create a web service in pure action script.  I need to
authenticate and then call the proper method from the web service.

I have not seen any good tutorials explaining how to do this...

This is my current snippet:

private function init():void{
                        
     var ws:WebService = new WebService;
                        
     ws.wsdl =
"http://sc-vmx-03/clarusipc/services/InventoryService?wsdl";;
     ws.useProxy = false;    

    
ws.loadWSDL("http://sc-vmx-03/clarusipc/services/InventoryService?wsdl";);

}

What is the format to add in an operations object that will include
the method and parameters that I'm going to call?

How would I go about editing the http request to include a username
and password to authenticate against?

Any help would be greatly appreciated!!!  It's driving me nuts!

Reply via email to