[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

How to post form data to a servlet using ruby

Pradeepta Swain

12/26/2007 8:39:00 AM

HI ,

How can i post form data to a servlet program using ruby .I am
using the code

req.set_form_data({ 't1' => 'David', 't2' => 'hello' })
where t1 and t2 are names of text field in html page

where url = URI.parse('http://localhost:8080/Dev/CookieExample')

and CookieExample is the servlet
--
Posted via http://www.ruby-....

1 Answer

Matt Todd

12/27/2007 5:39:00 AM

0

> How can i post form data to a servlet program using ruby .

There should be some useful documentation on ruby-doc.org/core for the
Net::HTTP library for performing a POST request.