Passing multiple parameters through Atlas to a web service
The Atlas examples that I looked at had one parameter being passed into a web service. I wanted to see how to had multiple parameters. I figured I had two options:
- Create a custom object and pass that in. Thats how it works with MSMQ So that was my first thought.
- Hand in multiple parameters in the same order as the web service accepts them. I tired that and bingo, it worked. ClassName.MethodName(param1, param2,....., paramN, CallbackJavascriptMethodName)
It does seem that Atlas and the Ajax libraries from Michael Schwarz share a lot of the same thinking.
Wally