You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Keith Godwin Chapman (JIRA)" <ji...@apache.org> on 2007/10/18 16:06:50 UTC

[jira] Commented: (AXIS2-3285) NullpointerException in AbstractHTTPHeader

    [ https://issues.apache.org/jira/browse/AXIS2-3285?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535921 ] 

Keith Godwin Chapman commented on AXIS2-3285:
---------------------------------------------

Martin,

Can you attach a patch (Not the whole file) so that we can apply it to the codebase.

> NullpointerException in AbstractHTTPHeader
> ------------------------------------------
>
>                 Key: AXIS2-3285
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3285
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.3
>         Environment: Windows 32, Java 1.5_11
>            Reporter: Martin Genhart
>         Attachments: AbstractHTTPSender.java
>
>
> The nullpointer happens in the following method if a cookie does not have any parameters:
>     private String processCookieHeader(HeaderElement element) {
>         String cookie = element.getName() + "=" + element.getValue();
>         NameValuePair[] parameters =  element.getParameters();
>         for (int j = 0; j < parameters.length; j++) {
>             NameValuePair parameter = parameters[j];
>             cookie = cookie + "; " + parameter.getName() + "=" + parameter.getValue();
>         }
>         return cookie;
>     }

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


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org