- Yes
- Yes
- No SOAPAction is listed
- The url is listed about at the top of the page under url.
I found a better way. At the top of the link page, there is a link “View RPC Profile”. If you hit that link there is a table of the values which has these values:
Method Name
getRate
Endpoint URL
http://services.xmethods.net:80/soap
SOAPAction
Method Namespace URI
urn:xmethods-CurrencyExchange
Input Parameters
country1
string
country2
string
Output Parameters
Result
float
Here’s the table values for BabelFish:
Method Name
BabelFish
Endpoint URL
http://services.xmethods.net:80/perl/soaplite.cgi
SOAPAction
urn:xmethodsBabelFish#BabelFish
Method Namespace URI
urn:xmethodsBabelFish
Input Parameters
translationmode
string
sourcedata
string
Output Parameters
return
string
Note that the SOAPAction is listed in this table and is used in the following script:
property SOAP_app : “http://services.xmethods.net:80/perl/soaplite.cgi”
property method_name : “BabelFish”
property method_namespace_URI : “urn:xmethodsBabelFish”
property SOAP_action : “urn:xmethodsBabelFish#BabelFish”
property English_to_French : “en_fr”
property English_to_Spanish : “en_es”
property translation_mode : English_to_Spanish
– SOAP translation handler ------------------------------
on SOAP_call(SOAP_app, method_name, ¬
method_namespace_URI, method_parameters, SOAP_action)
try
using terms from application “http://www.apple.com/placebo”
tell application SOAP_app
set this_result to call soap ¬
{method name:method_name ¬
, method namespace uri:method_namespace_URI ¬
, parameters:method_parameters ¬
, SOAPAction:SOAP_action}
end tell
end using terms from
return {true, this_result}
on error error_message
return {false, error_message}
end try
end SOAP_call
set this_text to “I love you.”
set the method_parameters to {translationmode:translation_mode, sourcedata:this_text}
copy my SOAP_call(SOAP_app, method_name, ¬
method_namespace_URI, method_parameters, SOAP_action) ¬
to {call_indicator, call_result}
{call_indicator, call_result}
The above script was from the pdf I think. The page at xmethods is there, but I think they removed the link. I got it through a search. It says that it’s being discontinued from AltaVista.
http://www.xmethods.com/ve2/ViewListing.po?serviceid=14
Remember, you get to the page with the table from the link “View RPC profile”
gl,