[
Lists Home |
Date Index |
Thread Index
]
- To: xml-dev@lists.xml.org
- Subject: Re: [xml-dev] Processing an XML output
- From: Amrit Hallan <amrit@touchtelindia.net>
- Date: Wed, 14 Apr 2004 15:28:49 +0530
- In-reply-to: <1E0CC447E59C974CA5C7160D2A2854EC097DE4@SJMEMXMB04.stjude.sjcrh. local>
- References: <1E0CC447E59C974CA5C7160D2A2854EC097DE4@SJMEMXMB04.stjude.sjcrh. local>
- Reply-to: amrit@touchtelindia.net
- User-agent: Mozilla Thunderbird 0.5 (Windows/20040207)
Hi Peter,
Thank you for your reply. Upon re-reading my own post, I realized I
hadn't conveyed what I meant. It was only just now when I was posting to
another list I realized what I had wanted to write. It was this:
I have a form that has the following constitution:
<form method=post action="a_script_on_some_remote_server">
... all the input fields
<input type=hidden name=xmlquerystring value="
<data_sent>
<field1>value_of_field1</field1>
<field2>value_of_field2</field2>
<field3>value_of_field3</field3>
.................................................
<field_n>value_of_field_n</field_n>
</data_sent>"
<input type=submit name=s1 value=Submit>
</form>
The form field xmlquerystring is dynamically generated before submitting
the form. Till here it's ok. But when the form is submitted, the result
is an XML file of the form:
<?xml version="1.0" ?>
<result>
<result1>value</result1>
<result2>value</result2>
........................................
<result_n>value</result_n>
</result>
Since this response is coming from another server from a remote script,
I have no control over it. How can I extract this data and
display/process it according to the requirement? It must be possible
because this has been instructed by the parent company of my client who
is an agent of the company hosting the remote script.
Thanks again.
Amrit
http://www.bytesworth.com
|