You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by ja...@external.t-mobile.at on 2008/05/14 22:06:46 UTC

jaxws client proxy validation error after recreation [Virus checked]

Hello,

I have a strange error and don't know what could be a reason. Maybe 
someone has an idea.

i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR and 
using CxfServlet and default cxf configuration.
 <value>classpath:META-INF/cxf/cxf.xml</value>
 <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
 <value>classpath:META-INF/cxf/cxf-servlet.xml</value>

When service is invoked, its implementation is calling another webservice 
using client fetched using following code:
                        JaxWsProxyFactoryBean factory = new 
JaxWsProxyFactoryBean();
                        factory.setServiceClass(serviceInterface);
                        factory.setAddress(address);
                        factory.setWsdlLocation(wsdlLocation);
                        factory.setServiceName(QName.valueOf(serviceName
));
                        factory.setProperties(new HashMap<String, 
Object>());
                        factory.getProperties().put(
"schema-validation-enabled", new Boolean(schemaValidationEnabled));
                        T port = (T) factory.create();

It's working perfectly until i call this code again (even if with the same 
parameter values). After second and later initilialization i always ends 
with error:
        at 
org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:218)&#xd;
Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc-elt.1: 
Cannot find the declaration of element 'ns2:rbpMapService2Template'.&#xd;
        at 
org.apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:208)&#xd;
        at 
org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java:79)&#xd;
        at 
org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor.writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
        at 
org.apache.cxf.interceptor.BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
        at 
org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:221)&#xd;
        at 
org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
        at 
org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
        at 
org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)&#xd;
        at 
org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:177)&#xd;
        ... 115 more&#xd;
Caused by: javax.xml.bind.MarshalException
 - with linked exception:
[org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of 
element 'ns2:rbpMapService2Template'.]&#xd;
        at 
com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:331)&#xd;
        at 
com.sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:257)&#xd;
        at 
javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:75)&#xd;
        at 
org.apache.cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java:436)&#xd;
        at 
org.apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:189)&#xd;
        ... 123 more&#xd;
Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the 
declaration of element 'ns2:rbpMapService2Template'.&#xd;
        at 
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown 
Source)&#xd;
        at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown 
Source)&#xd;
        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown 
Source)&#xd;
        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown 
Source)&#xd;
        at 
org.apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown 
Source)&#xd;
        at 
org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown 
Source)&#xd;
        at 
org.apache.xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown 
Source)&#xd;
        at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown 
Source)&#xd;
        at 
com.sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java:124)&#xd;
        at 
com.sun.xml.bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java:102)&#xd;
        at 
com.sun.xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java:302)&#xd;
        at 
com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:680)&#xd;
        at 
com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
        at 
com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
        at 
com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java:305)&#xd;
        at 
com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:312)&#xd;
        at 
com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:71)&#xd;
        at 
com.sun.xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:490)&#xd;
        at 
com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:328)&#xd;
        ... 127 more&#xd;

any idea why?

i tested the same process of creating client proxies for client of 
"wsdl_first" sample, and there it's working without problems (but of 
course, it's completly different setup)

best regards
jano

Antwort: Re: Antwort: Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by ja...@external.t-mobile.at.
ah... crappy proxy server
thanks



Daniel Kulp <dk...@apache.org> 
05/15/2008 22:10
Bitte antworten an
users@cxf.apache.org


An
users@cxf.apache.org
Kopie

Thema
Re: Antwort: Re: jaxws client proxy validation error after recreation 
[Virus checked]








The latest are at the very bottom:


apache-cxf-2.1.1-20080514.205107-3.tar.gz 14-May-2008 22:05 22M
apache-cxf-2.1.1-20080514.205107-3.tar.gz.md5 14-May-2008 22:06 32
apache-cxf-2.1.1-20080514.205107-3.tar.gz.sha1 14-May-2008 22:06 40
apache-cxf-2.1.1-20080514.205107-3.zip

Dan



On May 15, 2008, at 3:54 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello Dan,
>
> i don't see snapshot from last days here
> 
http://people.apache.org/repo/m2-snapshot-repository/org/apache/cxf/apache-cxf/2.1.1-SNAPSHOT/

>
> best regards
> jano
>
>
>
>
> Daniel Kulp <dk...@apache.org>
> 05/14/2008 23:33
> Bitte antworten an
> users@cxf.apache.org
>
>
> An
> users@cxf.apache.org
> Kopie
>
> Thema
> Re: jaxws client proxy validation error after recreation  [Virus 
> checked]
>
>
>
>
>
>
>
> In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it
> faster.   Unfortunately, there are a couple bugs in it that folks have
> found.   I think you hit one of them.   Can you try the latest
> snapshots and see if that helps?  (I deployed a 2.0.7 snap this
> morning.  A 2.1 snap is deploying now.)
>
> Alternatively, call:
> JAXBDataBinding.clearCaches();
> before calling the factory again to clear it out and force recreation.
>
> Dan
>
>
>
> On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at 
> wrote:
>
>> Hello,
>>
>> I have a strange error and don't know what could be a reason. Maybe
>> someone has an idea.
>>
>> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR 
>> and
>> using CxfServlet and default cxf configuration.
>> <value>classpath:META-INF/cxf/cxf.xml</value>
>> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
>> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>>
>> When service is invoked, its implementation is calling another
>> webservice
>> using client fetched using following code:
>>                       JaxWsProxyFactoryBean factory = new
>> JaxWsProxyFactoryBean();
>>                       factory.setServiceClass(serviceInterface);
>>                       factory.setAddress(address);
>>                       factory.setWsdlLocation(wsdlLocation);
>>
>> factory.setServiceName(QName.valueOf(serviceName
>> ));
>>                       factory.setProperties(new HashMap<String,
>> Object>());
>>                       factory.getProperties().put(
>> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>>                       T port = (T) factory.create();
>>
>> It's working perfectly until i call this code again (even if with
>> the same
>> parameter values). After second and later initilialization i always
>> ends
>> with error:
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 218)&#xd;
>> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc-
>> elt.1:
>> Cannot find the declaration of element
>> 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 208)&#xd;
>>       at
>> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java:
>> 79)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .AbstractOutDatabindingInterceptor
>> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:
>> 221)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>>       at
>> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:
>> 73)&#xd;
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 177)&#xd;
>>       ... 115 more&#xd;
>> Caused by: javax.xml.bind.MarshalException
>> - with linked exception:
>> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of
>> element 'ns2:rbpMapService2Template'.]&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 331)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:
>> 257)&#xd;
>>       at
>> javax
>> .xml
>> .bind
>> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:
>> 75)&#xd;
>>       at
>> org
>> .apache
>> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java:
>> 436)&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 189)&#xd;
>>       ... 123 more&#xd;
>> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache
>> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
>> Source)&#xd;
>>       at
>> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache
>> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
>> Source)&#xd;
>>       at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
>> Source)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java:
>> 124)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java:
>> 102)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java:
>> 302)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:
>> 680)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java:
>> 305)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 312)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 71)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:
>> 490)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 328)&#xd;
>>       ... 127 more&#xd;
>>
>> any idea why?
>>
>> i tested the same process of creating client proxies for client of
>> "wsdl_first" sample, and there it's working without problems (but of
>> course, it's completly different setup)
>>
>> best regards
>> jano
>
> ---
> Daniel Kulp
> dkulp@apache.org
> http://www.dankulp.com/blog
>
>
>
>
>
>
>

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog








Re: Antwort: Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by Daniel Kulp <dk...@apache.org>.

The latest are at the very bottom:


apache-cxf-2.1.1-20080514.205107-3.tar.gz 14-May-2008 22:05 22M
apache-cxf-2.1.1-20080514.205107-3.tar.gz.md5 14-May-2008 22:06 32
apache-cxf-2.1.1-20080514.205107-3.tar.gz.sha1 14-May-2008 22:06 40
apache-cxf-2.1.1-20080514.205107-3.zip

Dan



On May 15, 2008, at 3:54 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello Dan,
>
> i don't see snapshot from last days here
> http://people.apache.org/repo/m2-snapshot-repository/org/apache/cxf/apache-cxf/2.1.1-SNAPSHOT/
>
> best regards
> jano
>
>
>
>
> Daniel Kulp <dk...@apache.org>
> 05/14/2008 23:33
> Bitte antworten an
> users@cxf.apache.org
>
>
> An
> users@cxf.apache.org
> Kopie
>
> Thema
> Re: jaxws client proxy validation error after recreation  [Virus  
> checked]
>
>
>
>
>
>
>
> In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it
> faster.   Unfortunately, there are a couple bugs in it that folks have
> found.   I think you hit one of them.   Can you try the latest
> snapshots and see if that helps?  (I deployed a 2.0.7 snap this
> morning.  A 2.1 snap is deploying now.)
>
> Alternatively, call:
> JAXBDataBinding.clearCaches();
> before calling the factory again to clear it out and force recreation.
>
> Dan
>
>
>
> On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at  
> wrote:
>
>> Hello,
>>
>> I have a strange error and don't know what could be a reason. Maybe
>> someone has an idea.
>>
>> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR  
>> and
>> using CxfServlet and default cxf configuration.
>> <value>classpath:META-INF/cxf/cxf.xml</value>
>> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
>> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>>
>> When service is invoked, its implementation is calling another
>> webservice
>> using client fetched using following code:
>>                       JaxWsProxyFactoryBean factory = new
>> JaxWsProxyFactoryBean();
>>                       factory.setServiceClass(serviceInterface);
>>                       factory.setAddress(address);
>>                       factory.setWsdlLocation(wsdlLocation);
>>
>> factory.setServiceName(QName.valueOf(serviceName
>> ));
>>                       factory.setProperties(new HashMap<String,
>> Object>());
>>                       factory.getProperties().put(
>> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>>                       T port = (T) factory.create();
>>
>> It's working perfectly until i call this code again (even if with
>> the same
>> parameter values). After second and later initilialization i always
>> ends
>> with error:
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 218)&#xd;
>> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc-
>> elt.1:
>> Cannot find the declaration of element
>> 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 208)&#xd;
>>       at
>> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java:
>> 79)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .AbstractOutDatabindingInterceptor
>> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:
>> 221)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>>       at
>> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:
>> 73)&#xd;
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 177)&#xd;
>>       ... 115 more&#xd;
>> Caused by: javax.xml.bind.MarshalException
>> - with linked exception:
>> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of
>> element 'ns2:rbpMapService2Template'.]&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 331)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:
>> 257)&#xd;
>>       at
>> javax
>> .xml
>> .bind
>> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:
>> 75)&#xd;
>>       at
>> org
>> .apache
>> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java:
>> 436)&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 189)&#xd;
>>       ... 123 more&#xd;
>> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache
>> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
>> Source)&#xd;
>>       at
>> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache
>> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
>> Source)&#xd;
>>       at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
>> Source)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java:
>> 124)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java:
>> 102)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java:
>> 302)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:
>> 680)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java:
>> 305)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 312)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 71)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:
>> 490)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 328)&#xd;
>>       ... 127 more&#xd;
>>
>> any idea why?
>>
>> i tested the same process of creating client proxies for client of
>> "wsdl_first" sample, and there it's working without problems (but of
>> course, it's completly different setup)
>>
>> best regards
>> jano
>
> ---
> Daniel Kulp
> dkulp@apache.org
> http://www.dankulp.com/blog
>
>
>
>
>
>
>

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog





Antwort: Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by ja...@external.t-mobile.at.
Hello Dan,

i don't see snapshot from last days here
http://people.apache.org/repo/m2-snapshot-repository/org/apache/cxf/apache-cxf/2.1.1-SNAPSHOT/

best regards
jano




Daniel Kulp <dk...@apache.org> 
05/14/2008 23:33
Bitte antworten an
users@cxf.apache.org


An
users@cxf.apache.org
Kopie

Thema
Re: jaxws client proxy validation error after recreation  [Virus checked]







In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it 
faster.   Unfortunately, there are a couple bugs in it that folks have 
found.   I think you hit one of them.   Can you try the latest 
snapshots and see if that helps?  (I deployed a 2.0.7 snap this 
morning.  A 2.1 snap is deploying now.)

Alternatively, call:
JAXBDataBinding.clearCaches();
before calling the factory again to clear it out and force recreation.

Dan



On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello,
>
> I have a strange error and don't know what could be a reason. Maybe
> someone has an idea.
>
> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR and
> using CxfServlet and default cxf configuration.
> <value>classpath:META-INF/cxf/cxf.xml</value>
> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>
> When service is invoked, its implementation is calling another 
> webservice
> using client fetched using following code:
>                        JaxWsProxyFactoryBean factory = new
> JaxWsProxyFactoryBean();
>                        factory.setServiceClass(serviceInterface);
>                        factory.setAddress(address);
>                        factory.setWsdlLocation(wsdlLocation);
> 
> factory.setServiceName(QName.valueOf(serviceName
> ));
>                        factory.setProperties(new HashMap<String,
> Object>());
>                        factory.getProperties().put(
> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>                        T port = (T) factory.create();
>
> It's working perfectly until i call this code again (even if with 
> the same
> parameter values). After second and later initilialization i always 
> ends
> with error:
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 218)&#xd;
> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc- 
> elt.1:
> Cannot find the declaration of element 
> 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 208)&#xd;
>        at
> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java: 
> 79)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .AbstractOutDatabindingInterceptor 
> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java: 
> 221)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>        at
> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java: 
> 73)&#xd;
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 177)&#xd;
>        ... 115 more&#xd;
> Caused by: javax.xml.bind.MarshalException
> - with linked exception:
> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the 
> declaration of
> element 'ns2:rbpMapService2Template'.]&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 331)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java: 
> 257)&#xd;
>        at
> javax 
> .xml 
> .bind 
> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java: 
> 75)&#xd;
>        at
> org 
> .apache 
> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java: 
> 436)&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 189)&#xd;
>        ... 123 more&#xd;
> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache 
> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
> Source)&#xd;
>        at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at
> org 
> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
> Source)&#xd;
>        at
> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
> Source)&#xd;
>        at
> org 
> .apache 
> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
> Source)&#xd;
>        at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
> Source)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java: 
> 124)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java: 
> 102)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java: 
> 302)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java: 
> 680)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java: 
> 305)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 312)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 71)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java: 
> 490)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 328)&#xd;
>        ... 127 more&#xd;
>
> any idea why?
>
> i tested the same process of creating client proxies for client of
> "wsdl_first" sample, and there it's working without problems (but of
> course, it's completly different setup)
>
> best regards
> jano

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog








Re: Antwort: Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by Daniel Kulp <dk...@apache.org>.

The state of the cache only affects stuff not yet created.     
Basically, when you call factory.create() or whatever, the cache is  
queried.

Dan



On May 14, 2008, at 5:39 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello Dan,
>
> i'll test tomorow with 2.1.1-Snapshot
>
> if I use JAXBDataBinding.clearCaches(); will it be without effect on
> client proxies which are already injected to some services and will be
> used later or are in use in moment of clearCaches() ?
>
> jano
>
>
>
>
> Daniel Kulp <dk...@apache.org>
> 05/14/2008 23:33
> Bitte antworten an
> users@cxf.apache.org
>
>
> An
> users@cxf.apache.org
> Kopie
>
> Thema
> Re: jaxws client proxy validation error after recreation  [Virus  
> checked]
>
>
>
>
>
>
>
> In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it
> faster.   Unfortunately, there are a couple bugs in it that folks have
> found.   I think you hit one of them.   Can you try the latest
> snapshots and see if that helps?  (I deployed a 2.0.7 snap this
> morning.  A 2.1 snap is deploying now.)
>
> Alternatively, call:
> JAXBDataBinding.clearCaches();
> before calling the factory again to clear it out and force recreation.
>
> Dan
>
>
>
> On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at  
> wrote:
>
>> Hello,
>>
>> I have a strange error and don't know what could be a reason. Maybe
>> someone has an idea.
>>
>> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR  
>> and
>> using CxfServlet and default cxf configuration.
>> <value>classpath:META-INF/cxf/cxf.xml</value>
>> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
>> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>>
>> When service is invoked, its implementation is calling another
>> webservice
>> using client fetched using following code:
>>                       JaxWsProxyFactoryBean factory = new
>> JaxWsProxyFactoryBean();
>>                       factory.setServiceClass(serviceInterface);
>>                       factory.setAddress(address);
>>                       factory.setWsdlLocation(wsdlLocation);
>>
>> factory.setServiceName(QName.valueOf(serviceName
>> ));
>>                       factory.setProperties(new HashMap<String,
>> Object>());
>>                       factory.getProperties().put(
>> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>>                       T port = (T) factory.create();
>>
>> It's working perfectly until i call this code again (even if with
>> the same
>> parameter values). After second and later initilialization i always
>> ends
>> with error:
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 218)&#xd;
>> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc-
>> elt.1:
>> Cannot find the declaration of element
>> 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 208)&#xd;
>>       at
>> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java:
>> 79)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .AbstractOutDatabindingInterceptor
>> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .interceptor
>> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>>       at
>> org
>> .apache
>> .cxf
>> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:
>> 221)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>>       at
>> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>>       at
>> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:
>> 73)&#xd;
>>       at
>> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:
>> 177)&#xd;
>>       ... 115 more&#xd;
>> Caused by: javax.xml.bind.MarshalException
>> - with linked exception:
>> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of
>> element 'ns2:rbpMapService2Template'.]&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 331)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:
>> 257)&#xd;
>>       at
>> javax
>> .xml
>> .bind
>> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:
>> 75)&#xd;
>>       at
>> org
>> .apache
>> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java:
>> 436)&#xd;
>>       at
>> org
>> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java:
>> 189)&#xd;
>>       ... 123 more&#xd;
>> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
>> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>>       at
>> org
>> .apache
>> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
>> Source)&#xd;
>>       at
>> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
>> Source)&#xd;
>>       at
>> org
>> .apache
>> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
>> Source)&#xd;
>>       at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
>> Source)&#xd;
>>       at
>> com
>> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java:
>> 124)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java:
>> 102)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java:
>> 302)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:
>> 680)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl
>> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java:
>> 305)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 312)&#xd;
>>       at
>> com
>> .sun
>> .xml
>> .bind
>> .v2
>> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:
>> 71)&#xd;
>>       at
>> com
>> .sun
>> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:
>> 490)&#xd;
>>       at
>> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
>> 328)&#xd;
>>       ... 127 more&#xd;
>>
>> any idea why?
>>
>> i tested the same process of creating client proxies for client of
>> "wsdl_first" sample, and there it's working without problems (but of
>> course, it's completly different setup)
>>
>> best regards
>> jano
>
> ---
> Daniel Kulp
> dkulp@apache.org
> http://www.dankulp.com/blog
>
>
>
>
>
>
>

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog





Antwort: Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by ja...@external.t-mobile.at.
Hello Dan,

i'll test tomorow with 2.1.1-Snapshot 

if I use JAXBDataBinding.clearCaches(); will it be without effect on 
client proxies which are already injected to some services and will be 
used later or are in use in moment of clearCaches() ?

jano




Daniel Kulp <dk...@apache.org> 
05/14/2008 23:33
Bitte antworten an
users@cxf.apache.org


An
users@cxf.apache.org
Kopie

Thema
Re: jaxws client proxy validation error after recreation  [Virus checked]







In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it 
faster.   Unfortunately, there are a couple bugs in it that folks have 
found.   I think you hit one of them.   Can you try the latest 
snapshots and see if that helps?  (I deployed a 2.0.7 snap this 
morning.  A 2.1 snap is deploying now.)

Alternatively, call:
JAXBDataBinding.clearCaches();
before calling the factory again to clear it out and force recreation.

Dan



On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello,
>
> I have a strange error and don't know what could be a reason. Maybe
> someone has an idea.
>
> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR and
> using CxfServlet and default cxf configuration.
> <value>classpath:META-INF/cxf/cxf.xml</value>
> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>
> When service is invoked, its implementation is calling another 
> webservice
> using client fetched using following code:
>                        JaxWsProxyFactoryBean factory = new
> JaxWsProxyFactoryBean();
>                        factory.setServiceClass(serviceInterface);
>                        factory.setAddress(address);
>                        factory.setWsdlLocation(wsdlLocation);
> 
> factory.setServiceName(QName.valueOf(serviceName
> ));
>                        factory.setProperties(new HashMap<String,
> Object>());
>                        factory.getProperties().put(
> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>                        T port = (T) factory.create();
>
> It's working perfectly until i call this code again (even if with 
> the same
> parameter values). After second and later initilialization i always 
> ends
> with error:
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 218)&#xd;
> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc- 
> elt.1:
> Cannot find the declaration of element 
> 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 208)&#xd;
>        at
> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java: 
> 79)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .AbstractOutDatabindingInterceptor 
> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java: 
> 221)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>        at
> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java: 
> 73)&#xd;
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 177)&#xd;
>        ... 115 more&#xd;
> Caused by: javax.xml.bind.MarshalException
> - with linked exception:
> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the 
> declaration of
> element 'ns2:rbpMapService2Template'.]&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 331)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java: 
> 257)&#xd;
>        at
> javax 
> .xml 
> .bind 
> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java: 
> 75)&#xd;
>        at
> org 
> .apache 
> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java: 
> 436)&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 189)&#xd;
>        ... 123 more&#xd;
> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache 
> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
> Source)&#xd;
>        at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at
> org 
> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
> Source)&#xd;
>        at
> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
> Source)&#xd;
>        at
> org 
> .apache 
> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
> Source)&#xd;
>        at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
> Source)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java: 
> 124)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java: 
> 102)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java: 
> 302)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java: 
> 680)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java: 
> 305)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 312)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 71)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java: 
> 490)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 328)&#xd;
>        ... 127 more&#xd;
>
> any idea why?
>
> i tested the same process of creating client proxies for client of
> "wsdl_first" sample, and there it's working without problems (but of
> course, it's completly different setup)
>
> best regards
> jano

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog








Re: jaxws client proxy validation error after recreation [Virus checked]

Posted by Daniel Kulp <dk...@apache.org>.
In 2.0.6/2.1, we introduced a cache for the JAXB stuff to make it  
faster.   Unfortunately, there are a couple bugs in it that folks have  
found.   I think you hit one of them.   Can you try the latest  
snapshots and see if that helps?  (I deployed a 2.0.7 snap this  
morning.  A 2.1 snap is deploying now.)

Alternatively, call:
JAXBDataBinding.clearCaches();
before calling the factory again to clear it out and force recreation.

Dan



On May 14, 2008, at 4:06 PM, jan.minaroviech@external.t-mobile.at wrote:

> Hello,
>
> I have a strange error and don't know what could be a reason. Maybe
> someone has an idea.
>
> i'm using spring 2.5.x, jboss 4.0.4, application is bundled as EAR and
> using CxfServlet and default cxf configuration.
> <value>classpath:META-INF/cxf/cxf.xml</value>
> <value>classpath:META-INF/cxf/cxf-extension-soap.xml</value>
> <value>classpath:META-INF/cxf/cxf-servlet.xml</value>
>
> When service is invoked, its implementation is calling another  
> webservice
> using client fetched using following code:
>                        JaxWsProxyFactoryBean factory = new
> JaxWsProxyFactoryBean();
>                        factory.setServiceClass(serviceInterface);
>                        factory.setAddress(address);
>                        factory.setWsdlLocation(wsdlLocation);
>                         
> factory.setServiceName(QName.valueOf(serviceName
> ));
>                        factory.setProperties(new HashMap<String,
> Object>());
>                        factory.getProperties().put(
> "schema-validation-enabled", new Boolean(schemaValidationEnabled));
>                        T port = (T) factory.create();
>
> It's working perfectly until i call this code again (even if with  
> the same
> parameter values). After second and later initilialization i always  
> ends
> with error:
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 218)&#xd;
> Caused by: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc- 
> elt.1:
> Cannot find the declaration of element  
> 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 208)&#xd;
>        at
> org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java: 
> 79)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .AbstractOutDatabindingInterceptor 
> .writeParts(AbstractOutDatabindingInterceptor.java:86)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .interceptor 
> .BareOutInterceptor.handleMessage(BareOutInterceptor.java:68)&#xd;
>        at
> org 
> .apache 
> .cxf 
> .phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java: 
> 221)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:276)&#xd;
>        at
> org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:222)&#xd;
>        at
> org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java: 
> 73)&#xd;
>        at
> org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java: 
> 177)&#xd;
>        ... 115 more&#xd;
> Caused by: javax.xml.bind.MarshalException
> - with linked exception:
> [org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the  
> declaration of
> element 'ns2:rbpMapService2Template'.]&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 331)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java: 
> 257)&#xd;
>        at
> javax 
> .xml 
> .bind 
> .helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java: 
> 75)&#xd;
>        at
> org 
> .apache 
> .cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder.java: 
> 436)&#xd;
>        at
> org 
> .apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.java: 
> 189)&#xd;
>        ... 123 more&#xd;
> Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the
> declaration of element 'ns2:rbpMapService2Template'.&#xd;
>        at
> org 
> .apache 
> .xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
> Source)&#xd;
>        at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> Source)&#xd;
>        at
> org 
> .apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown
> Source)&#xd;
>        at
> org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown
> Source)&#xd;
>        at
> org 
> .apache 
> .xerces.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown
> Source)&#xd;
>        at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown
> Source)&#xd;
>        at
> com 
> .sun.xml.bind.v2.runtime.output.SAXOutput.endStartTag(SAXOutput.java: 
> 124)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind.v2.runtime.output.ForkXmlOutput.endStartTag(ForkXmlOutput.java: 
> 102)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.endAttributes(XMLSerializer.java: 
> 302)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java: 
> 680)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:151)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl 
> $1.serializeBody(ElementBeanInfoImpl.java:185)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java: 
> 305)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 312)&#xd;
>        at
> com 
> .sun 
> .xml 
> .bind 
> .v2 
> .runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java: 
> 71)&#xd;
>        at
> com 
> .sun 
> .xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java: 
> 490)&#xd;
>        at
> com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java: 
> 328)&#xd;
>        ... 127 more&#xd;
>
> any idea why?
>
> i tested the same process of creating client proxies for client of
> "wsdl_first" sample, and there it's working without problems (but of
> course, it's completly different setup)
>
> best regards
> jano

---
Daniel Kulp
dkulp@apache.org
http://www.dankulp.com/blog