You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Richard Opalka (JIRA)" <ji...@apache.org> on 2009/03/20 12:08:50 UTC

[jira] Created: (CXF-2122) NPE in AbstractJAXWSMethodInvoker

NPE in AbstractJAXWSMethodInvoker
---------------------------------

                 Key: CXF-2122
                 URL: https://issues.apache.org/jira/browse/CXF-2122
             Project: CXF
          Issue Type: Bug
          Components: JAX-WS Runtime
    Affects Versions: 2.1.4, 2.2
            Reporter: Richard Opalka
             Fix For: 2.1.5, 2.2.1


This issue was reported by our JBossWS-CXF integation user, see
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4219792#4219792
To fix the issue, apply the same proposed fix from that user, i.e.:

<             if (sm != null) {
<                 Iterator<?> iter = list.iterator();
<                 while (iter.hasNext())
<                 {
<                    sm.getHeaders().add((Header) iter.next());
<                 }
---
>             Iterator<?> iter = list.iterator();
>             while (iter.hasNext())
>             {
>                sm.getHeaders().add((Header) iter.next());

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


[jira] Resolved: (CXF-2122) NPE in AbstractJAXWSMethodInvoker

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2122?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-2122.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2.1
                   2.1.5
         Assignee: Daniel Kulp

Fix applied.

> NPE in AbstractJAXWSMethodInvoker
> ---------------------------------
>
>                 Key: CXF-2122
>                 URL: https://issues.apache.org/jira/browse/CXF-2122
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-WS Runtime
>    Affects Versions: 2.1.4, 2.2
>            Reporter: Richard Opalka
>            Assignee: Daniel Kulp
>             Fix For: 2.1.5, 2.2.1
>
>
> This issue was reported by our JBossWS-CXF integation user, see
> http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4219792#4219792
> To fix the issue, apply the same proposed fix from that user, i.e.:
> <             if (sm != null) {
> <                 Iterator<?> iter = list.iterator();
> <                 while (iter.hasNext())
> <                 {
> <                    sm.getHeaders().add((Header) iter.next());
> <                 }
> ---
> >             Iterator<?> iter = list.iterator();
> >             while (iter.hasNext())
> >             {
> >                sm.getHeaders().add((Header) iter.next());

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


[jira] Updated: (CXF-2122) NPE in AbstractJAXWSMethodInvoker

Posted by "Alessio Soldano (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2122?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessio Soldano updated CXF-2122:
---------------------------------

    Fix Version/s:     (was: 2.2.1)
                       (was: 2.1.5)

Leaving the fix version decision to committers

> NPE in AbstractJAXWSMethodInvoker
> ---------------------------------
>
>                 Key: CXF-2122
>                 URL: https://issues.apache.org/jira/browse/CXF-2122
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-WS Runtime
>    Affects Versions: 2.1.4, 2.2
>            Reporter: Richard Opalka
>
> This issue was reported by our JBossWS-CXF integation user, see
> http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4219792#4219792
> To fix the issue, apply the same proposed fix from that user, i.e.:
> <             if (sm != null) {
> <                 Iterator<?> iter = list.iterator();
> <                 while (iter.hasNext())
> <                 {
> <                    sm.getHeaders().add((Header) iter.next());
> <                 }
> ---
> >             Iterator<?> iter = list.iterator();
> >             while (iter.hasNext())
> >             {
> >                sm.getHeaders().add((Header) iter.next());

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