You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Alexis Midon (JIRA)" <ji...@apache.org> on 2008/07/15 21:11:31 UTC

[jira] Commented: (ODE-336) Multiple line headers not supported

    [ https://issues.apache.org/jira/browse/ODE-336?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12613701#action_12613701 ] 

Alexis Midon commented on ODE-336:
----------------------------------

This seems to be a Jetty bug.
Actually Jetty seems to consider LF as the end-of-line marker for headers.
Thus if the header sent is:
<?xml version="1.0" encoding="UTF-8"?>
\n<from xmlns="http://ode/bpel/test/blog">alexis@test.com</from>

The header value actually read is:
<?xml version="1.0" encoding="UTF-8"?>

This should be fixed by replacing LF with LWS.

> Multiple line headers not supported
> -----------------------------------
>
>                 Key: ODE-336
>                 URL: https://issues.apache.org/jira/browse/ODE-336
>             Project: ODE
>          Issue Type: Bug
>    Affects Versions: 1.2
>            Reporter: Alexis Midon
>
> Multiple line headers are not properly encoded before being sent.
> Line Feed (LF) should be replaced by Linear White Space (LWS).
> LWS            = [CRLF] 1*( SP | HT )
> See http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.