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
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]