Webrequest and Querystring in VB.net
-
I am very new to web development and i am finding difficulty with webrequest and querystring in vb.net. I am working on an application which will pull data from a URL. The data will come with 2 variables. "from" and "text" that is the sender of the data and the text of the data. I have a desktop apllication which is supposed to read this data from the url and i am pretty lost here. how do i use webrequest and/or querystring to read the data from the url and pick the two variables. for instance i want to read them like this Dim message_originator As String = context.request.querystring("from") Dim message As String = context.request.querystring("text") I don really know what to do to read them as above into the variables. Any help please guys? :confused:
It is not who i am underneath but what i do that defines me!
modified on Friday, June 26, 2009 12:22 AM
-
I am very new to web development and i am finding difficulty with webrequest and querystring in vb.net. I am working on an application which will pull data from a URL. The data will come with 2 variables. "from" and "text" that is the sender of the data and the text of the data. I have a desktop apllication which is supposed to read this data from the url and i am pretty lost here. how do i use webrequest and/or querystring to read the data from the url and pick the two variables. for instance i want to read them like this Dim message_originator As String = context.request.querystring("from") Dim message As String = context.request.querystring("text") I don really know what to do to read them as above into the variables. Any help please guys? :confused:
It is not who i am underneath but what i do that defines me!
modified on Friday, June 26, 2009 12:22 AM
How is the web request getting into a winforms app ?
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
How is the web request getting into a winforms app ?
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
i use the following to get it but i don think its right. < Public Sub GetNewMsg() Dim sOutput As String Dim sURL As String = "http://www.something.com/noticeboard" Try Dim objNewRequest As WebRequest = HttpWebRequest.Create(sURL) Dim objResponse As WebResponse = objNewRequest.GetResponse Dim objStream As New StreamReader(objResponse.GetResponseStream()) sOutput = objStream.ReadToEnd() Dim message_originator As String = context.request.querystring("from") Dim message As String = context.request.querystring("text") 'place code to read specific string token you need here 'for example code to insert into database etc. just see what you have in the 'string if fetch was successful and then you'll know how to readi specific string Catch eUFE As UriFormatException sOutput = "Error in URL Format: [" & sURL & "]" & NewLine() & eUFE.Message Catch eWEB As WebException sOutput = "Error With Web Request: " & NewLine() & eWEB.Message Catch e As Exception sOutput = e.ToString Finally MessageBox.Show(sOutput) End Try End Sub > Is it possible for you to write a small function that accepts data from a url into a winforms app the right way cos mine is just not working!
It is not who i am underneath but what i do that defines me!
modified on Friday, June 26, 2009 1:09 AM
-
i use the following to get it but i don think its right. < Public Sub GetNewMsg() Dim sOutput As String Dim sURL As String = "http://www.something.com/noticeboard" Try Dim objNewRequest As WebRequest = HttpWebRequest.Create(sURL) Dim objResponse As WebResponse = objNewRequest.GetResponse Dim objStream As New StreamReader(objResponse.GetResponseStream()) sOutput = objStream.ReadToEnd() Dim message_originator As String = context.request.querystring("from") Dim message As String = context.request.querystring("text") 'place code to read specific string token you need here 'for example code to insert into database etc. just see what you have in the 'string if fetch was successful and then you'll know how to readi specific string Catch eUFE As UriFormatException sOutput = "Error in URL Format: [" & sURL & "]" & NewLine() & eUFE.Message Catch eWEB As WebException sOutput = "Error With Web Request: " & NewLine() & eWEB.Message Catch e As Exception sOutput = e.ToString Finally MessageBox.Show(sOutput) End Try End Sub > Is it possible for you to write a small function that accepts data from a url into a winforms app the right way cos mine is just not working!
It is not who i am underneath but what i do that defines me!
modified on Friday, June 26, 2009 1:09 AM
You're doing a post to a URL and looking for the query string on the response ? That sounds weird to me. Any change of URL is a new request/response, I'd have thought.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
You're doing a post to a URL and looking for the query string on the response ? That sounds weird to me. Any change of URL is a new request/response, I'd have thought.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
Christian, I am really lost in what i am doing. Please if u can help me out with retrieving from the url where i can access the query string, i will be able to continue from there. thanks
It is not who i am underneath but what i do that defines me!
I honestly don't think this is possible. There's nothing on the query string when you send it, so I don't expect there will ever be a querystring on the response. I think you're barking up the wrong tree.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
I honestly don't think this is possible. There's nothing on the query string when you send it, so I don't expect there will ever be a querystring on the response. I think you're barking up the wrong tree.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
Christian, I am really lost in what i am doing. Please if u can help me out with retrieving from the url where i can access the query string, i will be able to continue from there. thanks
It is not who i am underneath but what i do that defines me!
Sounds like you are confused about request and response. You get query string only when you are getting a request. Assume you are writing a HTTP server and someone requesting to your program with query string, you will get it. In your case, you are the one who is requesting and you only get a response which won't have query strings. You will get the output of the URL you requested. Or did I got your question wrong? :)
Navaneeth How to use google | Ask smart questions
-
Sounds like you are confused about request and response. You get query string only when you are getting a request. Assume you are writing a HTTP server and someone requesting to your program with query string, you will get it. In your case, you are the one who is requesting and you only get a response which won't have query strings. You will get the output of the URL you requested. Or did I got your question wrong? :)
Navaneeth How to use google | Ask smart questions
-
You got my question right. Now my problem is how do i get the data from the url? the winforms app has to read from the url whenever data is pushed there by a sender.
It is not who i am underneath but what i do that defines me!
We're both saying the same thing. The URL will not change, so there will be no query string data. Have you run this through the debugger ? The URL does not change, between a request and a response, which is what your code does.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
please so how do i go about retrieving the data from the url then from my winforms app?
It is not who i am underneath but what i do that defines me!
The only data on the URL, is the data you put there. This is the core issue here, which is why I said you're totally lost. What makes you think the URL will change when the data is posted back to you ?
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
You got my question right. Now my problem is how do i get the data from the url? the winforms app has to read from the url whenever data is pushed there by a sender.
It is not who i am underneath but what i do that defines me!
A remote user will request a URL with some query strings. Then the page will generate some data. Now you want to get this data in your windows application. You don't know what query string he used. You don't know when user is requesting that page. Is that what you are trying to do? If yes, it is impossible. All you can do is to persist the query strings used in a database or somewhere else. Your windows application can look this DB frequently to see any new data available. If new data is there, take the query strings and send a request to the URL for getting response. :)
Navaneeth How to use google | Ask smart questions
-
We're both saying the same thing. The URL will not change, so there will be no query string data. Have you run this through the debugger ? The URL does not change, between a request and a response, which is what your code does.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
Thanks guys i get u but is there a different way i can use to achieve what i want to do please. Ok a remote server will be posting data to the url for me to read. I have setup the url like http://www.myownserver.com/noticeboard They will be pushing the data here for me to use. I dont know when the data will be available but i know the variables. 2 variables will be available for me, one for the sender and the other the text named "from","text". Is there a way out. If its impossible then i think i have to go crazy now cos i really need to do this. Is there any other way in vb that i can use or it is not possible in vb.net?
It is not who i am underneath but what i do that defines me!
-
Thanks guys i get u but is there a different way i can use to achieve what i want to do please. Ok a remote server will be posting data to the url for me to read. I have setup the url like http://www.myownserver.com/noticeboard They will be pushing the data here for me to use. I dont know when the data will be available but i know the variables. 2 variables will be available for me, one for the sender and the other the text named "from","text". Is there a way out. If its impossible then i think i have to go crazy now cos i really need to do this. Is there any other way in vb that i can use or it is not possible in vb.net?
It is not who i am underneath but what i do that defines me!
king gamo wrote:
Is there any other way in vb that i can use or it is not possible in vb.net?
VB.NET has nothing to do with it. If you wrote the site, then push the data you want back, inside the page. Or better yet, ditch this rubbish and write a web service.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp