<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi all<br>
<br>
I am wanting to send an XML file I have to a PHP script for
processing.&nbsp; I am wanting to use TidHttp and have the following code
snippet...<br>
<br>
var<br>
&nbsp; sResponse: String;<br>
&nbsp; fsParams: TFileStream;<br>
begin<br>
&nbsp;&nbsp;
fsParams := TFileStream.Create('.\test.xml', fmOpenRead or
fmShareDenyWrite);<br>
try<br>
&nbsp; IdHTTP.Request.ContentType := 'text/xml';<br>
&nbsp;&nbsp;
sResponse :=
IdHTTP.Post('<a class="moz-txt-link-freetext" href="https://secure.dev.gateway.gov.uk/submission">https://secure.dev.gateway.gov.uk/submission</a>', fsParams);<br>
&nbsp; ShowMessage(sResponse);<br>
except<br>
&nbsp; on E: Exception do<br>
&nbsp;&nbsp;
ShowMessage('Error encountered during POST: ' + E.Message);<br>
end;<br>
<br>
<br>
This was from a web site.&nbsp; Not mine !<br>
<br>
But I wonder what should happen at the PHP end.&nbsp; When my scripts
processes usually things usually I go 'vardata = $_REQUEST[FieldName]
to get the value.&nbsp; Than my XML I should do something like<br>
<br>
<br>
<code><span style="color: rgb(0, 0, 0);"><span
 style="color: rgb(0, 119, 0);"><br>
</span><span style="color: rgb(0, 0, 187);">$xml&nbsp;</span><span
 style="color: rgb(0, 119, 0);">=&nbsp;new&nbsp;</span><span
 style="color: rgb(0, 0, 187);">SimpleXMLElement</span><span
 style="color: rgb(0, 119, 0);">(</span><span
 style="color: rgb(0, 0, 187);">$vardata</span><span
 style="color: rgb(0, 119, 0);">);<br>
<br>
echo&nbsp;</span><span style="color: rgb(0, 0, 187);">$xml</span><span
 style="color: rgb(0, 119, 0);">-&gt;</span><span
 style="color: rgb(0, 0, 187);">movie</span><span
 style="color: rgb(0, 119, 0);">[</span><span
 style="color: rgb(0, 0, 187);">0</span><span
 style="color: rgb(0, 119, 0);">]-&gt;</span><span
 style="color: rgb(0, 0, 187);">plot</span><span
 style="color: rgb(0, 119, 0);">; </span><span
 style="color: rgb(255, 128, 0);"></span></span></code><br>
<br>
The question I have (which is Delphi related) is.&nbsp; My code doesn't pass
the XML file as a param (does it?)&nbsp; how should I do this or am I
misunderstanding.<br>
<br>
Sorry if I have not been clear enough.<br>
<br>
Thanks<br>
Rob<br>
</body>
</html>