
// javascript proxy for SOAP based web services
// by Matthias Hertel
/* A WebService retreiving the names of German cities starting with a specific string. */

proxies.CountryLookup = {
url: "/AJAXEngine/S03_AJAXControls/CountryLookup.asmx",
ns: "http://www.mathertel.de/CountryLookup/"
} // proxies.CountryLookup

/* inputMessageName='GetPrefixedEntriesSoapIn', outputMessageName='GetPrefixedEntriesSoapOut'  */


/** Return Lookup entries that start with the given prefix. */

proxies.CountryLookup.GetPrefixedEntries = function () { return(proxies.callSoap(arguments)); }
proxies.CountryLookup.GetPrefixedEntries.fname = "GetPrefixedEntries";
proxies.CountryLookup.GetPrefixedEntries.service = proxies.CountryLookup;
proxies.CountryLookup.GetPrefixedEntries.action = "\"http://www.mathertel.de/CountryLookup/GetPrefixedEntries\"";
proxies.CountryLookup.GetPrefixedEntries.params = ["prefix"];
proxies.CountryLookup.GetPrefixedEntries.rtype = ["GetPrefixedEntriesResult"];
