Tagged Questions

23
votes
7answers
13k views

PHP SOAP tutorial?

I need to write a SOAP client using PHP 5.3. The WSDL for the service is reasonably complicated. I can't find a PHP SOAP tutorial anywhere that walks through how to do this - I haven't found any that ...
12
votes
4answers
4k views

REST API - why use PUT DELETE POST GET?

So -i was looking through some articles on creating REST API's. And some of them suggest using all types of HTTP requests: like PUT DELETE POST GET. So - we would create for example index.php and ...
11
votes
5answers
313 views

What are some of the pitfalls/tips one could give for developing a web service

Looking to develop a web service (api) in PHP to offer customers an easier way to integrate with our platform. There are workflow calls that will be validated with user/pass as well as some reporting ...
11
votes
5answers
13k views

How to post SOAP Request from PHP

Anyone know how can I post a SOAP Request from PHP?
10
votes
4answers
11k views

Send SOAP XML via curl, PHP

This has been bugging me for days, i'm trying to send a SOAP post via curl but i just keep getting a 'couldn't connect to host' error but i really cant see how. I have an asp version which works fine ...
8
votes
4answers
9k views

Handling Soap timeouts in PHP

I'm working on a project where I am verifying information from a user with a SOAP web service. I currently am taking care of errors assuming that I'm receiving responses from the web service, but also ...
7
votes
2answers
347 views

Connecting to a web service with PHP given only username, password and certificate authority

I am successfully connecting, using Microsoft C#, to a Microsoft web service. I have to supply a username, password (in the C# code); and install a certificate (in .cer format) into the "Root ...
7
votes
2answers
205 views

Dealing with commas in CSV

I get a CSV data from a SOAP call in php. Unfortunately, the data may have commas in it. It is formatted correctly as in 1,name,2,lariat,3,"first, last",5,NMEA,... I need to parse it to individual ...
7
votes
1answer
1k views

Why use NuSOAP rather than PHP SOAP? Any benefits?

As far as I have scourged the web, I can see an abundance of articles on how to setup NuSOAP and use it to setup a SOAP server and client in PHP. However, none of them seem to point to any advantages ...
7
votes
1answer
10k views

In PHP how can you clear a WSDL cache?

In through php_info() where the wsdl cache is held (/tmp), but I don't necessarily know if it is safe to delete all files starting with wsdl. Yes, I should be able to just delete everything from ...
6
votes
3answers
204 views

How to require Authentication Soap Header in WSDL?

I have created a web service in php using SOAPServer. It expects to see a SoapHeader UsernameToken with username and password elements. Everything actually works fine when I include this header in the ...
6
votes
1answer
83 views

List of all possible SoapServer Exceptions

Are any/all of the exceptions a PHP SoapServer might throw documented anywhere? (meaning the built is native PHP implementation of a SoapServer, not a third part PHP based implementation) If not, ...
6
votes
2answers
526 views

SOAP Request with <stdClass> tags

This is my first time posting, so forgive me if I'm not very clear. I will also preface this by saying that I really know very little about php and web services. The issue I'm having is this: A ...
6
votes
5answers
1k views

Micrsoft CRM 3.0 web service via PHP Soap class

I would like to create new contacts and leads using php. I can't quite figure out how to call the methods of the mscrm 3 web service. The php soap class seems quite simple to use. I am able to ...
6
votes
2answers
3k views

Using PHP to call a WCF web service with multiple bindings

I have a WCF web service which allows both Basic HTTP and WS-HTTP clients, both over HTTPS using user name & password authentication. This is achieved with two bindings on the same service. So, ...
6
votes
3answers
4k views

Collecting/Processing headers in PHP Soap Server

I'm creating a web service using PHP5's native SOAP Methods. Everything went fine until I tried to handle authentication using SOAP Headers. I could easily find how to add the username/password to ...
5
votes
2answers
315 views

How to create a relationship between Leads and Custom Modules in SugarCRM CE?

function createPJOpportunityRelationship($pj_id, $op_id) { echo "creating relationship"; $set_relationship_value = array( 'module1' => 'geral_pessoa_juridica', 'module1_id' => ...
5
votes
1answer
4k views

Passing array to SOAP function in PHP

Greetings, I can't seem to find a way to create a function request with array as an argument. For example, how do I make this kind of request using PHP SoapClient: <GetResultList> ...
5
votes
1answer
12k views

How do you determine a valid SoapAction?

I'm calling a webservice using the NuSoap PHP library. The webservice appears to use .NET; every time I call it I get an error about using an invalid SoapAction header. The header being sent is an ...
4
votes
1answer
42 views

Disable Statistics/Analytic Javascript

My free webhost appends analytics javascript to all PHP and HTML files. Which is fine, except that I'm using nuSoap to create a WSDL file for a webservice I'm working on. My darn host adds this to my ...
4
votes
1answer
2k views

Using PHP SoapClient classmap option with WSDL containing an element and complexType with the same name

I've encountered a few different WSDL files that contain an element and a complexType with the same name. For example, http://soap.search.msn.com/webservices.asmx?wsdl has two entities named ...
4
votes
1answer
553 views

How to get all additional attributes of Magento Product without explicitly specifying them

My goal is to get and display all additional attributes for the Magento product using SOAP API. For example Gender, Shirt Size and Color for T-Shirt product. But the program shouldn't know the ...
4
votes
3answers
3k views

How to do authentication using SOAP?

How do i authenicate users with SOAP ? Will i have the user require to send his username/pass with every SOAP request and i authenticate him against the database ? Doesn't that seem to cause ...
4
votes
1answer
1k views

PHP AND SOAP. Change envelope

It is many questions there about PHP and SOAP. But I am not found answer on my situation. So. I use PHP SoapClient and WSDL for it. Object sends this: <SOAP-ENV:Envelope ...
4
votes
1answer
905 views

Specifying SOAP Headers for a Zend_Soap Service

I have a generally straight forward web service that I've written (converting code to ZF from a Java implementation of the same service and trying to maintain the same wsdl structure as much as ...
4
votes
2answers
4k views

Inspect XML created by PHP SoapClient call before/without sending the request

The question: Is there a way to view the XML that would be created with a PHP SoapClient function call BEFORE you actually send the request? background: I am new to WSDL communication, and I have a ...
4
votes
3answers
460 views

Has anyone succeeded at downloading orders from Amazon Seller Central using PHP?

It looks like this question has been asked before, here and in other places on the web, but I have yet to find any solid documentation on how it's done. We need a way to pragmatically "suck" orders ...
4
votes
2answers
3k views

PHP SOAP client that understands multi-part messages?

Is there such a beastie? The simple SOAP client that ships with PHP does not understand multi-part messages. Thanks in advance.
4
votes
1answer
941 views

Is there a good alternative to PHP's SOAP extension?

I have a project which relies heavily on PHP's SOAP extension. It's great, and works wonderfully. However, I have to deploy a version of the software on a server that does NOT have the extension (it ...
4
votes
7answers
18k views

Uncaught SoapFault exception: [HTTP] Error Fetching http headers

I'm trying to create a soap connection to Magento's web services, however I'm getting an error when I try and create an instance of the soap client class. I can view the wsdl file in firefox without ...
4
votes
8answers
1k views

Generating objects in PHP using REST

I am trying to make a decision whether I should use a REST service or a SOAP service for some web facing functions that I am producing. This decision is based on whether I can easily use the REST ...
4
votes
5answers
4k views

Validate an incoming SOAP request to the WSDL in PHP

The built-in PHP extension for SOAP doesn't validate everything in the incoming SOAP request against the XML Schema in the WSDL. It does check for the existence of basic entities, but when you have ...
3
votes
1answer
64 views

How do I create a product with additional attributes in Magento via Soap/Java

Good day! I would like to use the Magento’s SOAP API to manage the product catalog, attributes etc. I'm running following configuration:- Magento 1.6 Soap API WS-I compliance Mac OSX Lion Mamp ...
3
votes
2answers
169 views

change soap prefixes in php

i'm rewriting a soap web service from .net to php. by default, php is giving me tags that look like this: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
3
votes
1answer
118 views

Disable certificate verification in PHP SoapClient

Summary: Is there a way to force the built in SoapClient-class in PHP to connect over HTTPS to a server with an invalid certificate? Why would I want to do that? I have deployed a new application on ...
3
votes
2answers
128 views

SOAP Server in PHP - how to write WSDL file - tips

I have quite complex (authentication, logs, ...) SOAP server (standard PHP extension). Everything is working fine but I want to know if there is any tool for creating / generating WSDL file? All ...
3
votes
1answer
325 views

How to set these complex types in ZEND SOAP AutoDiscovery?

Hello I need to write a SOAP server, where I would be able to pass complex types, structuraly that would look like this: <ParcelDetails> <countryType></countryType> ...
3
votes
2answers
181 views

How to “release” memory in loop?

I have a script that is running on a shared hosting environment where I can't change the available amount of PHP memory. The script is consuming a web service via soap. I can't get all my data at once ...
3
votes
2answers
157 views

Salesforce - query returns only 500 rows when more exist

First of all, I'm not the one developing this but I'm the one with the SO account. My SF knowledge is almost non-existent. Basically, the problem is that a query is returning only 500 rows from our ...
3
votes
1answer
682 views

PHP / jQuery/AJAX + POST SOAP request with authentication

I was looking for way to perform form (post) request with SOAP using jQuery/AJAX. I have found following solution for jQuery/AJAX SOAP request with ColdFusion background. Posting XML SOAP Requests ...
3
votes
1answer
755 views

Magento API call for getting products information

I used the below code to get products details from a magento store from my localhost $proxy = new SoapClient('http://domain.com/magento/index.php/api/soap/?wsdl'); $sessionId = ...
3
votes
1answer
349 views

Why use SOAP for webservices?

I have read a tutorial "web-service-php-mysql-xml-json". It seems everything is ok. But then why we should use soap for web services?
3
votes
1answer
410 views

Magento SOAP WebService -> User Login

I'm writing a web service for communication between a mobile device and magento, i'm using SOAP webservices which Magento provides, however, i'm lost at User Authentication, i need to authenticate my ...
3
votes
2answers
869 views

SOAP-ERROR: Encoding: Violation of encoding rules?

I am trying to use Yii to provide a web service. The auto-generated wsdl is below. I can successfully consume the web service from the command line, but through a web browser, I get SOAP-ERROR: ...
3
votes
2answers
645 views

Serializing a PHP SOAPClient object

I'm writing a PHP application which uses a number of SOAP web services to gather data. I'm getting significant overheads in instantiating all those objects: in some cases a single line of code ...
3
votes
2answers
636 views

PHP soap problem

I'm triying to insert data a remote server via SOAP. But got the error below: object(stdClass)#3 (1) { ["DataInsertResult"]=> string(51) "Hata : DI - Value cannot be null. Parameter name: s" } Here ...
3
votes
1answer
351 views

Segmentation Fault error in PHP, using SOAP to connect to SalesForce

I'm integrating my software (PHP) with SalesForce, using the SalesForce PHP Toolkit. So far, everything's worked great, but when I started writing the code to call convertLead(), I got a ...
3
votes
3answers
514 views

good book for wsdl, web services and php soap?

I'd like to learn web services (SOAP, WSDL) and I primarily code in PHP. Can you suggest any book, that uses PHP to teach these concepts?
3
votes
1answer
689 views

Problems sending SOAP auth Headers in php

I am very new to SOAP (i.e. no clue!) I have been asked by a client to interact with an existing SOAP service that requires authentication done through my SOAP headers ( a simple username and ...
3
votes
1answer
713 views

SOAP fault: object not set to an instance of an object

I found this question on here: http://stackoverflow.com/questions/927566/php-soap-issue-server-was-unable-to-process-request-object-reference-not-s I have a similar issue, only the WSDL is private, ...

1 2 3 4 5 21