[ic] Problems with SOAP

Jon Jensen interchange-users@interchange.redhat.com
Mon Dec 3 14:21:01 2001


On Mon, 3 Dec 2001, Thomas Dan Otto wrote:

> I was very happy to see, that SOAP is now integreted in IC 4.8.3.

It's been part of IC since the 4.7 days, actually.

> Also I tried to contact to a SOAP-server, helloworld example (from
> www.soaplite.com) on my localhost. The call looks like:
>
> my $text = q{[soap
> uri="http://localhost:80/Demo";
> proxy="http://localhost:80/cgi-bin/hibye.cgi";
> call="hi"
> ]};
> (In a single perl script, it's okay...)
>
> The only thing happend, is that $text has the string as value=[soap
> uri="ht...]. It seem, that the tag it is not "compiled". Nothing is
> written in the error.log. Do you have an idea?

You probably mean something like:

my $text = $Tag->soap({
	uri	=> "http://localhost:80/Demo",
	proxy	=> "http://localhost:80/cgi-bin/hibye.cgi",
	call	=> "hi",
});

> Were can I got more information about SOAP in IC?

I think this is it for now:

http://ftp.interchange.redhat.com/interchange/alpha/soap.html

Jon