0
votes
0answers
12 views

How do I produce an array from a raw XML CURL response?

I have tried following the advice in this thread, but I still seem to be having trouble getting a usable array from a raw XML CURL response (actually I just want a couple of bits of data from the ...
0
votes
1answer
20 views

Reading xml data from remote server securely

I need to get some xml data from my customer's server. I created two php files for doing this. When I call a php file in my server (reader.php), it calls the file in remote server (client.php) and ...
0
votes
2answers
25 views

Solr on Tomcat not able to post xml files without error field unknown

I just installed Solr on Ubuntu with the following tutorial: http://feinan.com/2012/05/19/how-to-install-solr-3-6-0-on-ubuntu-12-04-lts/ which got me up and running fine. But when I want to post a ...
-1
votes
0answers
21 views

Curl Code is Not executing in the server

The curl code is as below. <?php $url = 'Url'; $input_xml = "Xml Request"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, "xmlRequest=" ...
0
votes
0answers
49 views

Curl soap cdata request

I have next curl request -. curl -H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction:" -d ...
-1
votes
0answers
36 views

Populating a drop-down menu of options based on an external database

With the use of cURL (and XML), how is it possible to connect to a external web-service in order to populate a drop-down menu based on the external database? The web-service I'm connecting to has a ...
-1
votes
2answers
70 views

Retrieving XML Response values & storing them as variables in database [closed]

I am encountering some errors while trying to retrieve XML Response Values & storing them as variables in a MySql database. To be specific i want to trap these 2 values : status & credit from ...
0
votes
1answer
48 views

Setting plimus API in order to fetch an authentication token

I need to set up plimus API in order to fetch an authentication token and then use it to log the customer into Plimus platform. I'm using to following code: $URL = ...
2
votes
1answer
118 views

php - CURL HTTP Authentication at server side

i want to change xml value in php but don't change .... <?php $url = "http://192.168.1.103:8080/ew.xml"; $xml = '<?xml version="1.0" ?> <DDCConfig:getValue ...
0
votes
2answers
55 views

table formatting for xml returned via CURL from API

I am using another company's API to retrieve information from their database, it is being returned to me in XML format. I'm trying to accomplish two things - but am having a couple issues. 1st I ...
0
votes
1answer
46 views

php / curl / xml parser

a while ago i did a quick news parser for a friend. here is the code: $ch = curl_init("http://feeds.energydigger.com/headlines.xml"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, ...
0
votes
1answer
87 views

PHP Reading XML Response After Posting Data To External Server

I am new to php an XML. Plus I have gone through many threads on this topic here. There might be a slight glitch, but I am not able to read this. Here is what I am doing to read it as per one of the ...
0
votes
1answer
136 views

How to parse curl response when header is returned

So what I am trying to do, is parse every "node" in the response for lack of better words. It should echo the "tag" followed by a ": " then the value. What I have tried is in the "Code" section. What ...
0
votes
2answers
59 views

cURL giving 400 in response [duplicate]

Hello to anyone willing to help.. I don't know what else to do. I am trying to send an xml request to an api which will give back an xml formatted response. I am using curl to achieve it. But no ...
0
votes
1answer
35 views

PHP Multi XML POST with loop using CURL

I have multiple XML_PAYLOAD's to post (different xml posts for each while loop). When I run the loop it will only POST the data of the first $i loop. How can I get it to POST new data for each $i ...
0
votes
0answers
75 views

Convert ASP HTTP request to PHP Curl request

If this code is correct and working in asp String xmlstc = "Some XML Code"; HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(server); httpWebRequest.Method = "POST"; ...
0
votes
1answer
111 views

how to send xml file to server backend using php? [duplicate]

I have fetched data from server using this code, `$server = 'LOCALHOST:9000'; $headers = array( "Content-type: text/xml" ,"Content-length: ".strlen($requestXML) ,"Connection: close" ); $ch = ...
0
votes
2answers
72 views

Scrape HTML table and create XML in PHP

I already wrote a php script that logs into our school note system. But I'm trying to parse the HTML page to xml. But I'm running into some troubles. First of all the html code of the tabel is kinda a ...
0
votes
0answers
11 views

How do I build my xml request to pass multiple object (curl)

I've designed a create method for my api that should allow to create multiple objects through POST request (in xml or json format). Here's a working exemple of a request with data in json: curl -u ...
0
votes
1answer
185 views

Google API Contacts v.3, PHP: add a contact to the group

I successfully managed to create a new contact with cURL, but when I want to add group membership for this contact, I get 400 error. I've read this docs and made the same request, but it didn't work. ...
0
votes
2answers
47 views

how to get xml respone in array in php after hitting payment webserver

/How to get the values of xml using php/curl for the link/ ...
0
votes
0answers
11 views

weird curl behaviour when getting xml

im using this code to retreive an xml result from http://www.bankisrael.gov.il/currency.xml?curr=01 $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, ...
0
votes
0answers
67 views

Web Service - CURL vs VS2008 vs SoapUI

Using CURL... i was able to run the following command C:\curl>curl -H "SOAPAction: http://172.16.255.7:5000/client_smart/" --data @soap.xml http://172.16.255.7:5000/client_smart In my C:\ ...
0
votes
1answer
200 views

PHP: Send XML data with cURL PUT [duplicate]

I want to update my inventory in Sears marketplace with API. "Inventory Management: This API call uses the PUT method to manage the inventory level of your items. To avoid errors, inventory updates ...
5
votes
1answer
127 views

Upload the files from live server to youtube is not working?

I am working in you tube API integration.This code works perfectly in local host.But its not working live server.further its not upload video from live server to YouTube.I am not able to upload video ...
2
votes
1answer
113 views

how to send an XML request to an API with R

i am trying to automate the download of a bit of data from the API of this government website. the website instructs: All requests for this version should be made to the following URL: ...
0
votes
0answers
30 views

Complicated: 4 consecutive curls with XML in between

I've a tricky question on how to deal with consecutive curls in PHP. I have this incredibile data flow: example.com/one.php post data via curl to another.com/two.php another.com/two.php post data ...
-2
votes
2answers
137 views

send an xml file using curl in php [closed]

I am trying to send an xml file to my webservices using curl but everytime i am getting 500 error. I am not able to understand where i am getting wrong. My curl code is as follows $xml = ...
0
votes
0answers
114 views

php curl - Netsuite Webservice

we are currently trying to integrate into the Netsuite webservice, however we do not wish to use their PHP connector kit. we have already got a script we have developed using Coldfusion and cfhttp to ...
-1
votes
2answers
241 views

Get a particular xml tag from Curl Response(a rest api) [duplicate]

Am getting a curl response like this, <result> <term>ve</term> <rhymes> mckie, mcnee, mcphee, mcphie, mcree, mcvea, moree, mt, musee, nabil, mckey, mcghie, mcghee, macphee, ...
0
votes
0answers
59 views

Api Error If File Contains Ampersand

I'm trying to send xml file to prestashop api to create new product. The problem is that api responds with error (cannot parse as xml string) if & or &amp; is located in CDATA container. ...
0
votes
1answer
103 views

Send POST request with empty response

I am trying to get response form my API via CURL, the method needs to get user data via XML and than returns XML with response data. I get nothing back. API works well, when I try the same request ...
0
votes
1answer
116 views

Posting XML order: Failed to retrieve query string parameters

I'm in the process of creating a XML file from a database. Subsequently, I am taking that XML file and attempting to post it to an exterior website. After dealing with serious issues pertaining to ...
0
votes
2answers
86 views

Curl -d command from the terminal

I had a specific question in regards to curl. I want to call my xml page and I am executing something like this from my terminal: curl -d @<xml page> <url> However when i execute the ...
0
votes
1answer
201 views

Curl https xml result returns blank (boolean false) in PHP

Please need your help! I send a post using cURL but the response is blank (boolean false). If I post the data on browser like just pressing the ...
-1
votes
1answer
80 views

what is the best way to retrieve data from other website?

I want to get a table from other website (the table is being updated daily) and I want it to be shown in my website just not in the same arrangement as it has in the original website. So I got the ...
1
vote
2answers
82 views

PHP cURL XML Response with single XML Tag

I am using SimpleXML to load a response from an API call. However, if the server returns an error, it only returns a single XML tag with the error message: <err>ERROR MESSAGE ...
0
votes
0answers
129 views

Can't see XML response from PHP cURL api Call

I'm using a remote API with cURL and querystrings. The issue I'm having is that I can't see the data being returned to me (which is in XML format). To start, here's my code: $url = ...
1
vote
1answer
249 views

pass URL special characters in XML to curl

I had an XML file with a url variable containing special characters such as &, = etc I have two questions: A. Since the special characters are not allowed in XML, how should I enter the URL? ...
2
votes
2answers
72 views

result of php input is 1 instead of XML data

I'm reading an XML data from a PHP input and i'm receving the number 1 instead of the XML data. the PHP code for reading the XML Data from PHP input: $xmlStr=""; ...
0
votes
1answer
123 views

How can i get the response of a server using cURL with php?

I have a sender script and a receiver script. The sender sends an xml file , while the receiver gets it and stores it in the database. The sender looks like this : $xml = ...
0
votes
1answer
76 views

Not able to add a contact into google in PHP curl

I want to add a contact with data to google contacts.i am getting error as "There was an error in your request. That's all we know." The code is as follows <?php $contact_detail='<?xml ...
-1
votes
1answer
66 views

Invalid API Key when trying to PUT xml file to url [closed]

Okay, first of all I know for a fact that the API key is correct, I'm trying to use a PUT request to upload a XML file to an API but when I do it gives me the following message: {"message":"Invalid ...
0
votes
1answer
149 views

PHP Post - Request Entity Too Large [duplicate]

Possible Duplicate: I am trying to make a POST request to a URL using Curl but getting this error? I'm trying to make a POST request to a server using curl with some XML included, but I'm ...
1
vote
1answer
710 views

How to POST an XML file using cURL on php?

I am using a local server on my computer and i am trying to make 2 php scripts to send an xml file and receive it. To send the xml file i use this code : <?php /* * XML Sender/Client. */ ...
1
vote
1answer
216 views

PHP cURL XML example sometimes returns blank, most of the time

Here are my code samples: function xmlPostStore($post_xml, $url, $port) { $ch = curl_init(); // initialize curl handle curl_setopt($ch, CURLOPT_URL, $url); // set url to post to ...
0
votes
0answers
68 views

How to get google calendar recurring event through xml in PHP using CURL

I am getting something like, Recurring Event First start: 2012-04-18 09:00:00 Duration: 5400 Who: Public,Where: Warren, Michigan Event Status: CONFIRMED When I try to import google calendar events in ...
0
votes
4answers
120 views

Empty date and time in mysql table

I am inserting date and time in date-time column where I am getting a value only for date and time I am assigning it manually, to make the date-time to match MySQL date-time syntax I did something ...
1
vote
0answers
193 views

PHP CURL POST - xml response error

I am trying to get a XML response from an external service as shown below. Using php Curl to post info and receiving the response and trying to display in the browser. However I get the following ...
1
vote
1answer
85 views

XML error when posting with cURL

I'm posting some XML from one page to another on the same site, using cURL: I generate the XML from an array (this bit works fine): $xml = new SimpleXMLElement('<test/>'); ...

1 2 3 4 5 6