Re: VB.net interact with web
Receive what from the web?
Re: VB.net interact with web
I want this web app to behave like a server, in wich a client will connect and send/receive simple strings of text
:)
Thanks!
Re: VB.net interact with web
When you say web, do you mean the internet? Or do you really mean web, as in webpages etc.
Well you say you've got a client/server application already, so there shouldnt be much more to it. What code have you got sofar?
Re: VB.net interact with web
I'll try to make things a little more clear :S
I want a simple application I could access with my browser, and this application should be able to send/receive a text string to the winsock component...
Hope this helps.. I rly want to move forward with this :sick:
Thanks!
Re: VB.net interact with web
Alright then.
The web uses the HTTP Protocoll, so thats what you'll have to use when communicating with your browser.
If you want to respond differently to different requests from the browser, you will have to parse the HTTP Request that the browser sends, and respond accordingly. If not, just ignore the request and send a HTTP response, statically.
Re: VB.net interact with web
I've done a little searching and still can't solve this..
How is it done? Is there any HTTP component I can use? :sick:
Thanks...
Re: VB.net interact with web
i suggest to use Remoting instead of winsock in .net. So in that way you can write an client in asp.net that will run in web browser.