S
Sy Ys
I am able to login to a website at authenticate.domain.com but when I
attempt to visit panel.domain.com it appears the http session has been
lost.
Code:
Net::HTTP.start('authenticate.domain.com',80){|http|
log = http.post('script.php',params)
puts log.body
}
Net::HTTP.start('panel.domain.com',80){|http|
puts http.get('/index.cfm').body
}
attempt to visit panel.domain.com it appears the http session has been
lost.
Code:
Net::HTTP.start('authenticate.domain.com',80){|http|
log = http.post('script.php',params)
puts log.body
}
Net::HTTP.start('panel.domain.com',80){|http|
puts http.get('/index.cfm').body
}