Uploaded image for project: 'CXF'
  1. CXF
  2. CXF-2122

NPE in AbstractJAXWSMethodInvoker

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.1.4, 2.2
    • 2.1.5, 2.2.1
    • JAX-WS Runtime
    • None

    Description

      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());

      Attachments

        Issue Links

          Activity

            People

              dkulp Daniel Kulp
              opalka Richard Opalka
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: