473,388 Members | 1,298 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

Post XML and Redirect

HI all,

I am looking to post XML data to a particular page and also redirect to
the same page.
I have coded a WebReqest code in page0 that posts the XML to the page1
and then the page1 in its PageLoad event reads and parses the XML it
then saves the data it recieved to cookies. But using this technique
the code returns to the page0. I have then used
response.redirect(page1) but the cookies are lost...

Is there a way of redirecting to a particular page and posting XML data
to it without going back to the original page - page0 ?

The idea is I am programming an integrated site that is a web
application where user has to fill in his personal details, but he can
only get to this page from a brokers website. And the broker sometimes
has this data already so I want to make an interface where they can
post the data and it fills in the textboxes on my site but i also need
the customer to go over them check and confirm them.

And as all this data is sensitive i cannot use QueryString to pass the
data.

THANKS for any ideas

Mar 31 '06 #1
3 2407
Brano,

Store the data in a session variables and then do the redirect. Then it
won't be lost.

Regards,

--
S. Justin Gengo
Web Developer / Programmer

Free code library:
http://www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Brano" <bp****@gmail.com> wrote in message
news:11*********************@t31g2000cwb.googlegro ups.com...
HI all,

I am looking to post XML data to a particular page and also redirect to
the same page.
I have coded a WebReqest code in page0 that posts the XML to the page1
and then the page1 in its PageLoad event reads and parses the XML it
then saves the data it recieved to cookies. But using this technique
the code returns to the page0. I have then used
response.redirect(page1) but the cookies are lost...

Is there a way of redirecting to a particular page and posting XML data
to it without going back to the original page - page0 ?

The idea is I am programming an integrated site that is a web
application where user has to fill in his personal details, but he can
only get to this page from a brokers website. And the broker sometimes
has this data already so I want to make an interface where they can
post the data and it fills in the textboxes on my site but i also need
the customer to go over them check and confirm them.

And as all this data is sensitive i cannot use QueryString to pass the
data.

THANKS for any ideas

Mar 31 '06 #2
I cant do that as the site I am programming is going to be an itegrated
site.

Other companies will have to post data to it and redirect to it then it
will take user thru some steps using the details that has been posted.

How could i implement this with the least amount of work that need to
be done on the client (the company that is going to be posting data to
it) side.

S. Justin Gengo wrote:
Brano,

Store the data in a session variables and then do the redirect. Then it
won't be lost.

Regards,

--
S. Justin Gengo
Web Developer / Programmer

Free code library:
http://www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Brano" <bp****@gmail.com> wrote in message
news:11*********************@t31g2000cwb.googlegro ups.com...
HI all,

I am looking to post XML data to a particular page and also redirect to
the same page.
I have coded a WebReqest code in page0 that posts the XML to the page1
and then the page1 in its PageLoad event reads and parses the XML it
then saves the data it recieved to cookies. But using this technique
the code returns to the page0. I have then used
response.redirect(page1) but the cookies are lost...

Is there a way of redirecting to a particular page and posting XML data
to it without going back to the original page - page0 ?

The idea is I am programming an integrated site that is a web
application where user has to fill in his personal details, but he can
only get to this page from a brokers website. And the broker sometimes
has this data already so I want to make an interface where they can
post the data and it fills in the textboxes on my site but i also need
the customer to go over them check and confirm them.

And as all this data is sensitive i cannot use QueryString to pass the
data.

THANKS for any ideas


Apr 3 '06 #3
Store the information in a database or xml file using a unique key for
retrieving the data. Send that unique key back to the originator and then
have them redirect with that key in the query string. Then the key may be
used to lookup the data.

Regards,

--
S. Justin Gengo
Web Developer / Programmer

Free code library:
http://www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Brano" <bp****@gmail.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
I cant do that as the site I am programming is going to be an itegrated
site.

Other companies will have to post data to it and redirect to it then it
will take user thru some steps using the details that has been posted.

How could i implement this with the least amount of work that need to
be done on the client (the company that is going to be posting data to
it) side.

S. Justin Gengo wrote:
Brano,

Store the data in a session variables and then do the redirect. Then it
won't be lost.

Regards,

--
S. Justin Gengo
Web Developer / Programmer

Free code library:
http://www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Brano" <bp****@gmail.com> wrote in message
news:11*********************@t31g2000cwb.googlegro ups.com...
> HI all,
>
> I am looking to post XML data to a particular page and also redirect to
> the same page.
> I have coded a WebReqest code in page0 that posts the XML to the page1
> and then the page1 in its PageLoad event reads and parses the XML it
> then saves the data it recieved to cookies. But using this technique
> the code returns to the page0. I have then used
> response.redirect(page1) but the cookies are lost...
>
> Is there a way of redirecting to a particular page and posting XML data
> to it without going back to the original page - page0 ?
>
> The idea is I am programming an integrated site that is a web
> application where user has to fill in his personal details, but he can
> only get to this page from a brokers website. And the broker sometimes
> has this data already so I want to make an interface where they can
> post the data and it fills in the textboxes on my site but i also need
> the customer to go over them check and confirm them.
>
> And as all this data is sensitive i cannot use QueryString to pass the
> data.
>
> THANKS for any ideas
>

Apr 3 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Asp Help | last post by:
I'm working on a ASP applicatition to create Windows 2000 users. Because I don't want everybody to have access to the site I've changed te security in IIS 5.0 which runs on a windows 2000 Sp4...
8
by: Victor | last post by:
I need to redirect to another web page, but that redirect will include the submission of form data. So, unlike ServerXMLHTTP which stays on the originating web page, I need the script to redirect...
2
by: Darren Oakey | last post by:
G'day - I have a problem that I just can't figure out how to solve, and would desperately love some help!!! We have an existing product (which we don't have control over) which is a web server...
2
by: ETK | last post by:
Hi, I need to POST data to some aspx page and after that redirect to this page ( page isn't on my local server where my page is). Is it possible to do this from aspx code on server side? Thanks,...
1
by: David | last post by:
I need to redirect to a page and HTTP Post data. The Response.Redirect does not work and the HTTPREQUEST option calls the page and waits for a response, but I need to transfer control to the...
10
by: Savanah | last post by:
Hello, I would like to call another page using POST method, something like this : Response.Redirect("http://www.mydomain.com/cgi-bin/log.dll?email="+tbLoginID"). I set this in my page <form...
7
by: Carl | last post by:
these are three files below : submit.html <html> <head> </head> <body> <form action="redirect.php" method="POST" > <input type="text" name="value" value="test" > <input type="submit" >...
1
by: pmasclark | last post by:
Hello, I created a web site, site A, that redirects to another web site, site B, where a simple web service is hosted. The code to call the web service is simple. oWS.AllowAutoRedirect = True...
56
by: UKuser | last post by:
Hi, I'm not sure if this can be done as I've searched the web and this forum. I am using an online merchant provider and I must post certain variables to their webforms through a form on my...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.