Hi,

We're looking for someone to help with getting Drupal to talk to a SOAP web service. We'd pass about 6 params to the service and get a TRUE or FALSE result which we then save.

Thanks

Comments

Jaypan’s picture

You have posted in the Paid Services section, however your comment is worded somewhat as if you are looking for support. Can you please clarify which you are looking for?

oncreative’s picture

Yes I suppose, paid support.

As part of a module (or extending existing Drupal modules) we looking to have a function (which we will pay someone to write) to pass data and retrieve the result to/from a web service using SOAP. So we can use it like this:

$result = Query_Web_Service($param1,$param2,$param3, etc);

if($result){
do something;
}

.
.
.etc

We want someone to write/develop the Query_Web_Service() function.

Jaypan’s picture

In that case, it already exists in Drupal core (with a different name): drupal_http_request()

cleverhoods’s picture

I did a bit of research about this. Seems well documented.

https://drupal.org/node/1114308

oncreative’s picture

Thanks everyone. That's going to make it easier, but it'd be handy to know what to ask the service provider. I'll read through the documentation but if anyone wants to provide some paid help with this then I'd appreciate an email so we can sort something out.

oncreative’s picture

Thanks for everyone that has offered help. There's someone working on it now.

mrconnerton’s picture

I assume they are looking for more of a programatic approach in their custom modules, not a rules based approach.

I think you are looking to use http://www.php.net/manual/en/class.soapclient.php

oncreative’s picture

Yes, thanks for the link I'll keep that for future reference.

barraponto’s picture

There was a Soap Client module available for Drupal 6. https://drupal.org/project/soapclient
If you're interested in porting it to Drupal 7, I'm up to the task.
Please contact through my profile's contact form.

Capi Etheriel
Web Developer, Designer and Scraper
http://barraponto.blog.br

thomasmurphy’s picture

Alexius’s picture

Hi, do you know, how we can use this combination? maybe tutorial?