Are you saying strongly typed parameters are not possible for soap services in php? If so, I can go to the client with this.
Thanks
Main Topics
Browse All Topicshi EE,
I have a ASP.NET web service being called using PHP using the code in the snippet below.
I am working off a c# example provided by the web service creators. Our project is using PHP.
Using the c# example code I am having problems with replicating these 2 lines below in PHP.
-- C# code
theservice.Service svc = new theservice.Service();
svc.MethodToCall(theservic
As you can see, this code (as above) calls the method, passing a type into it..
My PHP attempt is included within the code snippet below. The problem for me is that when running the code I get an error referring to the registranttype being invalid.. The error comes back from the web service itself.
can anyone suggest how I can use the RegistrantType.standard type correctly within PHP?
many thanks,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
just looking at this page, http://uk3.php.net/soap I can get a list of types..
Business Accounts
Answer for Membership
by: Ray_PaseurPosted on 2009-10-19 at 16:10:11ID: 25609758
Yet another example of why SOAP is simply evil. How many hundreds of thousands of man hours have been wasted on this sort of thing?
I can't help you with this, but I can offer a suggestion. Ask the provider to give you a REST interface. Once they have done it for you, they can do it for everyone else. The noise level will go down and productivity will go up.
A good example of a REST interface is the Yahoo Geocoder (Google it) and it is not a surprise at all that the web service experts at companies like Yahoo and Google use REST instead of SOAP!
Good luck with it - I hope they can make a REST pipe available, ~Ray