Xymon Mailing List Archive search

http authentication

3 messages in this thread

list Sladewig · Fri, 14 Apr 2006 10:18:38 -0500 ·
Greetings,

I have a question. In bb-hosts to setup Basic Authentication you use:

http://USERNAME:user-9c6e10e27f21@xymon.invalid/

I have a login to use that requires the username to be an email address.
So I have:

http://user-38d97f4a0e0b@xymon.invalid:user-42bdefefecbd@xymon.invalid/

How can I escape this?

thanks,
steve
list Henrik Størner · Fri, 14 Apr 2006 18:23:49 +0200 ·
quoted from Sladewig
On Fri, Apr 14, 2006 at 10:18:38AM -0500, sladewig wrote:
Greetings,

I have a question. In bb-hosts to setup Basic Authentication you use:

http://USERNAME:user-9c6e10e27f21@xymon.invalid/

I have a login to use that requires the username to be an email address.
So I have:

http://user-38d97f4a0e0b@xymon.invalid:user-42bdefefecbd@xymon.invalid/

How can I escape this?
"@" is ASCII 64=0x40 (hex). So:

http://user-38d97f4a0e0b@xymon.invalid:user-42bdefefecbd@xymon.invalid/


Regards,
Henrik
list Sladewig · Fri, 14 Apr 2006 12:45:12 -0500 ·
quoted from Henrik Størner
Henrik Stoerner wrote:
On Fri, Apr 14, 2006 at 10:18:38AM -0500, sladewig wrote:
Greetings,

I have a question. In bb-hosts to setup Basic Authentication you use:

http://USERNAME:user-9c6e10e27f21@xymon.invalid/

I have a login to use that requires the username to be an email address.
So I have:

http://user-38d97f4a0e0b@xymon.invalid:user-42bdefefecbd@xymon.invalid/

How can I escape this?
"@" is ASCII 64=0x40 (hex). So:

http://user-38d97f4a0e0b@xymon.invalid:user-42bdefefecbd@xymon.invalid/
Thank you very much!