[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Possible to have Hobbit retain and use cookies?
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Possible to have Hobbit retain and use cookies?
- From: "Ralph Mitchell" <ralphmitchell (at) gmail.com>
- Date: Wed, 12 Mar 2008 09:13:18 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=lCs//QKQK90GJmG7FYgJkgI4INAYqfirtLadEzi7PQ8=; b=M0ELM7GXephmpS8MZjLyiGbMHZDEK7xVhPljWvUWMXU+k+YQ9+DEMt7UXrDEBOhxNaFgyIXoRJy8k/xNKBpK229Nzb8Q2t1tkH8C3RlmFDxv9yLzncrhdnDh3shCozYXtwBIlHz0gtrL13i25f4jKVqi3Y0K5CiuuyJ5ud2MNTc=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=o0U8umuhsozVU+88x6Kj99y3DGn0ZFIwX62EDxEtPcTWzvlJfHi1+3VCFyvMotW4Q/DWgxTKnRjYxFuLhZB8bnfYy0qmo8GnnJ+hVdxoNENn/hz5iNqgIME6N+7N2p2pfEgjo2pO2KQ851pGcBWXl/zSrSdM/EvHCbm/8oxr44U=
- References: <952f1c2b0803120322v7f71929bq53f13557fee81ad3 (at) mail.gmail.com> <20080312103355.GA3208 (at) cgoyard1.exp75.cvf> <952f1c2b0803120348n33332ac8p3afc8b5aaed97f52 (at) mail.gmail.com> <200803121514.54540.bgmilne (at) staff.telkomsa.net>
On Wed, Mar 12, 2008 at 8:14 AM, Buchan Milne <bgmilne (at) staff.telkomsa.net>
wrote:
> On Wednesday 12 March 2008 12:48:20 Martin Rogers wrote:
>
> > Is it possible to do that without a code change? (our last resort!)
>
> It is not possible with Hobbit only at present, but it is quite trivial to
> write a script that uses curl, that would work.
>
> We test our webmail systems, which require a login (returning a cookie),
> and
> an inbox view (which requires the cookie) this way.
I'd second that - I'm doing about 1500 tests spread over about 600 hosts,
all using curl with cookies, though I generally delete the cookie file at
the top of the script to avoid "open session" confusion. There's no reason
not to keep on using the same cookie file, though. Something like:
curl -s -S -L -b cookiejar -c cookiejar -o file.html
http://server.domain.com
may be all you need.
Ralph Mitchell