Re: No case on push_header

2003-09-20 Thread Rob Dixon
Gisle Aas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Rob Dixon [EMAIL PROTECTED] writes: Perhaps a little better than hacking the module is to mess with the package hash %standard_case in the calling code? $HTTP::Headers::standard_case{xxx-xxx-xxx} = xxx-xxx-xxx;

No case on push_header

2003-09-19 Thread bob tod
Hi, I need to be able to push a header into the request object without LWP converting the case of the key. eg. i do: $request-push_header(xxx-xxx-xxx,text); The actual headers recieved by the server are: Xxx-Xxx-Xxx-text Can this be over-ruled? Cheers Bob

Re: No case on push_header

2003-09-19 Thread Gisle Aas
bob tod [EMAIL PROTECTED] writes: I need to be able to push a header into the request object without LWP converting the case of the key. eg. i do: $request-push_header(xxx-xxx-xxx,text); The actual headers recieved by the server are: Xxx-Xxx-Xxx-text Can this be over-ruled?

Re: No case on push_header

2003-09-19 Thread Rob Dixon
Gisle Aas wrote: bob tod [EMAIL PROTECTED] writes: I need to be able to push a header into the request object without LWP converting the case of the key. eg. i do: $request-push_header(xxx-xxx-xxx,text); The actual headers recieved by the server are: Xxx-Xxx-Xxx-text Can