Hi,
it depends on what you mean by webservice. if you mean a soap request, then
its easy with firefox and safari, as they support making soap calls directly
(have a builtin method). if you are talking IE, you can try the IE soap
behavior.
The IE Soap behaviour (webservice.htc IIRC) is badly bugged. It creates
enormous memory leaks. We found this out last year when we were using it
in our web application, and when we contacted Microsoft with a simple
repro to demonstrate the problem, they marked it "unsupported" a few
weeks later. I wouldn't recommend using it.
In the moment, and if you don't want to use the Atlas libraries, you are
pretty much stuck with simple XmlHttp requests, or write your own
JavaScript SOAP library (which I did in about 2 weeks time). It was
hard, but it works well.
Unfortunately, I cannot post that code, as it is property of my firm
(Siemens), but you will have the code if you buy our product ;-)
HTH,
Laurent
you can use the xmlhhtprequest object to just send / fetch strings, in which
case its easy.
Actually you can send/fetch any XML document, which makes it a bit more
flexible.
HTH,
Laurent