<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>issues@cxf.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/cxf-issues/"/>
<id>http://mail-archives.apache.org/mod_mbox/cxf-issues/</id>
<updated>2009-12-07T23:26:20Z</updated>
<entry>
<title>[jira] Commented: (CXF-2569) Consuming a wsdl file which is having a nested complex types in xsd</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c468144663.1260225138527.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c468144663-1260225138527-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T22:32:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787179#action_12787179
] 

Daniel Kulp commented on CXF-2569:
----------------------------------


Can you create a testcase for this?    CXF never uses the ObjectFactory things.    All of
that stuff is delegated down to JAXB.   Thus, I'd like to see a testcase to see what is happening.

&gt; Consuming a wsdl file which is having a nested complex types in xsd
&gt; -------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2569
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2569
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: JAX-WS Runtime
&gt;         Environment: jdk 1.5 ,windows xp,IBM websphere server
&gt;            Reporter: vijay valeti
&gt;            Priority: Blocker
&gt;   Original Estimate: 0.03h
&gt;  Remaining Estimate: 0.03h
&gt;
&gt; When we are trying to consume a wsdl file which is having a nested complex type xsd element
we are getting an exception
&gt; IllegalArgumentException:Wrong Number of Arguments provided
&gt; when ever you have a nested complex type in xsd,in the ObjectFactory.java class will
be having two create methods for the nested element.i feel cxf is not implemented properly
to handle this kind of situation . i believe that cxf developers/community assuemd that there
wont be any overloaded create methods in the OBjectFactory.java class
&gt; sample XSD
&gt; &lt;xsd:complexType&gt;
&gt; &lt;xsd:sequence&gt;
&gt; &lt;xsd:element&gt;
&gt; &lt;xsd:complexType name="testList"&gt;
&gt; &lt;xsd:sequence&gt;
&gt; &lt;xsd:element name="test" type="xsd:string" maxOccurs="unbounded"/&gt;
&gt; &lt;/xsd:sequence&gt;
&gt; &lt;/xsd:element&gt;
&gt; &lt;xsd:element  name="name"  type="xsd:string"/&gt;
&gt; &lt;/xsd:sequence&gt;
&gt; &lt;/xsd:complexType&gt;

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2570) ServletDestinationFacotry and Tomcat can't locate services</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c2076231279.1260225018335.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c2076231279-1260225018335-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T22:30:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2570?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787172#action_12787172
] 

Daniel Kulp commented on CXF-2570:
----------------------------------


I'm pretty sure this is "working as designed" more or less.   In your cxf-servlet.xml or beans
or whatever where you define your jaxws:endpoint things, are you putting address attributes
on them to define the address (should be just "/OrderService" in your case)?     If not, you
need to when using a Servlet.    





&gt; ServletDestinationFacotry and Tomcat can't locate services
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: CXF-2570
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2570
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;         Environment:   	
&gt; Â« Hide
&gt; System:
&gt; 2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:48:52 UTC 2009 x86_64 GNU/Linux
&gt; Java:
&gt; java version "1.6.0_16"
&gt; Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
&gt; Java HotSpot(TM) 64-Bit Server VM (build 14.2-b01, mixed mode)
&gt; Apache CXF 2.2.3 (not in version list)
&gt;            Reporter: Christian Connert
&gt;         Attachments: cxf.xml, TomcatDestinationFactory.java
&gt;
&gt;
&gt; The problem is that the service destinations aren't found by the destination factory.
&gt; I think this problem isn't Tomcat specific. It should occur if cxf is deployed as a war
inside some application server.
&gt; I would suggest the following workaround:
&gt; 1.) Implement a ServletTransportFactory (see attachment 1)
&gt; 2.) Register this ServletTransportFactory in the default cxf.xml (classpath root, see
attachment 2)
&gt; As a clean fix the ServletTransportFactory should make the static String getTrimmedPath(String
path) method to a protected non static method. Than it can be easily overriden by custom subclasses.
&gt; Greetings

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2571) wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in jar-file</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1152872879.1260224778646.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1152872879-1260224778646-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T22:26:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2571.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2.6
         Assignee: Daniel Kulp


Workaround/hack committed to 2.2 branch.   Tomorrows snapshots should have the fix.   It would
be great if you could rerun your tests and such with the snapshot.


&gt; wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in
jar-file
&gt; ----------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2571
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2571
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;    Affects Versions: 2.1.8, 2.2.5
&gt;         Environment: Apache Maven 2.2.1
&gt; Java version: 1.5.0_21
&gt; OS name: "windows xp"
&gt;            Reporter: HÃ¥kan Dahl
&gt;            Assignee: Daniel Kulp
&gt;             Fix For: 2.2.6
&gt;
&gt;         Attachments: jax-ws-catalog-test-20091203.zip
&gt;
&gt;
&gt; cxf-codegen-plugin/wsdl2java (2.1.8, 2.2.5)
&gt; Refer user-list thread:
&gt; http://old.nabble.com/jax-ws-catalog-and-resolving-schemas-in-jars-that-do-xsd%3Ainclude-td26590812.html
&gt; Schema resolution from a jar-file (using jax-ws-catalog as per 4.4 Catalog Facility in
the JAX-WS 2.1 spec) fails when:
&gt; * The referenced schema in a jar makes xsd:include on another schema in the
&gt; jar (all schemas in a jar share the same namespace).
&gt; Stacktrace below for CXF 2.1.8 below. CXF 2.2.5 also fails but with a NullPointerException.
&gt; Note: xsd:import works but requires imported schema to be in another
&gt; namespace.
&gt; Projects look like:
&gt; common-types-domain1
&gt;    META-INF/jax-ws-catalog.xml
&gt;    schemas/domain1/domain1-schema1.xsd
&gt;    schemas/domain1/domain1-schema2.xsd
&gt; wsdl-project-1
&gt;    src\main\resources\schemas\GetX.xsd
&gt;    src\main\resources\schemas\GetXService.wsdl
&gt; where the GetXService.wsdl imports GetX.xsd which imports
&gt; domain1-schema2.xsd like this:
&gt; GetX.xsd:
&gt;    &lt;xsd:import namespace="http://www.example.org/schemas/domain1"
&gt;        schemaLocation="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"/&gt;
&gt; domain1-schema2.xsd:
&gt;    &lt;xsd:include schemaLocation="domain1-schema1.xsd"/&gt;
&gt; common-types-domain1/META-INF/jax-ws-catalog.xml:
&gt;    &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
&gt; prefer="system"&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema1.xsd"/&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema2.xsd"/&gt;
&gt;    &lt;/catalog&gt;
&gt; results in:
&gt; Caused by: org.apache.cxf.tools.common.ToolException: Thrown by JAXB :
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBBindErrorListener.error(JAXBBindErrorListener.java:34)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.error(SchemaCompilerImpl.java:285)
&gt;    at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:90)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:402)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:301)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.AbstractReferenceFinderImpl.startElement(AbstractReferenceFinderImpl.java:95)
&gt;    at
&gt; org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:527)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:240)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:277)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:246)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.scan(DOMScanner.java:123)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.parseSchema(SchemaCompilerImpl.java:135)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.addSchemas(JAXBDataBinding.java:253)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:196)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.generateTypes(WSDLToJavaContainer.java:588)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaContainer.java:239)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:130)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:283)
&gt;    at
&gt; org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:83)
&gt;    at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:103)
&gt;    at
&gt; org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:337)
&gt;    ... 20 more
&gt; Caused by: java.io.FileNotFoundException:
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    ... 39 more

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2574) WSDL file not getting generated in WebSphere 6.1</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1855819319.1260224298237.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1855819319-1260224298237-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T22:18:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2574?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787158#action_12787158
] 

Daniel Kulp commented on CXF-2574:
----------------------------------



This is normally caused due to a version conflict with a jar CXF ships and the one websphere
provides.   In this case, it's LIKELY to be the wsdl4j jar.     See the Websphere section
of:
http://cxf.apache.org/docs/application-server-specific-configuration-guide.html




&gt; WSDL file not getting generated in WebSphere 6.1
&gt; ------------------------------------------------
&gt;
&gt;                 Key: CXF-2574
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2574
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Core
&gt;    Affects Versions: 2.2.5
&gt;         Environment: Windows XP, Websphere 6.1, CXF 2.2.5, spring 2.5
&gt;            Reporter: Vivek Pandian S
&gt;            Priority: Critical
&gt;
&gt; I could access the CXF WebService thro url from the browser. But if try to access the
wsdl file for the same, i get page not found error. In the server console , i get the following
exception
&gt; [12/5/09 16:08:35:468 IST] 00000022 ServletContro W   Can't find the request for http://localhost:9083/CXF//'s
Observer 
&gt; [12/5/09 16:08:36:655 IST] 00000022 ServletWrappe E   SRVE0068E: Uncaught exception thrown
in one of the service methods of the servlet: CXFServlet. Exception thrown : java.lang.IncompatibleClassChangeError
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.addExtensibilityElements(ServiceWSDLBuilder.java:229)
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBindingInput(ServiceWSDLBuilder.java:355)
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBindingOperation(ServiceWSDLBuilder.java:324)
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBinding(ServiceWSDLBuilder.java:305)
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.build(ServiceWSDLBuilder.java:193)
&gt; 	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.build(ServiceWSDLBuilder.java:148)
&gt; 	at org.apache.cxf.transport.http.WSDLQueryHandler.writeResponse(WSDLQueryHandler.java:146)
&gt; 	at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:156)
&gt; 	at org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:142)
&gt; 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:179)
&gt; 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doGet(AbstractHTTPServlet.java:108)
&gt; 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
&gt; 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:159)
&gt; 	at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
&gt; 	at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
&gt; 	at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
&gt; 	at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)
&gt; 	at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:238)
&gt; 	at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)
&gt; 	at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)
&gt; 	at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:93)
&gt; 	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
&gt; 	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
&gt; 	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
&gt; 	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
&gt; 	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
&gt; 	at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
&gt; 	at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
&gt; 	at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
&gt; 	at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
&gt; 	at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:194)
&gt; 	at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:741)
&gt; 	at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:863)
&gt; 	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1510)
&gt; Please help me in this regard

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2293) cxf-codegen-plugin fails with 'Mojo Execution Failed'</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1042465477.1260224298358.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1042465477-1260224298358-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T22:18:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2293.
------------------------------

       Resolution: Cannot Reproduce
    Fix Version/s: Invalid


No response for a month and unable to reproduce.

&gt; cxf-codegen-plugin fails with 'Mojo Execution Failed'
&gt; -----------------------------------------------------
&gt;
&gt;                 Key: CXF-2293
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2293
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Tooling
&gt;         Environment: Windows XP / Eclipse 3.4.2 / m2eclipse 0.9.9
&gt;            Reporter: Roger Cracel
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; I can't seem to create a new project using maven for the wsdl first osgi archetype.
&gt; Steps to reproduce the problem:
&gt; in Eclipse, use m2eclipse pluging to create a new project using the servicemix-osgi-cxf-wsdl-first-archetype.
&gt; Watch the console for the error message :
&gt; org.apache.maven.lifecycle.LifecycleExecutionException: Internal error in the plugin
manager executing goal 'org.apache.cxf:cxf-codegen-plugin:2.2.0.0-fuse:wsdl2java': Mojo execution
failed.
&gt; This appears to be a classpath resolution problem, since the stack trace seems to indicate
org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl cannot be found.
&gt; The exception stack trace:
&gt; org.apache.maven.lifecycle.LifecycleExecutionException: Internal error in the plugin
manager executing goal 'org.apache.cxf:cxf-codegen-plugin:2.2.0.0-fuse:wsdl2java': Mojo execution
failed.
&gt; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:505)
&gt; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:265)
&gt; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:191)
&gt; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:149)
&gt; at org.apache.maven.DefaultMaven.execute_aroundBody0(DefaultMaven.java:223)
&gt; at org.apache.maven.DefaultMaven.execute_aroundBody1$advice(DefaultMaven.java:304)
&gt; at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:1)
&gt; at org.apache.maven.embedder.MavenEmbedder.execute_aroundBody2(MavenEmbedder.java:904)
&gt; at org.apache.maven.embedder.MavenEmbedder.execute_aroundBody3$advice(MavenEmbedder.java:304)
&gt; at org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:1)
&gt; at org.maven.ide.eclipse.jdt.internal.JavaProjectConfigurator$1.execute(JavaProjectConfigurator.java:313)
&gt; at org.maven.ide.eclipse.internal.project.MavenProjectManagerImpl.execute(MavenProjectManagerImpl.java:986)
&gt; at org.maven.ide.eclipse.project.MavenProjectManager.execute(MavenProjectManager.java:160)
&gt; at org.maven.ide.eclipse.jdt.internal.JavaProjectConfigurator.generateSourceEntries(JavaProjectConfigurator.java:307)
&gt; at org.maven.ide.eclipse.jdt.internal.JavaProjectConfigurator.collectSourceEntries(JavaProjectConfigurator.java:366)
&gt; at org.maven.ide.eclipse.jdt.internal.JavaProjectConfigurator.updateSourceFolders(JavaProjectConfigurator.java:112)
&gt; at org.maven.ide.eclipse.jdt.internal.JavaProjectConfigurator.configure(JavaProjectConfigurator.java:99)
&gt; at org.maven.ide.eclipse.internal.project.DefaultLifecycleMapping.configure(DefaultLifecycleMapping.java:60)
&gt; at org.maven.ide.eclipse.internal.project.ProjectConfigurationManager.updateProjectConfiguration(ProjectConfigurationManager.java:347)
&gt; at org.maven.ide.eclipse.internal.project.ProjectConfigurationManager.updateProjectConfiguration(ProjectConfigurationManager.java:327)
&gt; at org.maven.ide.eclipse.actions.UpdateSourcesAction$1.runInWorkspace(UpdateSourcesAction.java:82)
&gt; at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38)
&gt; at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
&gt; Caused by: org.apache.maven.plugin.PluginExecutionException: Mojo execution failed.
&gt; at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:601)
&gt; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:498)
&gt; ... 22 more
&gt; Caused by: org.apache.maven.plugin.MojoExecutionException: javax.xml.datatype.DatatypeConfigurationException:
Provider org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl not found
&gt; at org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:363)
&gt; at org.apache.cxf.maven_plugin.WSDL2JavaMojo.execute(WSDL2JavaMojo.java:257)
&gt; at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:579)
&gt; ... 23 more
&gt; Caused by: java.lang.Error: javax.xml.datatype.DatatypeConfigurationException: Provider
org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl not found
&gt; at com.sun.xml.bind.DatatypeConverterImpl.&lt;clinit&gt;(DatatypeConverterImpl.java:785)
&gt; at com.sun.xml.bind.v2.runtime.JAXBContextImpl$3.run(JAXBContextImpl.java:266)
&gt; at com.sun.xml.bind.v2.runtime.JAXBContextImpl$3.run(JAXBContextImpl.java:265)
&gt; at java.security.AccessController.doPrivileged(Native Method)
&gt; at com.sun.xml.bind.v2.runtime.JAXBContextImpl.&lt;init&gt;(JAXBContextImpl.java:264)
&gt; at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
&gt; at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:117)
&gt; at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:188)
&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&gt; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&gt; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&gt; at java.lang.reflect.Method.invoke(Method.java:597)
&gt; at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:128)
&gt; at javax.xml.bind.ContextFinder.find(ContextFinder.java:277)
&gt; at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:372)
&gt; at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:337)
&gt; at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:244)
&gt; at org.apache.cxf.tools.wsdlto.core.PluginLoader.init(PluginLoader.java:82)
&gt; at org.apache.cxf.tools.wsdlto.core.PluginLoader.&lt;init&gt;(PluginLoader.java:72)
&gt; at org.apache.cxf.tools.wsdlto.core.PluginLoader.getInstance(PluginLoader.java:121)
&gt; at org.apache.cxf.tools.wsdlto.WSDLToJava.&lt;init&gt;(WSDLToJava.java:45)
&gt; at org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:360)
&gt; ... 25 more
&gt; Caused by: javax.xml.datatype.DatatypeConfigurationException: Provider org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl
not found
&gt; at javax.xml.datatype.DatatypeFactory.newInstance(DatatypeFactory.java:137)
&gt; at com.sun.xml.bind.DatatypeConverterImpl.&lt;clinit&gt;(DatatypeConverterImpl.java:783)
&gt; ... 46 more
&gt; Caused by: java.lang.ClassNotFoundException: org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl
&gt; at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
&gt; at java.security.AccessController.doPrivileged(Native Method)
&gt; at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
&gt; at javax.xml.datatype.FactoryFinder.getProviderClass(FactoryFinder.java:115)
&gt; at javax.xml.datatype.FactoryFinder.newInstance(FactoryFinder.java:146)
&gt; at javax.xml.datatype.FactoryFinder.findJarServiceProvider(FactoryFinder.java:298)
&gt; at javax.xml.datatype.FactoryFinder.find(FactoryFinder.java:223)
&gt; at javax.xml.datatype.DatatypeFactory.newInstance(DatatypeFactory.java:131)
&gt; ... 47 more
&gt; Environment:
&gt; Eclipse Platform Version: 3.4.2
&gt; Build id: M20090211-1700

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2571) wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in jar-file</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c566958377.1260222138460.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c566958377-1260222138460-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T21:42:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787133#action_12787133
] 

Daniel Kulp commented on CXF-2571:
----------------------------------


I got past the NPE in 2.2.5 (we were not setting the systemId), but ran into a bug in XJC.
  They are doing:

new URI(locator.getSystemId()).resolve(new URI(schemaLocation))

to resolve the include.   However, that doesn't work with a "jar" url as the systemId of the
original schema.   The URI in that case is considered opaque and thus resolve just returns
the child value as is.       I THINK I can work around this by kind of DOM loading the schemas
and preprocessing the includes and such, but yuck.   

I'm going to doubt I'll be able to fix this on 2.1.x as the databinding/schema code there
is very  different.


&gt; wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in
jar-file
&gt; ----------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2571
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2571
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;    Affects Versions: 2.1.8, 2.2.5
&gt;         Environment: Apache Maven 2.2.1
&gt; Java version: 1.5.0_21
&gt; OS name: "windows xp"
&gt;            Reporter: HÃ¥kan Dahl
&gt;         Attachments: jax-ws-catalog-test-20091203.zip
&gt;
&gt;
&gt; cxf-codegen-plugin/wsdl2java (2.1.8, 2.2.5)
&gt; Refer user-list thread:
&gt; http://old.nabble.com/jax-ws-catalog-and-resolving-schemas-in-jars-that-do-xsd%3Ainclude-td26590812.html
&gt; Schema resolution from a jar-file (using jax-ws-catalog as per 4.4 Catalog Facility in
the JAX-WS 2.1 spec) fails when:
&gt; * The referenced schema in a jar makes xsd:include on another schema in the
&gt; jar (all schemas in a jar share the same namespace).
&gt; Stacktrace below for CXF 2.1.8 below. CXF 2.2.5 also fails but with a NullPointerException.
&gt; Note: xsd:import works but requires imported schema to be in another
&gt; namespace.
&gt; Projects look like:
&gt; common-types-domain1
&gt;    META-INF/jax-ws-catalog.xml
&gt;    schemas/domain1/domain1-schema1.xsd
&gt;    schemas/domain1/domain1-schema2.xsd
&gt; wsdl-project-1
&gt;    src\main\resources\schemas\GetX.xsd
&gt;    src\main\resources\schemas\GetXService.wsdl
&gt; where the GetXService.wsdl imports GetX.xsd which imports
&gt; domain1-schema2.xsd like this:
&gt; GetX.xsd:
&gt;    &lt;xsd:import namespace="http://www.example.org/schemas/domain1"
&gt;        schemaLocation="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"/&gt;
&gt; domain1-schema2.xsd:
&gt;    &lt;xsd:include schemaLocation="domain1-schema1.xsd"/&gt;
&gt; common-types-domain1/META-INF/jax-ws-catalog.xml:
&gt;    &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
&gt; prefer="system"&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema1.xsd"/&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema2.xsd"/&gt;
&gt;    &lt;/catalog&gt;
&gt; results in:
&gt; Caused by: org.apache.cxf.tools.common.ToolException: Thrown by JAXB :
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBBindErrorListener.error(JAXBBindErrorListener.java:34)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.error(SchemaCompilerImpl.java:285)
&gt;    at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:90)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:402)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:301)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.AbstractReferenceFinderImpl.startElement(AbstractReferenceFinderImpl.java:95)
&gt;    at
&gt; org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:527)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:240)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:277)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:246)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.scan(DOMScanner.java:123)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.parseSchema(SchemaCompilerImpl.java:135)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.addSchemas(JAXBDataBinding.java:253)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:196)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.generateTypes(WSDLToJavaContainer.java:588)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaContainer.java:239)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:130)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:283)
&gt;    at
&gt; org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:83)
&gt;    at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:103)
&gt;    at
&gt; org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:337)
&gt;    ... 20 more
&gt; Caused by: java.io.FileNotFoundException:
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    ... 39 more

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2575) Not able to configure connection and receive timeouts through http-conf:conduit in spring beans</title>
<author><name>&quot;ankur sarkar (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1681156993.1260180438077.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1681156993-1260180438077-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T10:07:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

ankur sarkar updated CXF-2575:
------------------------------

    Attachment: mcso-mpacopalws-spring-beans.xml
                ManageProductAvailability.wsdl
                ManageCustomer.20080728.wsdl

Files for reference for issue 2575

&gt; Not able to configure connection and receive timeouts through http-conf:conduit in spring
beans
&gt; -----------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2575
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2575
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;    Affects Versions: 2.2
&gt;            Reporter: ankur sarkar
&gt;         Attachments: ManageCustomer.20080728.wsdl, ManageProductAvailability.wsdl, mcso-mpacopalws-spring-beans.xml
&gt;
&gt;
&gt; I am using a spring based application to consume multiple services through cxf 2.2. I
have configured the connection timeout and receive timeouts in spring beans through the http-conf:conduit.
Now when I am doing this by using the wild card i.e. 
&gt; &lt;http-conf:conduit name="*.http-conduit"&gt;
&gt;       &lt;http-conf:client ConnectionTimeout="180000" ReceiveTimeout="180000"/&gt;
&gt; &lt;/http-conf:conduit&gt;
&gt; then both connection and receive timeouts are working fine but whenever we use the targetnamespace
and the portname the timeouts are not working.
&gt; &lt;http-conf:conduit name="{http://capabilities.nat.bt.com/wsdl/ManageProductAvailability/2007/04/30}ManageProductAvailabilitySyncPort.http-conduit"&gt;
&gt;        &lt;http-conf:client ConnectionTimeout="180000" ReceiveTimeout="180000"/&gt;
&gt; &lt;/http-conf:conduit&gt;
&gt; Attached herewith are the springbeans and wsdls for your reference

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2575) Not able to configure connection and receive timeouts through http-conf:conduit in spring beans</title>
<author><name>&quot;ankur sarkar (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c328078620.1260179838695.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c328078620-1260179838695-JavaMail-jira@brutus%3e</id>
<updated>2009-12-07T09:57:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Not able to configure connection and receive timeouts through http-conf:conduit in spring beans
-----------------------------------------------------------------------------------------------

                 Key: CXF-2575
                 URL: https://issues.apache.org/jira/browse/CXF-2575
             Project: CXF
          Issue Type: Bug
    Affects Versions: 2.2
            Reporter: ankur sarkar


I am using a spring based application to consume multiple services through cxf 2.2. I have
configured the connection timeout and receive timeouts in spring beans through the http-conf:conduit.
Now when I am doing this by using the wild card i.e. 

&lt;http-conf:conduit name="*.http-conduit"&gt;
      &lt;http-conf:client ConnectionTimeout="180000" ReceiveTimeout="180000"/&gt;
&lt;/http-conf:conduit&gt;

then both connection and receive timeouts are working fine but whenever we use the targetnamespace
and the portname the timeouts are not working.

&lt;http-conf:conduit name="{http://capabilities.nat.bt.com/wsdl/ManageProductAvailability/2007/04/30}ManageProductAvailabilitySyncPort.http-conduit"&gt;
       &lt;http-conf:client ConnectionTimeout="180000" ReceiveTimeout="180000"/&gt;
&lt;/http-conf:conduit&gt;

Attached herewith are the springbeans and wsdls for your reference

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



</pre>
</div>
</content>
</entry>
<entry>
<title>Issues with Attachments: week of 2009-12-07</title>
<author><name>dkulp@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c20091207081400.87004.qmail@minotaur.apache.org%3e"/>
<id>urn:uuid:%3c20091207081400-87004-qmail@minotaur-apache-org%3e</id>
<updated>2009-12-07T08:14:00Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
CXF - Monday, December 7, 2009
 
  13 Issues with Attachments
 
  (sorted oldest to newest)
 
    [CXF-2183] wsdl2java "only one global bindings customization is allowed" with embedded
imported schema namespace
      (2009-04-21 - Bug - Bob Fields)
      http://issues.apache.org/jira/browse/CXF-2183
 
    [CXF-2527] SymmetricBindingHandler wrongly uses relative references to wsc:Identifiers
      (2009-11-06 - Bug - Colm O hEigeartaigh)
      http://issues.apache.org/jira/browse/CXF-2527
 
    [CXF-2540] JMX ResponseTimeFeature does not count client side exceptions
      (2009-11-16 - Bug - Cyrille Le Clerc)
      http://issues.apache.org/jira/browse/CXF-2540
 
    [CXF-2541] JMX Per Operation ResponseTime not collected for JAX-RS services
      (2009-11-16 - Bug - Cyrille Le Clerc)
      http://issues.apache.org/jira/browse/CXF-2541
 
    [CXF-2546] NullPointerException when trying to find WS-Addressing Action
      (2009-11-17 - Bug - John Hite)
      http://issues.apache.org/jira/browse/CXF-2546
 
    [CXF-2550] transactions don't work in jaxws Endpoint  with jms transport
      (2009-11-19 - Bug - javier)
      http://issues.apache.org/jira/browse/CXF-2550
 
    [CXF-2551] NullPointerException 	at org.apache.cxf.transport.servlet.ServletController.updateDests(ServletController.java:92)
      (2009-11-20 - Bug - Gary Gregory)
      http://issues.apache.org/jira/browse/CXF-2551
 
    [CXF-2554] JaxWsDynamicClientFactory.createClient(URL) and o.a.cxf.endpoint.Client.invoke(String
operationName, Object... params) generates illegal XML, WstxParsingException on server.
      (2009-11-20 - Bug - Gary Gregory)
      http://issues.apache.org/jira/browse/CXF-2554
 
    [CXF-2555] JaxWsDynamicClientFactory unable to handle custom exceptions
      (2009-11-21 - Bug - pavan kumar)
      http://issues.apache.org/jira/browse/CXF-2555
 
    [CXF-2562] Make it possible to change the title of the service list page
      (2009-11-30 - Improvement - Rémi Flament)
      http://issues.apache.org/jira/browse/CXF-2562
 
    [CXF-2566] Missing translation for INSTRUMENTATION_REGISTER_FAULT_MSG
      (2009-12-01 - Bug - Cyrille Le Clerc)
      http://issues.apache.org/jira/browse/CXF-2566
 
    [CXF-2570] ServletDestinationFacotry and Tomcat can't locate services
      (2009-12-02 - Bug - Christian Connert)
      http://issues.apache.org/jira/browse/CXF-2570
 
    [CXF-2571] wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include
in jar-file
      (2009-12-03 - Bug - Håkan Dahl)
      http://issues.apache.org/jira/browse/CXF-2571
 


</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2574) WSDL file not getting generated in WebSphere 6.1</title>
<author><name>&quot;Vivek Pandian S (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1528217536.1260010100665.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1528217536-1260010100665-JavaMail-jira@brutus%3e</id>
<updated>2009-12-05T10:48:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
WSDL file not getting generated in WebSphere 6.1
------------------------------------------------

                 Key: CXF-2574
                 URL: https://issues.apache.org/jira/browse/CXF-2574
             Project: CXF
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.2.5
         Environment: Windows XP, Websphere 6.1, CXF 2.2.5, spring 2.5
            Reporter: Vivek Pandian S
            Priority: Critical


I could access the CXF WebService thro url from the browser. But if try to access the wsdl
file for the same, i get page not found error. In the server console , i get the following
exception


[12/5/09 16:08:35:468 IST] 00000022 ServletContro W   Can't find the request for http://localhost:9083/CXF//'s
Observer 
[12/5/09 16:08:36:655 IST] 00000022 ServletWrappe E   SRVE0068E: Uncaught exception thrown
in one of the service methods of the servlet: CXFServlet. Exception thrown : java.lang.IncompatibleClassChangeError
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.addExtensibilityElements(ServiceWSDLBuilder.java:229)
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBindingInput(ServiceWSDLBuilder.java:355)
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBindingOperation(ServiceWSDLBuilder.java:324)
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.buildBinding(ServiceWSDLBuilder.java:305)
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.build(ServiceWSDLBuilder.java:193)
	at org.apache.cxf.wsdl11.ServiceWSDLBuilder.build(ServiceWSDLBuilder.java:148)
	at org.apache.cxf.transport.http.WSDLQueryHandler.writeResponse(WSDLQueryHandler.java:146)
	at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:156)
	at org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:142)
	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:179)
	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doGet(AbstractHTTPServlet.java:108)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:159)
	at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
	at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
	at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
	at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)
	at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:238)
	at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)
	at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)
	at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:93)
	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
	at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
	at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
	at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
	at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
	at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:194)
	at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:741)
	at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:863)
	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1510)

Please help me in this regard

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2252) Add support JAX-WS for DOSGi</title>
<author><name>&quot;Josh Holtzman (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1967360270.1259970680674.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1967360270-1259970680674-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T23:51:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2252?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Josh Holtzman resolved CXF-2252.
--------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: dOSGi-1.2)
                   dOSGi-1.1

This was implemented, and is available in v1.1 by setting the service property org.apache.cxf.ws.frontend=jaxws
and org.apache.cxf.ws.databinding=jaxb as documented at http://cxf.apache.org/distributed-osgi-reference.html

&gt; Add support JAX-WS for DOSGi
&gt; ----------------------------
&gt;
&gt;                 Key: CXF-2252
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2252
&gt;             Project: CXF
&gt;          Issue Type: New Feature
&gt;          Components: Distributed-OSGi
&gt;    Affects Versions: dOSGi-1.0
&gt;            Reporter: Josh Holtzman
&gt;             Fix For: dOSGi-1.1
&gt;
&gt;         Attachments: dosgi_jaxws.diff, dosgi_jaxws_jaxrs.diff
&gt;
&gt;
&gt; Individual service registrations should be able to choose whether to utilize the Aegis
or JAX-WS databindings for distributed OSGi.  The Aegis databinding, however, should remain
the default.  See the discussion at http://www.nabble.com/Configuring-DOSGI-to-use-JAX-WS-td23487668.html

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2252) Add support JAX-WS for DOSGi</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c726403647.1259966001027.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c726403647-1259966001027-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T22:33:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2252?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp updated CXF-2252:
-----------------------------

    Fix Version/s:     (was: dOSGi-1.1)
                   dOSGi-1.2

&gt; Add support JAX-WS for DOSGi
&gt; ----------------------------
&gt;
&gt;                 Key: CXF-2252
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2252
&gt;             Project: CXF
&gt;          Issue Type: New Feature
&gt;          Components: Distributed-OSGi
&gt;    Affects Versions: dOSGi-1.0
&gt;            Reporter: Josh Holtzman
&gt;             Fix For: dOSGi-1.2
&gt;
&gt;         Attachments: dosgi_jaxws.diff, dosgi_jaxws_jaxrs.diff
&gt;
&gt;
&gt; Individual service registrations should be able to choose whether to utilize the Aegis
or JAX-WS databindings for distributed OSGi.  The Aegis databinding, however, should remain
the default.  See the discussion at http://www.nabble.com/Configuring-DOSGI-to-use-JAX-WS-td23487668.html

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2352) dOSGi creates new databinding instance instead of using a spring-loaded databinding if available</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1871750490.1259966000959.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1871750490-1259966000959-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T22:33:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp updated CXF-2352:
-----------------------------

    Fix Version/s:     (was: dOSGi-1.1)
                   dOSGi-1.2

&gt; dOSGi creates new databinding instance instead of using a spring-loaded databinding if
available
&gt; ------------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2352
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2352
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Distributed-OSGi
&gt;    Affects Versions: dOSGi-1.1
&gt;            Reporter: Ahmed Aadel
&gt;             Fix For: dOSGi-1.2
&gt;
&gt;
&gt; It seems dOSGI doesn't look for  the user spring-configured data binding instance but
instead creates and uses a new one, leading to a faulty context with default properties.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2452) DOSGI CXF Distributed Software Bundle (1.1.0.SNAPSHOT) fails on startup</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1036159246.1259966000936.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1036159246-1259966000936-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T22:33:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2452?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp updated CXF-2452:
-----------------------------

    Fix Version/s:     (was: dOSGi-1.1)
                   dOSGi-1.2

&gt; DOSGI CXF Distributed Software Bundle (1.1.0.SNAPSHOT) fails on startup
&gt; -----------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2452
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2452
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Distributed-OSGi
&gt;    Affects Versions: dOSGi-1.1
&gt;         Environment: adz20:~ azeckoski$ java -version
&gt; java version "1.6.0_15"
&gt; Java(TM) SE Runtime Environment (build 1.6.0_15-b03-226)
&gt; Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-92, mixed mode)
&gt;            Reporter: Aaron Zeckoski
&gt;            Priority: Critical
&gt;             Fix For: dOSGi-1.2
&gt;
&gt;
&gt; One of the DOSGI bundles is failing to startup using Felix 2.0 as the container
&gt; cxf-dosgi-ri-dsw-cxf (1.1.0.SNAPSHOT)
&gt; The exception and ps info from felix will be added in comments
&gt; Here is the log of the attempt to startup and the exception at the end:
&gt; http://pastebin.com/m4da7142
&gt; Some tracing shows that this seems to fail when felix tries to load the org.apache.cxf.jaxrs.AbstractJAXRSFactoryBean
class and is unable to load the javax.ws.rs.WebApplicationException class. The constructor
called here is never actually reached.
&gt; JAXRSServerFactoryBean factory = new JAXRSServerFactoryBean();

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2560) WebClient doesns't read response body if status code means some error</title>
<author><name>&quot;Sergey Beryozkin (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c855677259.1259960960717.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c855677259-1259960960717-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T21:09:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2560?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Sergey Beryozkin resolved CXF-2560.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 2.3
         Assignee: Sergey Beryozkin

&gt; WebClient doesns't read response body if status code means some error
&gt; ---------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2560
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2560
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: JAX-RS
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Roman Kalukiewicz
&gt;            Assignee: Sergey Beryozkin
&gt;             Fix For: 2.3
&gt;
&gt;
&gt; In {{org.apache.cxf.jaxrs.client.AbstractClient.readBody(Response, HttpURLConnection,
Message, Class&lt;?&gt;, Type, Annotation[])}} there is a conddition that causes {{WebClient}}
not to read the content of the response if status code describes some kind of error.
&gt; I believe that if some response is sent by the server I should be able to read it even
if the status is for example 404.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2268) Collapse Atom Feed and Entry providers and support Atom reflectively</title>
<author><name>&quot;Sergey Beryozkin (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1838919023.1259960840958.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1838919023-1259960840958-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T21:07:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Sergey Beryozkin resolved CXF-2268.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 2.3
         Assignee: Sergey Beryozkin

Documentation to follow

&gt; Collapse Atom Feed and Entry providers and support Atom reflectively
&gt; --------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2268
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2268
&gt;             Project: CXF
&gt;          Issue Type: Improvement
&gt;          Components: JAX-RS
&gt;    Affects Versions: 2.3
&gt;            Reporter: Sergey Beryozkin
&gt;            Assignee: Sergey Beryozkin
&gt;            Priority: Minor
&gt;             Fix For: 2.3
&gt;
&gt;
&gt; it should be possible to serialize a given wrapper collection like customers without
users haveing to explicitly deal with Abdera, for example :
&gt; @Path("/")
&gt; public class SomeService {
&gt;  @GET
&gt;  @Produces("application/atom+feed")
&gt;  public Customers getCustomers() {}
&gt; }
&gt; public class Customers {
&gt;   private List&lt;Customer&gt; customers;
&gt; }
&gt; Atom provider would introspect Customers for top level feed properties and every Customer
for individual entry properties. It would check for well known properties, like getId(), etc,
and will default to some reasonable values when needed. Atom provider should also accept class-specific
out-of-band atom properties (beans) which can customize the serialization as needed.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2572) WS-Addressing interceptors throw NPE when processing JAX-WS @WebServiceProvider requests in MESSAGE mode</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1340130610.1259960840890.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1340130610-1259960840890-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T21:07:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2572.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2.6
         Assignee: Daniel Kulp

&gt; WS-Addressing interceptors throw NPE when processing JAX-WS @WebServiceProvider requests
in MESSAGE mode
&gt; --------------------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2572
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2572
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: JAX-WS Runtime, WS-* Components
&gt;    Affects Versions: 2.2.4, 2.2.5, 2.3
&gt;         Environment: WinXP32, Sun JDK 1.6.0_16
&gt;            Reporter: Alexandros Karypidis
&gt;            Assignee: Daniel Kulp
&gt;             Fix For: 2.2.6
&gt;
&gt;         Attachments: cxf-systests-ws-specs_Addressing-MMode-JAX-WS.patch
&gt;
&gt;
&gt; When publishing a service using JAX-WS and the @WebServiceProvider using the MESSAGE
mode (i.e. access to full SOAP envelope), the WS-Addressing interceptors throw an NPE.
&gt; Problem was first-reported here:
&gt; http://thread.gmane.org/gmane.comp.apache.cxf.user/4153

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2553) WS-Security UsernameToken sample using WS-SecurityPolicy</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1166117040.1259955320731.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1166117040-1259955320731-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T19:35:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2553.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2.6
         Assignee: Daniel Kulp


Thanks!

Just had to fix a single checkstyle error and a line break in the readme.   Thanks a bunch!

&gt; WS-Security UsernameToken sample using WS-SecurityPolicy
&gt; --------------------------------------------------------
&gt;
&gt;                 Key: CXF-2553
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2553
&gt;             Project: CXF
&gt;          Issue Type: Improvement
&gt;    Affects Versions: 2.2
&gt;            Reporter: Oliver Wulff
&gt;            Assignee: Daniel Kulp
&gt;            Priority: Minor
&gt;             Fix For: 2.2.6
&gt;
&gt;         Attachments: ut_policy.zip
&gt;
&gt;
&gt; I'd like to submit this demo which combines https and usernametoken based on WS-SecurityPolicy
configuration.
&gt; The attached demo is an extension of the ws-sec demo ut. I took the demo wsdl_first_https
as the base for https and configured UsernameToken enforcement with WS-SecurityPolicy.
&gt; We configure the CXF version like this:
&gt;     &lt;properties&gt;
&gt;         &lt;cxf.version&gt;[2,)&lt;/cxf.version&gt;
&gt;     &lt;/properties&gt;
&gt; Is this really intended that when I download CXF 2.2.4 and run the demo with maven, the
more recent CXF version (2.2.5) is used?

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2573) Exception when Remoting Service with Single-Bundle Distro w/o Discovery Server</title>
<author><name>&quot;David Bosschaert (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c348500119.1259942180665.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c348500119-1259942180665-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T15:56:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Exception when Remoting Service with Single-Bundle Distro w/o Discovery Server
------------------------------------------------------------------------------

                 Key: CXF-2573
                 URL: https://issues.apache.org/jira/browse/CXF-2573
             Project: CXF
          Issue Type: Bug
          Components: Distributed-OSGi
    Affects Versions: dOSGi-1.1
            Reporter: David Bosschaert
            Priority: Minor


When using the Single Bundle Distribution you may get the following exception when remoting
a service:

SEVERE: Exception while processing the addition of a ServicePublication.
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss
	at org.apache.zookeeper.KeeperException.create(KeeperException.java:59)
	at org.apache.zookeeper.ZooKeeper.exists(ZooKeeper.java:593)
	at org.apache.zookeeper.ZooKeeper.exists(ZooKeeper.java:620)
	at org.apache.cxf.dosgi.discovery.zookeeper.PublishToZooKeeperCustomizer.ensurePath(PublishToZooKeeperCustomizer.java:112)
	at org.apache.cxf.dosgi.discovery.zookeeper.PublishToZooKeeperCustomizer.addingService(PublishToZooKeeperCustomizer.java:68)
	at org.osgi.util.tracker.ServiceTracker$Tracked.trackAdding(ServiceTracker.java:1021)
	at org.osgi.util.tracker.ServiceTracker$Tracked.track(ServiceTracker.java:999)
	at org.osgi.util.tracker.ServiceTracker$Tracked.serviceChanged(ServiceTracker.java:924)
	at org.eclipse.osgi.internal.serviceregistry.FilteredServiceListener.serviceChanged(FilteredServiceListener.java:124)
	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:930)
	at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
	at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149)
	at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEventPrivileged(ServiceRegistry.java:757)
	at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.publishServiceEvent(ServiceRegistry.java:712)
	at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.register(ServiceRegistrationImpl.java:129)
	at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.registerService(ServiceRegistry.java:206)
	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:506)
	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.registerService(BundleContextImpl.java:524)
	at org.apache.cxf.dosgi.dsw.hooks.ServiceHookUtils.publish(ServiceHookUtils.java:55)
	at org.apache.cxf.dosgi.dsw.hooks.CxfPublishHook.publishEndpoint(CxfPublishHook.java:82)
	at org.apache.cxf.dosgi.dsw.Activator$1.run(Activator.java:164)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
	at java.lang.Thread.run(Unknown Source)

This happens when you don't have a Zookeeper Discovery Server running.
The exception is harmless and everything still works but it should be changed into an INFO
log message as running without Discovery is a perfectly valid use case.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2572) WS-Addressing interceptors throw NPE when processing JAX-WS @WebServiceProvider requests in MESSAGE mode</title>
<author><name>&quot;Alexandros Karypidis (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c24634047.1259921480607.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c24634047-1259921480607-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T10:11:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
WS-Addressing interceptors throw NPE when processing JAX-WS @WebServiceProvider requests in
MESSAGE mode
--------------------------------------------------------------------------------------------------------

                 Key: CXF-2572
                 URL: https://issues.apache.org/jira/browse/CXF-2572
             Project: CXF
          Issue Type: Bug
          Components: JAX-WS Runtime, WS-* Components
    Affects Versions: 2.2.5, 2.2.4, 2.3
         Environment: WinXP32, Sun JDK 1.6.0_16
            Reporter: Alexandros Karypidis


When publishing a service using JAX-WS and the @WebServiceProvider using the MESSAGE mode
(i.e. access to full SOAP envelope), the WS-Addressing interceptors throw an NPE.

Problem was first-reported here:
http://thread.gmane.org/gmane.comp.apache.cxf.user/4153


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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2570) ServletDestinationFacotry and Tomcat can't locate services</title>
<author><name>&quot;Christian Connert (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1044540881.1259911640671.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1044540881-1259911640671-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T07:27:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2570?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785799#action_12785799
] 

Christian Connert commented on CXF-2570:
----------------------------------------

O.k,

I'm trying to descripe the problem in detail:

first I've some wsdl with the following soap location:

&lt;soap:address location="http://192.168.130.7:8080/BasicBusinessServices/services/OrderService"
/&gt;

It's also used by clients to know the location of the service endpoint.

The ServletTransportFactory only removes the prefixs http://localhost/ and https://localhost/,
thus in my case no prefixes are removed and the services are stored by the full path in the
destinations map.

When invoking the service the ServletController uses the following line in the invoke method
(line 131):

String address = request.getPathInfo() == null ? "" : request.getPathInfo();

For my sample this call returns "/OrderService", but since the ServletTransportFactory destinations
map uses the full path as key (http://192.168.130.7:8080/BasicBusinessServices/services/OrderService)
the ServletController calls ServletDestination d = getDestination(ei.getAddress()); (line
135) but this returns null and the call ends in the following code (line 153 - 157) of the
ServletController:

 if (d == null || d.getMessageObserver() == null) {                        
                        LOG.warning("Can't find the request for " 
                                    + request.getRequestURL() + "'s Observer ");
                        generateNotFound(request, res);
 } 

&gt; ServletDestinationFacotry and Tomcat can't locate services
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: CXF-2570
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2570
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;         Environment:   	
&gt; Â« Hide
&gt; System:
&gt; 2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:48:52 UTC 2009 x86_64 GNU/Linux
&gt; Java:
&gt; java version "1.6.0_16"
&gt; Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
&gt; Java HotSpot(TM) 64-Bit Server VM (build 14.2-b01, mixed mode)
&gt; Apache CXF 2.2.3 (not in version list)
&gt;            Reporter: Christian Connert
&gt;         Attachments: cxf.xml, TomcatDestinationFactory.java
&gt;
&gt;
&gt; The problem is that the service destinations aren't found by the destination factory.
&gt; I think this problem isn't Tomcat specific. It should occur if cxf is deployed as a war
inside some application server.
&gt; I would suggest the following workaround:
&gt; 1.) Implement a ServletTransportFactory (see attachment 1)
&gt; 2.) Register this ServletTransportFactory in the default cxf.xml (classpath root, see
attachment 2)
&gt; As a clean fix the ServletTransportFactory should make the static String getTrimmedPath(String
path) method to a protected non static method. Than it can be easily overriden by custom subclasses.
&gt; Greetings

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2570) ServletDestinationFacotry and Tomcat can't locate services</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1304736567.1259867000644.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1304736567-1259867000644-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T19:03:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2570?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785451#action_12785451
] 

Daniel Kulp commented on CXF-2570:
----------------------------------


I'm trying to figure out exactly what the problem is.   What problem are you seeing that is
requiring this?

Basically, I'd rather fix the ServletTransportFactory (or the CXFServlet) if something is
needed there, but I really kind of need to know what the problem is.   Do you have a testcase
or something that shows the problem?



&gt; ServletDestinationFacotry and Tomcat can't locate services
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: CXF-2570
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2570
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;         Environment:   	
&gt; Â« Hide
&gt; System:
&gt; 2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:48:52 UTC 2009 x86_64 GNU/Linux
&gt; Java:
&gt; java version "1.6.0_16"
&gt; Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
&gt; Java HotSpot(TM) 64-Bit Server VM (build 14.2-b01, mixed mode)
&gt; Apache CXF 2.2.3 (not in version list)
&gt;            Reporter: Christian Connert
&gt;         Attachments: cxf.xml, TomcatDestinationFactory.java
&gt;
&gt;
&gt; The problem is that the service destinations aren't found by the destination factory.
&gt; I think this problem isn't Tomcat specific. It should occur if cxf is deployed as a war
inside some application server.
&gt; I would suggest the following workaround:
&gt; 1.) Implement a ServletTransportFactory (see attachment 1)
&gt; 2.) Register this ServletTransportFactory in the default cxf.xml (classpath root, see
attachment 2)
&gt; As a clean fix the ServletTransportFactory should make the static String getTrimmedPath(String
path) method to a protected non static method. Than it can be easily overriden by custom subclasses.
&gt; Greetings

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



</pre>
</div>
</content>
</entry>
<entry>
<title>CXF: JMS reconnectOnException</title>
<author><name>&quot;HOCHMUTH, ERICH [AG/1000]&quot; &lt;erich.hochmuth@monsanto.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3cDFC9A3F9BB990C47875B0CD52F12431301080CB0@na1000exm06.na.ds.monsanto.com%3e"/>
<id>urn:uuid:%3cDFC9A3F9BB990C47875B0CD52F12431301080CB0@na1000exm06-na-ds-monsanto-com%3e</id>
<updated>2009-12-03T12:56:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Not sure if this is the correct forum or the correct format.

In CXF 2.2.4 with a JMS bases service we are getting the following
exception when the web application starts up in WebLogic 10.3.

This only seems to happen when we set the "reconnectOnException"
property of the JMSConfiguration to true:
http://cwiki.apache.org/CXF20DOC/using-the-jmsconfigfeature.html

 

Please let me know what additional information I can provide or any
ideas on what I can do to fix this issue or if it is a configuration
error on my side.

 

Caused by: org.springframework.jms.UncategorizedJmsException:
Uncategorized exception occured during JMS processing; nested exception
is javax.jms.JMSException: [JMSPool:169801]The JMS method
setExceptionListener may not be called inside an EJB or servlet

      at
org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUt
ils.java:308)

      at
org.springframework.jms.support.JmsAccessor.convertJmsAccessException(Jm
sAccessor.java:168)

      at
org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:474)

      at
org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:436)

      at
org.apache.cxf.transport.jms.JMSFactory.resolveOrCreateDestination(JMSFa
ctory.java:260)

      at
org.apache.cxf.transport.jms.JMSFactory.createJmsListener(JMSFactory.jav
a:240)

      at
org.apache.cxf.transport.jms.JMSFactory.createJmsListener(JMSFactory.jav
a:146)

      at
org.apache.cxf.transport.jms.JMSDestination.activate(JMSDestination.java
:111)

      at
org.apache.cxf.transport.AbstractObservable.setMessageObserver(AbstractO
bservable.java:48)

      at
org.apache.cxf.binding.AbstractBindingFactory.addListener(AbstractBindin
gFactory.java:164)

      at
org.apache.cxf.binding.soap.SoapBindingFactory.addListener(SoapBindingFa
ctory.java:766)

      at org.apache.cxf.endpoint.ServerImpl.start(ServerImpl.java:122)

      at
org.apache.cxf.jaxws.EndpointImpl.doPublish(EndpointImpl.java:271)

      ... 61 more

Caused by: javax.jms.JMSException: [JMSPool:169801]The JMS method
setExceptionListener may not be called inside an EJB or servlet

      at
weblogic.deployment.jms.JMSExceptions.getJMSException(JMSExceptions.java
:22)

      at
weblogic.deployment.jms.PooledConnection.setExceptionListener(PooledConn
ection.java:180)

      at
org.springframework.jms.connection.SingleConnectionFactory.prepareConnec
tion(SingleConnectionFactory.java:365)

      at
org.springframework.jms.connection.SingleConnectionFactory.initConnectio
n(SingleConnectionFactory.java:291)

      at
org.springframework.jms.connection.SingleConnectionFactory.createConnect
ion(SingleConnectionFactory.java:227)

      at
org.springframework.jms.support.JmsAccessor.createConnection(JmsAccessor
.java:184)

      at
org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:461)

      ... 71 more

 

Thanks,

Erich

 

 

 


---------------------------------------------------------------------------------------------------------
This e-mail message may contain privileged and/or confidential information, and is intended
to be received only by persons entitled to receive such information. If you have received
this e-mail in error, please notify the sender immediately. Please delete it and all attachments
from any servers, hard drives or any other media. Other use of this e-mail by you is strictly
prohibited.


All e-mails and attachments sent and received are subject to monitoring, reading and archival
by Monsanto, including its subsidiaries. The recipient of this e-mail is solely responsible
for checking for the presence of "Viruses" or other "Malware". Monsanto, along with its subsidiaries,
accepts no liability for any damage caused by any such code transmitted by or accompanying
this e-mail or any attachment.
---------------------------------------------------------------------------------------------------------



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2571) wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in jar-file</title>
<author><name>=?utf-8?Q?H=C3=A5kan_Dahl_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1607238527.1259833580756.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1607238527-1259833580756-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T09:46:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

HÃ¥kan Dahl updated CXF-2571:
----------------------------

    Attachment: jax-ws-catalog-test-20091203.zip

Attached test-projects.

To reproduce problem, run the following in the root-project:

mvn -e clean install


&gt; wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in
jar-file
&gt; ----------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2571
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2571
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;    Affects Versions: 2.1.8, 2.2.5
&gt;         Environment: Apache Maven 2.2.1
&gt; Java version: 1.5.0_21
&gt; OS name: "windows xp"
&gt;            Reporter: HÃ¥kan Dahl
&gt;         Attachments: jax-ws-catalog-test-20091203.zip
&gt;
&gt;
&gt; cxf-codegen-plugin/wsdl2java (2.1.8, 2.2.5)
&gt; Refer user-list thread:
&gt; http://old.nabble.com/jax-ws-catalog-and-resolving-schemas-in-jars-that-do-xsd%3Ainclude-td26590812.html
&gt; Schema resolution from a jar-file (using jax-ws-catalog as per 4.4 Catalog Facility in
the JAX-WS 2.1 spec) fails when:
&gt; * The referenced schema in a jar makes xsd:include on another schema in the
&gt; jar (all schemas in a jar share the same namespace).
&gt; Stacktrace below for CXF 2.1.8 below. CXF 2.2.5 also fails but with a NullPointerException.
&gt; Note: xsd:import works but requires imported schema to be in another
&gt; namespace.
&gt; Projects look like:
&gt; common-types-domain1
&gt;    META-INF/jax-ws-catalog.xml
&gt;    schemas/domain1/domain1-schema1.xsd
&gt;    schemas/domain1/domain1-schema2.xsd
&gt; wsdl-project-1
&gt;    src\main\resources\schemas\GetX.xsd
&gt;    src\main\resources\schemas\GetXService.wsdl
&gt; where the GetXService.wsdl imports GetX.xsd which imports
&gt; domain1-schema2.xsd like this:
&gt; GetX.xsd:
&gt;    &lt;xsd:import namespace="http://www.example.org/schemas/domain1"
&gt;        schemaLocation="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"/&gt;
&gt; domain1-schema2.xsd:
&gt;    &lt;xsd:include schemaLocation="domain1-schema1.xsd"/&gt;
&gt; common-types-domain1/META-INF/jax-ws-catalog.xml:
&gt;    &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
&gt; prefer="system"&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema1.xsd"/&gt;
&gt;      &lt;system systemId="
&gt; http://www.example.org/schemas/domain1/domain1-schema2.xsd"
&gt;          uri="classpath:schemas/domain1/domain1-schema2.xsd"/&gt;
&gt;    &lt;/catalog&gt;
&gt; results in:
&gt; Caused by: org.apache.cxf.tools.common.ToolException: Thrown by JAXB :
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBBindErrorListener.error(JAXBBindErrorListener.java:34)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.error(SchemaCompilerImpl.java:285)
&gt;    at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:90)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:402)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:301)
&gt;    at
&gt; com.sun.tools.xjc.reader.internalizer.AbstractReferenceFinderImpl.startElement(AbstractReferenceFinderImpl.java:95)
&gt;    at
&gt; org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:527)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:240)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:277)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:246)
&gt;    at com.sun.xml.bind.unmarshaller.DOMScanner.scan(DOMScanner.java:123)
&gt;    at
&gt; com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.parseSchema(SchemaCompilerImpl.java:135)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.addSchemas(JAXBDataBinding.java:253)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:196)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.generateTypes(WSDLToJavaContainer.java:588)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaContainer.java:239)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:130)
&gt;    at
&gt; org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:283)
&gt;    at
&gt; org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:83)
&gt;    at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:103)
&gt;    at
&gt; org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:337)
&gt;    ... 20 more
&gt; Caused by: java.io.FileNotFoundException:
&gt; http://www.example.org/schemas/domain1/domain1-schema1.xsd
&gt;    ... 39 more

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2571) wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in jar-file</title>
<author><name>=?utf-8?Q?H=C3=A5kan_Dahl_=28JIRA=29?= &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c228795297.1259833220779.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c228795297-1259833220779-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T09:40:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
wsdl2java and jax-ws-catalog: failing to resolve schemas included with xsd:include in jar-file
----------------------------------------------------------------------------------------------

                 Key: CXF-2571
                 URL: https://issues.apache.org/jira/browse/CXF-2571
             Project: CXF
          Issue Type: Bug
    Affects Versions: 2.2.5, 2.1.8
         Environment: Apache Maven 2.2.1
Java version: 1.5.0_21
OS name: "windows xp"
            Reporter: HÃ¥kan Dahl


cxf-codegen-plugin/wsdl2java (2.1.8, 2.2.5)

Refer user-list thread:
http://old.nabble.com/jax-ws-catalog-and-resolving-schemas-in-jars-that-do-xsd%3Ainclude-td26590812.html

Schema resolution from a jar-file (using jax-ws-catalog as per 4.4 Catalog Facility in the
JAX-WS 2.1 spec) fails when:

* The referenced schema in a jar makes xsd:include on another schema in the
jar (all schemas in a jar share the same namespace).

Stacktrace below for CXF 2.1.8 below. CXF 2.2.5 also fails but with a NullPointerException.

Note: xsd:import works but requires imported schema to be in another
namespace.


Projects look like:

common-types-domain1
   META-INF/jax-ws-catalog.xml
   schemas/domain1/domain1-schema1.xsd
   schemas/domain1/domain1-schema2.xsd

wsdl-project-1
   src\main\resources\schemas\GetX.xsd
   src\main\resources\schemas\GetXService.wsdl

where the GetXService.wsdl imports GetX.xsd which imports
domain1-schema2.xsd like this:


GetX.xsd:

   &lt;xsd:import namespace="http://www.example.org/schemas/domain1"
       schemaLocation="
http://www.example.org/schemas/domain1/domain1-schema2.xsd"/&gt;

domain1-schema2.xsd:

   &lt;xsd:include schemaLocation="domain1-schema1.xsd"/&gt;

common-types-domain1/META-INF/jax-ws-catalog.xml:

   &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
prefer="system"&gt;
     &lt;system systemId="
http://www.example.org/schemas/domain1/domain1-schema1.xsd"
         uri="classpath:schemas/domain1/domain1-schema1.xsd"/&gt;
     &lt;system systemId="
http://www.example.org/schemas/domain1/domain1-schema2.xsd"
         uri="classpath:schemas/domain1/domain1-schema2.xsd"/&gt;
   &lt;/catalog&gt;

results in:

Caused by: org.apache.cxf.tools.common.ToolException: Thrown by JAXB :
http://www.example.org/schemas/domain1/domain1-schema1.xsd
   at
org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBBindErrorListener.error(JAXBBindErrorListener.java:34)
   at
com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.error(SchemaCompilerImpl.java:285)
   at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:90)
   at
com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:402)
   at
com.sun.tools.xjc.reader.internalizer.DOMForest.parse(DOMForest.java:301)
   at
com.sun.tools.xjc.reader.internalizer.AbstractReferenceFinderImpl.startElement(AbstractReferenceFinderImpl.java:95)
   at
org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:527)
   at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:240)
   at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:277)
   at com.sun.xml.bind.unmarshaller.DOMScanner.visit(DOMScanner.java:246)
   at com.sun.xml.bind.unmarshaller.DOMScanner.scan(DOMScanner.java:123)
   at
com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.parseSchema(SchemaCompilerImpl.java:135)
   at
org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.addSchemas(JAXBDataBinding.java:253)
   at
org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:196)
   at
org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.generateTypes(WSDLToJavaContainer.java:588)
   at
org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaContainer.java:239)
   at
org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:130)
   at
org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:283)
   at
org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:83)
   at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:103)
   at
org.apache.cxf.maven_plugin.WSDL2JavaMojo.processWsdl(WSDL2JavaMojo.java:337)
   ... 20 more
Caused by: java.io.FileNotFoundException:
http://www.example.org/schemas/domain1/domain1-schema1.xsd
   ... 39 more

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2570) ServletDestinationFacotry and Tomcat can't locate services</title>
<author><name>&quot;Christian Connert (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1628322056.1259766260637.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1628322056-1259766260637-JavaMail-jira@brutus%3e</id>
<updated>2009-12-02T15:04:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2570?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Christian Connert updated CXF-2570:
-----------------------------------

    Attachment: cxf.xml
                TomcatDestinationFactory.java

&gt; ServletDestinationFacotry and Tomcat can't locate services
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: CXF-2570
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2570
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;         Environment:   	
&gt; Â« Hide
&gt; System:
&gt; 2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:48:52 UTC 2009 x86_64 GNU/Linux
&gt; Java:
&gt; java version "1.6.0_16"
&gt; Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
&gt; Java HotSpot(TM) 64-Bit Server VM (build 14.2-b01, mixed mode)
&gt; Apache CXF 2.2.3 (not in version list)
&gt;            Reporter: Christian Connert
&gt;         Attachments: cxf.xml, TomcatDestinationFactory.java
&gt;
&gt;
&gt; The problem is that the service destinations aren't found by the destination factory.
&gt; I think this problem isn't Tomcat specific. It should occur if cxf is deployed as a war
inside some application server.
&gt; I would suggest the following workaround:
&gt; 1.) Implement a ServletTransportFactory (see attachment 1)
&gt; 2.) Register this ServletTransportFactory in the default cxf.xml (classpath root, see
attachment 2)
&gt; As a clean fix the ServletTransportFactory should make the static String getTrimmedPath(String
path) method to a protected non static method. Than it can be easily overriden by custom subclasses.
&gt; Greetings

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2570) ServletDestinationFacotry and Tomcat can't locate services</title>
<author><name>&quot;Christian Connert (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1735259365.1259766140704.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1735259365-1259766140704-JavaMail-jira@brutus%3e</id>
<updated>2009-12-02T15:02:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
ServletDestinationFacotry and Tomcat can't locate services
----------------------------------------------------------

                 Key: CXF-2570
                 URL: https://issues.apache.org/jira/browse/CXF-2570
             Project: CXF
          Issue Type: Bug
         Environment:   	
Â« Hide
System:
2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:48:52 UTC 2009 x86_64 GNU/Linux

Java:
java version "1.6.0_16"
Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
Java HotSpot(TM) 64-Bit Server VM (build 14.2-b01, mixed mode)

Apache CXF 2.2.3 (not in version list)

            Reporter: Christian Connert


The problem is that the service destinations aren't found by the destination factory.
I think this problem isn't Tomcat specific. It should occur if cxf is deployed as a war inside
some application server.
I would suggest the following workaround:

1.) Implement a ServletTransportFactory (see attachment 1)
2.) Register this ServletTransportFactory in the default cxf.xml (classpath root, see attachment
2)

As a clean fix the ServletTransportFactory should make the static String getTrimmedPath(String
path) method to a protected non static method. Than it can be easily overriden by custom subclasses.

Greetings



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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2569) Consuming a wsdl file which is having a nested complex types in xsd</title>
<author><name>&quot;vijay valeti (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c88146138.1259730320639.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c88146138-1259730320639-JavaMail-jira@brutus%3e</id>
<updated>2009-12-02T05:05:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Consuming a wsdl file which is having a nested complex types in xsd
-------------------------------------------------------------------

                 Key: CXF-2569
                 URL: https://issues.apache.org/jira/browse/CXF-2569
             Project: CXF
          Issue Type: Bug
          Components: JAX-WS Runtime
         Environment: jdk 1.5 ,windows xp,IBM websphere server
            Reporter: vijay valeti
            Priority: Blocker


When we are trying to consume a wsdl file which is having a nested complex type xsd element
we are getting an exception

IllegalArgumentException:Wrong Number of Arguments provided

when ever you have a nested complex type in xsd,in the ObjectFactory.java class will be having
two create methods for the nested element.i feel cxf is not implemented properly to handle
this kind of situation . i believe that cxf developers/community assuemd that there wont be
any overloaded create methods in the OBjectFactory.java class

sample XSD
&lt;xsd:complexType&gt;
&lt;xsd:sequence&gt;
&lt;xsd:element&gt;
&lt;xsd:complexType name="testList"&gt;
&lt;xsd:sequence&gt;
&lt;xsd:element name="test" type="xsd:string" maxOccurs="unbounded"/&gt;
&lt;/xsd:sequence&gt;
&lt;/xsd:element&gt;
&lt;xsd:element  name="name"  type="xsd:string"/&gt;
&lt;/xsd:sequence&gt;
&lt;/xsd:complexType&gt;

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2568) default values don't get quoted properly in generated Javascript</title>
<author><name>&quot;Benson Margulies (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c2092905941.1259674520711.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c2092905941-1259674520711-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T13:35:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Benson Margulies resolved CXF-2568.
-----------------------------------

    Resolution: Fixed

Fix checked in. Fix could be more comprehensively tested.

&gt; default values don't get quoted properly in generated Javascript
&gt; ----------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2568
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2568
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: JavaScript Client
&gt;    Affects Versions: 2.2.4, 2.1.8, 2.2.5
&gt;            Reporter: Benson Margulies
&gt;             Fix For: 2.3
&gt;
&gt;
&gt; The schema stored all default values as strings. If they are really string values, they
need to be quoted in Javascript. They are not.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2568) default values don't get quoted properly in generated Javascript</title>
<author><name>&quot;Benson Margulies (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c607417578.1259674100819.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c607417578-1259674100819-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T13:28:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
default values don't get quoted properly in generated Javascript
----------------------------------------------------------------

                 Key: CXF-2568
                 URL: https://issues.apache.org/jira/browse/CXF-2568
             Project: CXF
          Issue Type: Bug
          Components: JavaScript Client
    Affects Versions: 2.2.5, 2.1.8, 2.2.4
            Reporter: Benson Margulies
             Fix For: 2.3


The schema stored all default values as strings. If they are really string values, they need
to be quoted in Javascript. They are not.


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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2559) Soap11FaultInInterceptor.unmarshalFault for valid SOAP message</title>
<author><name>&quot;Kees de Kooter (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c654179316.1259657480745.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c654179316-1259657480745-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T08:51:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2559?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784122#action_12784122
] 

Kees de Kooter commented on CXF-2559:
-------------------------------------

Unfortunately the webservice will not be fixed anytime soon. Is there a way to work around
this?

&gt; Soap11FaultInInterceptor.unmarshalFault for valid SOAP message
&gt; --------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2559
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2559
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Soap Binding
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Kees de Kooter
&gt;
&gt; I call a webservice which returns the following (fault) message:
&gt; {code:xml}
&gt; &lt;?xml version="1.0" encoding="UTF-8"?&gt;
&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&gt;   &lt;SOAP-ENV:Body&gt;
&gt;     &lt;SOAP-ENV:Fault&gt;
&gt;       &lt;faultstring&gt;engine::exception: Can't call method "namespaceURI" on an undefined
value at /var/www/html/XXXXX/package/engine/xml_utils.pm line 272.
&gt; &lt;/faultstring&gt;
&gt;       &lt;faultcode/&gt;
&gt;       &lt;stacktrace&gt;Session:eurogroup_ajCqNqED3rZakVOh, Time:2009-11-25 19:43:14,
Version:2.0.76-370, Username:pharos
&gt; /var/www/html/XXXXX/package/engine/exception.pm (53)
&gt; - /var/www/html/XXXXX/package/engine/instanciable.pm(22):engine::exception::create
&gt; - /var/www/html/XXXXX/package/engine/exception.pm(159):engine::instanciable::new
&gt; - /var/www/html/XXXXX/package/engine.pm(788):engine::exception::getExceptionFromError
&gt; - /var/www/html/XXXXX/package/engine.pm(786):(eval)
&gt; - /var/www/html/XXXXX/cgi/rsoapserver.cgi(18):engine::end
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):ModPerl::ROOT::ModPerl::Registry::var_www_html_XXXXX_cgi_rsoapserver_2ecgi::handler
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):(eval)
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(170):ModPerl::RegistryCooker::run
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/Registry.pm(31):ModPerl::RegistryCooker::default_handler
&gt; - -e(0):ModPerl::Registry::handler
&gt; - -e(0):(eval)
&gt; &lt;/stacktrace&gt;
&gt;     &lt;/SOAP-ENV:Fault&gt;
&gt;   &lt;/SOAP-ENV:Body&gt;
&gt; &lt;/SOAP-ENV:Envelope&gt;
&gt; {code}
&gt; The message contains valid xml as far a I can tell. Still the following exception is
thrown:
&gt; {noformat}
&gt; Caused by: com.ctc.wstx.exc.WstxParsingException: Received non-all-whitespace CHARACTERS
or CDATA event in nextTag().
&gt;  at [row,col {unknown-source}]: [21,0]
&gt; 	at com.ctc.wstx.sr.StreamScanner.constructWfcException(StreamScanner.java:580)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:453)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:438)
&gt; 	at com.ctc.wstx.sr.BasicStreamReader.nextTag(BasicStreamReader.java:1141)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:57)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:671)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:2205)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:2084)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1982)
&gt; 	at org.apache.cxf.io.CacheAndWriteOutputStream.postClose(CacheAndWriteOutputStream.java:47)
&gt; 	at org.apache.cxf.io.CachedOutputStream.close(CachedOutputStream.java:188)
&gt; 	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:637)
&gt; 	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:483)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:309)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:261)
&gt; 	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
&gt; 	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)
&gt; 	... 25 more
&gt; {noformat}

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2559) Soap11FaultInInterceptor.unmarshalFault for valid SOAP message</title>
<author><name>&quot;Kees de Kooter (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1053891316.1259656400877.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1053891316-1259656400877-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T08:33:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2559?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784117#action_12784117
] 

Kees de Kooter commented on CXF-2559:
-------------------------------------

Thanks Daniel. I will try to persuade the owner of the server to adjust their service accordingly.

&gt; Soap11FaultInInterceptor.unmarshalFault for valid SOAP message
&gt; --------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2559
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2559
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Soap Binding
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Kees de Kooter
&gt;
&gt; I call a webservice which returns the following (fault) message:
&gt; {code:xml}
&gt; &lt;?xml version="1.0" encoding="UTF-8"?&gt;
&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&gt;   &lt;SOAP-ENV:Body&gt;
&gt;     &lt;SOAP-ENV:Fault&gt;
&gt;       &lt;faultstring&gt;engine::exception: Can't call method "namespaceURI" on an undefined
value at /var/www/html/XXXXX/package/engine/xml_utils.pm line 272.
&gt; &lt;/faultstring&gt;
&gt;       &lt;faultcode/&gt;
&gt;       &lt;stacktrace&gt;Session:eurogroup_ajCqNqED3rZakVOh, Time:2009-11-25 19:43:14,
Version:2.0.76-370, Username:pharos
&gt; /var/www/html/XXXXX/package/engine/exception.pm (53)
&gt; - /var/www/html/XXXXX/package/engine/instanciable.pm(22):engine::exception::create
&gt; - /var/www/html/XXXXX/package/engine/exception.pm(159):engine::instanciable::new
&gt; - /var/www/html/XXXXX/package/engine.pm(788):engine::exception::getExceptionFromError
&gt; - /var/www/html/XXXXX/package/engine.pm(786):(eval)
&gt; - /var/www/html/XXXXX/cgi/rsoapserver.cgi(18):engine::end
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):ModPerl::ROOT::ModPerl::Registry::var_www_html_XXXXX_cgi_rsoapserver_2ecgi::handler
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):(eval)
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(170):ModPerl::RegistryCooker::run
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/Registry.pm(31):ModPerl::RegistryCooker::default_handler
&gt; - -e(0):ModPerl::Registry::handler
&gt; - -e(0):(eval)
&gt; &lt;/stacktrace&gt;
&gt;     &lt;/SOAP-ENV:Fault&gt;
&gt;   &lt;/SOAP-ENV:Body&gt;
&gt; &lt;/SOAP-ENV:Envelope&gt;
&gt; {code}
&gt; The message contains valid xml as far a I can tell. Still the following exception is
thrown:
&gt; {noformat}
&gt; Caused by: com.ctc.wstx.exc.WstxParsingException: Received non-all-whitespace CHARACTERS
or CDATA event in nextTag().
&gt;  at [row,col {unknown-source}]: [21,0]
&gt; 	at com.ctc.wstx.sr.StreamScanner.constructWfcException(StreamScanner.java:580)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:453)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:438)
&gt; 	at com.ctc.wstx.sr.BasicStreamReader.nextTag(BasicStreamReader.java:1141)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:57)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:671)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:2205)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:2084)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1982)
&gt; 	at org.apache.cxf.io.CacheAndWriteOutputStream.postClose(CacheAndWriteOutputStream.java:47)
&gt; 	at org.apache.cxf.io.CachedOutputStream.close(CachedOutputStream.java:188)
&gt; 	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:637)
&gt; 	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:483)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:309)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:261)
&gt; 	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
&gt; 	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)
&gt; 	... 25 more
&gt; {noformat}

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Reopened: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository</title>
<author><name>&quot;Stevo Slavic (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c478996821.1259652020684.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c478996821-1259652020684-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T07:20:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Stevo Slavic reopened CXF-2563:
-------------------------------


Please look from CXF users perspective,  there are numerous issues caused by this unneeded
repository definition, e.g. while building a project with dependency to cxf-rt-ws-security,
maven and its various core plugins pickup all the repository definitions from the project
but also from its dependencies (including transitive ones) to lookup dependencies, so maven
will waste time looking up snapshots at apache.snapshots repository and build will last longer.

&gt; CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to
external repository
&gt; ---------------------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2563
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2563
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Build system
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Stevo Slavic
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; [cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom]
contains reference to external (non maven central) repository, so it does not adhere to the
rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in
official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]).
Please check other CXF modules too for the same error, before deploying to maven central.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2565) Enable wiki renderer for CXF</title>
<author><name>&quot;Stevo Slavic (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1042151924.1259651181111.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1042151924-1259651181111-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T07:06:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784091#action_12784091
] 

Stevo Slavic commented on CXF-2565:
-----------------------------------

This is it, thanks, issue can be closed.

&gt; Enable wiki renderer for CXF
&gt; ----------------------------
&gt;
&gt;                 Key: CXF-2565
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2565
&gt;             Project: CXF
&gt;          Issue Type: Improvement
&gt;            Reporter: Stevo Slavic
&gt;            Assignee: Daniel Kulp
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; Please enable wiki renderer for CXF JIRA project. This renderer would allow users to
create better readable issues. See following JIRA doc for more details on the feature: http://confluence.atlassian.com/display/JIRA/Configuring+Rich-Text+Renderers

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2559) Soap11FaultInInterceptor.unmarshalFault for valid SOAP message</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c306431600.1259640621180.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c306431600-1259640621180-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T04:10:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2559?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784041#action_12784041
] 

Daniel Kulp commented on CXF-2559:
----------------------------------


That isn't a valid soap fault message.   The stacktrace element would need to be placed in
a details element.

Also, the faultcode element cannot be empty.  Per the soap 1.1 spec:

The faultcode MUST be present in a SOAP Fault element and the faultcode value MUST be a qualified
name 

Thus, the soap fault message is invalid.

&gt; Soap11FaultInInterceptor.unmarshalFault for valid SOAP message
&gt; --------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2559
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2559
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Soap Binding
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Kees de Kooter
&gt;
&gt; I call a webservice which returns the following (fault) message:
&gt; {code:xml}
&gt; &lt;?xml version="1.0" encoding="UTF-8"?&gt;
&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&gt;   &lt;SOAP-ENV:Body&gt;
&gt;     &lt;SOAP-ENV:Fault&gt;
&gt;       &lt;faultstring&gt;engine::exception: Can't call method "namespaceURI" on an undefined
value at /var/www/html/XXXXX/package/engine/xml_utils.pm line 272.
&gt; &lt;/faultstring&gt;
&gt;       &lt;faultcode/&gt;
&gt;       &lt;stacktrace&gt;Session:eurogroup_ajCqNqED3rZakVOh, Time:2009-11-25 19:43:14,
Version:2.0.76-370, Username:pharos
&gt; /var/www/html/XXXXX/package/engine/exception.pm (53)
&gt; - /var/www/html/XXXXX/package/engine/instanciable.pm(22):engine::exception::create
&gt; - /var/www/html/XXXXX/package/engine/exception.pm(159):engine::instanciable::new
&gt; - /var/www/html/XXXXX/package/engine.pm(788):engine::exception::getExceptionFromError
&gt; - /var/www/html/XXXXX/package/engine.pm(786):(eval)
&gt; - /var/www/html/XXXXX/cgi/rsoapserver.cgi(18):engine::end
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):ModPerl::ROOT::ModPerl::Registry::var_www_html_XXXXX_cgi_rsoapserver_2ecgi::handler
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(204):(eval)
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/RegistryCooker.pm(170):ModPerl::RegistryCooker::run
&gt; - /opt/rsl/usr/lib/perl5/vendor_perl/5.10.0/i686-linux-thread-multi/ModPerl/Registry.pm(31):ModPerl::RegistryCooker::default_handler
&gt; - -e(0):ModPerl::Registry::handler
&gt; - -e(0):(eval)
&gt; &lt;/stacktrace&gt;
&gt;     &lt;/SOAP-ENV:Fault&gt;
&gt;   &lt;/SOAP-ENV:Body&gt;
&gt; &lt;/SOAP-ENV:Envelope&gt;
&gt; {code}
&gt; The message contains valid xml as far a I can tell. Still the following exception is
thrown:
&gt; {noformat}
&gt; Caused by: com.ctc.wstx.exc.WstxParsingException: Received non-all-whitespace CHARACTERS
or CDATA event in nextTag().
&gt;  at [row,col {unknown-source}]: [21,0]
&gt; 	at com.ctc.wstx.sr.StreamScanner.constructWfcException(StreamScanner.java:580)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:453)
&gt; 	at com.ctc.wstx.sr.StreamScanner.throwParseError(StreamScanner.java:438)
&gt; 	at com.ctc.wstx.sr.BasicStreamReader.nextTag(BasicStreamReader.java:1141)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:57)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
&gt; 	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
&gt; 	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:671)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:2205)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:2084)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1982)
&gt; 	at org.apache.cxf.io.CacheAndWriteOutputStream.postClose(CacheAndWriteOutputStream.java:47)
&gt; 	at org.apache.cxf.io.CachedOutputStream.close(CachedOutputStream.java:188)
&gt; 	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
&gt; 	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:637)
&gt; 	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
&gt; 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:239)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:483)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:309)
&gt; 	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:261)
&gt; 	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
&gt; 	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)
&gt; 	... 25 more
&gt; {noformat}

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1657397446.1259640381216.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1657397446-1259640381216-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T04:06:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2563.
------------------------------

       Resolution: Won't Fix
    Fix Version/s: Invalid


It defines a snapshot only repository which is needed for testing various snapshot related
things.   All non-snapshot deps are in central.

&gt; CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to
external repository
&gt; ---------------------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: CXF-2563
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2563
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Build system
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Stevo Slavic
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; [cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom]
contains reference to external (non maven central) repository, so it does not adhere to the
rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in
official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]).
Please check other CXF modules too for the same error, before deploying to maven central.

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (CXF-2565) Enable wiki renderer for CXF</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1658240440.1259640150185.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1658240440-1259640150185-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T04:02:30Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/CXF-2565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784037#action_12784037
] 

Daniel Kulp commented on CXF-2565:
----------------------------------


* test
* test


&gt; Enable wiki renderer for CXF
&gt; ----------------------------
&gt;
&gt;                 Key: CXF-2565
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2565
&gt;             Project: CXF
&gt;          Issue Type: Improvement
&gt;            Reporter: Stevo Slavic
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; Please enable wiki renderer for CXF JIRA project. This renderer would allow users to
create better readable issues. See following JIRA doc for more details on the feature: http://confluence.atlassian.com/display/JIRA/Configuring+Rich-Text+Renderers

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (CXF-2565) Enable wiki renderer for CXF</title>
<author><name>&quot;Daniel Kulp (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1217190708.1259640150198.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1217190708-1259640150198-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T04:02:30Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Daniel Kulp resolved CXF-2565.
------------------------------

       Resolution: Fixed
    Fix Version/s: Invalid
         Assignee: Daniel Kulp

Looks like I've managed to enable it.   Please give it a try to make sure.

&gt; Enable wiki renderer for CXF
&gt; ----------------------------
&gt;
&gt;                 Key: CXF-2565
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2565
&gt;             Project: CXF
&gt;          Issue Type: Improvement
&gt;            Reporter: Stevo Slavic
&gt;            Assignee: Daniel Kulp
&gt;             Fix For: Invalid
&gt;
&gt;
&gt; Please enable wiki renderer for CXF JIRA project. This renderer would allow users to
create better readable issues. See following JIRA doc for more details on the feature: http://confluence.atlassian.com/display/JIRA/Configuring+Rich-Text+Renderers

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (CXF-2567) javac calling problem when creating client in DynamicClientFactory</title>
<author><name>&quot;Wilson Lam (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c365063294.1259634203147.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c365063294-1259634203147-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T02:23:23Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
javac calling problem when creating client in DynamicClientFactory
------------------------------------------------------------------

                 Key: CXF-2567
                 URL: https://issues.apache.org/jira/browse/CXF-2567
             Project: CXF
          Issue Type: Improvement
         Environment: linux
            Reporter: Wilson Lam
            Priority: Minor


When there are multiple JDK on a machine, DynamicClientFactory is currently not supported
to switch javac executable since CXF always call default javac.

The problem comes from compileJavaSrc:
Class - org.apache.cxf.endpoint.dynamic.DynamicClientFactory
Method - compileJavaSrc()
[ Code segment ]
...
        javacCommand[0] = "javac";
        javacCommand[1] = "-classpath";
        javacCommand[2] = classPath;        
        javacCommand[3] = "-d";
        javacCommand[4] = dest;
        javacCommand[5] = "-target";
        javacCommand[6] = "1.5";
...
return javaCompiler.internalCompile(javacCommand, 7);

There is no mechanism in Complier.internalCompile() to detect JAVA_HOME and execute the desired
javac command. Another Complier method "compileFiles()" is better in this way:

Class - org.apache.cxf.common.util.Complier
Method - compileFiles()
[ Code segment ]
...
        if (new File(System.getProperty("java.home") + fsep + platformjavacname).exists())
{
            // check if java.home is jdk home
            javacstr = System.getProperty("java.home") + fsep + platformjavacname;
        } else if (new File(System.getProperty("java.home") + fsep + ".." + fsep + "bin" +
fsep
                            + platformjavacname).exists()) {
            // check if java.home is jre home
            javacstr = System.getProperty("java.home") + fsep + ".." + fsep + "bin" + fsep
                       + platformjavacname;
        }
...

It is possible to add this JAVA_HOME checking in Complier.internalCompile() or DynamicClientFactory.
compileJavaSrc() ?

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



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (CXF-2566) Missing translation for INSTRUMENTATION_REGISTER_FAULT_MSG</title>
<author><name>&quot;Cyrille Le Clerc (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/cxf-issues/200912.mbox/%3c1922016706.1259627300747.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1922016706-1259627300747-JavaMail-jira@brutus%3e</id>
<updated>2009-12-01T00:28:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/CXF-2566?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Cyrille Le Clerc updated CXF-2566:
----------------------------------

    Attachment: CXF-2566.patch

Patch description :
* o.a.c.management.counters.CounterRepository : Add objectName vairable in the logger call
to enhance log message
* o.a.c.management.counters.CounterRepository : Add translation "INSTRUMENTATION_REGISTER_FAULT_MSG=Can't
register counter with object name {0}. {1}"

&gt; Missing translation for INSTRUMENTATION_REGISTER_FAULT_MSG
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: CXF-2566
&gt;                 URL: https://issues.apache.org/jira/browse/CXF-2566
&gt;             Project: CXF
&gt;          Issue Type: Bug
&gt;          Components: Core
&gt;    Affects Versions: 2.2.5
&gt;            Reporter: Cyrille Le Clerc
&gt;            Priority: Minor
&gt;         Attachments: CXF-2566.patch
&gt;
&gt;
&gt; Translation is missing for INSTRUMENTATION_REGISTER_FAULT_MSG in rt/management/src/main/java/org/apache/cxf/management/counters/Messages.properties
.

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



</pre>
</div>
</content>
</entry>
</feed>
