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

Regression - CXF Client Spring Context Fails

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.2.7
    • 2.2.8
    • JAX-RS, JAX-WS Runtime
    • None

    Description

      In upgrading to 2.2.7, we found that our cxf client's spring configuration would fail on startup with a NAMESPACE_ERR thrown from the writer.

      To reproduce, we simply include the following snippet in our client application context:

      <bean id="client" factory-bean="clientFactory" factory-method="create" lazy-init="false"/>

      <bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsClientFactoryBean" lazy-init="false">
      <property name="address" value="http://localhost:8180"/>
      <property name="serviceClass" value="org.my.project.MyService"/>
      </bean>

      It will fail when it tries to load cxf.xml using the ControlledValidationXmlBeanDefinitionReader.

      It appears to occur because the namespace attributes are handed off by W3CDomStreamWriter.writeAttribute with a namespaceURI of null instead of their actual namespace. It seems that either that method isn't the right place to handle namespace attributes, meaning changing something upstream, or that there is a bug in it.

      Attachments

        Activity

          People

            dkulp Daniel Kulp
            josh.cummings Josh Cummings
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: