Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Write to a url

Status
Not open for further replies.

killahara

Programmer
Jun 24, 2003
9
DE
Have a txt file set up as url e.g. and it contains a number e.g. 00012 : need to retrive this number (which i can do) and modify the value in an applet and then send it back to that url : is it possible ?
 
i think http only lets you mod things if you're operating from the host server.
 
>> and then send it back to that url : is it possible ?

send it back No, HTTP clients make requests for resources only. So in that sense the HTTP protocol from a client perspective is read only.

To make changes to resources on the server the client makes requests to applications running on the server that change the data on the server at the request of the client.

-pete
 
In fact you can write things via HTTP, but the server process you're calling has to support it.
In other words, you'll need to have something running on the server that will accept the data and actually do the writing for you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top