Ask a Question related to Brainstorming Area, Design and Development.
-
Anil Singla #1
Dot Net 1.1 Web Service Call | Apple Script
We are facing the following issue while using Applescript to make web service calls
We are trying to call a dot net (“asmx” web service) using Apple script. The script is running fine without any parameters but when we introduce parameters in this script, the web service is not accepting it and is converting the parameter to a NULL value.
E.g. If I send the value ‘1’ in the param X it is converting the “1” to a NULL when I check by debugging the Webservice .
Please find the sample script written for the same. Let me know if someone can help to resolve the issue.
---------------------------------------------------------------------------------------------------------------------
on BasicStore_MathService_Add()
tell application "http://basicstore.net/MathService.asmx?wsdl"
set mn to "Add"
set sa to "http://basicstore.net/MathService/Add"
set mns to "http://basicstore.net/MathService/"
set params to {x:1 as integer, y:3 as integer}
return call soap {method name:mn, parameters
arams, SOAPAction:sa,
method namespace uri:mns}
end tell
end BasicStore_MathService_Add
BasicStore_MathService_Add()
---------------------------------------------------------------------------------------------------------------------Anil Singla Guest
-
Web Service Call to consume SAP Web Service
Greetings, I have been stuck trying to get CF 8 to talk to SAP serviced Web Service. Here is code I am using: <cfscript> ws =... -
Web Service call API
We have an API library provided by a vendor. When I run this as a Windows App under .NET, it works correctly. However, when I converted it to a... -
font in Illustrator CS and Apple Script
I try to write script on Apply Script for Illustrator: tell application "Illustrator CS" activate set myDoc to current document set myText to... -
VB6 call Web Service
I want to know how can i pass parameters to web service and get back the result. I tried taht over 1 day. But it is not worked and returned error... -
Apple menu script error
I'm trying to create a simple menu for my project. I keep getting a script error on the first line, although it's about as simple as you can get. ...



Reply With Quote

