Re: scope for saaj-impl changed from runtime to test

2023-05-11 Thread Daniel Kulp
> > > [1] > https://github.com/apache/cxf/blob/470e03a82c05c5f353dde861c2b5442acad4f9ad/core/pom.xml#L151 > > Bernhard Schuhmann > Senior Software Engineer|Jedox -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> Talend - https://talend.com <https://talend.com/>

[ANNOUNCE] Apache CXF 3.4.0 Released!

2020-08-26 Thread Daniel Kulp
The Apache CXF Team is pleased to announce the release of Apache CXF 3.4.0! Apache CXF is a services framework that helps you build and develop web services using standards based API’s and protocols. Services can be created and consumed using the JAX-WS or JAX-RS API’s and can run using a

Re: JaxWsServerFactoryBean for multiple beans

2020-05-07 Thread Daniel Kulp
caches a bunch of things internally so you would need a new factory for each “service class” at the very least. -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: CXF absolutely ignores method arguments

2020-05-04 Thread Daniel Kulp
verride > public Integer run() throws IOException { > return connection.getResponseCode(); > } }); > > Best regards Alex > >> Понедельник, 4 мая 2020, 15:34 +03:00 от Daniel Kulp : >> >> My gut feeling is that you need t

Re: CXF absolutely ignores method arguments

2020-05-04 Thread Daniel Kulp
> >>> /org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:74) >>>>> at org.apache.cxf.core@3.3.6 >>>>> >>> /org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:59) >>>>> a

Re: Robust Asynchronous Message Exchange using WS-Addressing

2019-07-09 Thread Daniel Kulp
t; >> >> > > -- > Henning Blohm > > henning.bl...@zfabrik.de > Linkedin <http://www.linkedin.com/pub/henning-blohm/0/7b5/628> > ZFabrik <http://www.zfabrik.de> > Blog <http://www.z2-environment.net/blog> > Z2-Environment <http://www.z2-environment.eu> > Z2 Wiki <http://redmine.z2-environment.net> > > T: +49 6227 3984255 > F: +49 6227 3984254 > M: +49 1781891820 > > *ZFabrik Software GmbH & Co. KG* > Lammstrasse 2, 69190 Walldorf > Handelsregister: Amtsgericht Mannheim HRA 702598 > Persönlich haftende Gesellschafterin: ZFabrik Verwaltungs GmbH, Sitz > Walldorf > Geschäftsführer: Dr. H. Blohm u. Udo Offermann > Handelsregister: Amtsgericht Mannheim HRB 723699 -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: Setting XML parser features

2019-05-02 Thread Daniel Kulp
it. The WSDL should be set to import only a single XSD with the given namespace, but that XSD could them “xsd:include” the other XSD’s in the same namespace. Thus, only a single schema for the namespace is created, it just happens to include the other xsd fragments. -- Daniel Kulp d

Re: Dealing with Attachments in CXF JAX-WS Clients

2019-04-01 Thread Daniel Kulp
. > > I'm wondering if there's something special I have to do to enable this > service to work from the client perspective? > > Thanks, > > John -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: Async binding not JAX-WS compliant (CXF-7951)

2019-03-20 Thread Daniel Kulp
hat operation.If you use bare style, I believe the signatures should match between metro/cxf. -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: [Reading CXF message content] What is CachedOutputStream's primary purpose and how its different than DelegatingInputStream ?

2019-03-06 Thread Daniel Kulp
TextNode(newId); Header header = new Header(Names.WSA_MESSAGEID_QNAME, el); soapMessage.getHeaders().add(header); That should be all that is necessary. That gets the message ID into the list of headers that MAPCodec will process. You would need to use the right namespaces and such to match the other addressing headers and such, but that should give you an idea how to handle it. -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: [Reading CXF message content] What is CachedOutputStream's primary purpose and how its different than DelegatingInputStream ?

2019-03-05 Thread Daniel Kulp
t word in it) > > Query#2 : > For the requirement of re-readable inputStream, is CachedOutputStream the > best candidate, why not > DelegatingInputStream<https://cxf.apache.org/javadoc/latest/org/apache/cxf/io/DelegatingInputStream.html>, > if yes would you be k

Re: JMS+MTOM OutOfMemoryError

2019-03-01 Thread Daniel Kulp
lot of time on consider that the blob message is an activemq proprietary extension. Dan > > Robert > > > On Thu, 28 Feb 2019 at 16:23, Daniel Kulp <mailto:dk...@apache.org>> wrote: > >> >> This is almost certainly not going to work. The JMS spec do

Re: JMS+MTOM OutOfMemoryError

2019-02-28 Thread Daniel Kulp
tProperties(props); >factory.setFeatures(Collections.singletonList(new > ConnectionFactoryFeature(connectionFactory))); > > factory.setTransportId(JMSSpecConstants.SOAP_JMS_SPECIFICATION_TRANSPORTID); >factory.setServiceClass(DocumentServiceOneWay.class); > > factory.setAd

Re: Lock instances since CXF 3.3.0

2019-02-15 Thread Daniel Kulp
for the patch. I've tried in dev and I can see no major locks. >> Although I haven't tested in production, I'll try to push a build with cxf >> 3.3.0 and this class patched, but I can't promess anything. >> >> Best regards, >> Vicente. >> >> >> >

Re: Lock instances since CXF 3.3.0

2019-02-11 Thread Daniel Kulp
cause contention. I’ve just pushed a change to master (3.3.1-SNAPSHOT) that I hope will resolve this by caching the Class objects (or the fact that the class objects are null if they cannot be loaded). That should eliminate this problem. It would be great if you could give it a try. -- Da

Re: addressing client response Failed to correlate message

2018-11-01 Thread Daniel Kulp
>>>>> I tried to write a we client. I need to send addressing info (its >>>>> already working), but it cant parse the response: >>>>> the error: >>>>> WARN org.apache.cxf.ws.addressing.soap.MAPCodec - Failed to >>>>> correlate message, aborting dispatch. >>>>> >>>>> And the proxy response object is become null. >>>>> >>>>> At the response there is an addressing: "" but its pointed to the >>>>> server's address. ( I dont know its right value or not) >>>>> >>>>> How can I fix this warning, or turn off the addressing handling only for >>>>> the responses? >>>>> >>>>> Thanx >>>>> Csaba >>>>> >>>>> >>> > -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: Tweaking cxf-codegen-plugin Java class generation using binding file – duplicate annotation injected

2018-10-18 Thread Daniel Kulp
> > > > > > > >

Re: Life of Apache CXF JAX-WS from Java 9 & greater

2018-09-11 Thread Daniel Kulp
ate if any of you can provide an archive link of that thread. > > Appreciate your help. Thanks in advance. > > Thanks & Regards, > -Pavan -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: CXF without generated Java objects?

2018-09-07 Thread Daniel Kulp
tly looks like this: > >@Bean >public Endpoint greeterEndpoint() { >EndpointImpl endpoint = new EndpointImpl(cxfBus, SourceProvider()); >endpoint.getFeatures().add(new LoggingFeature()); >endpoint.publish(servicePath); >return endpoint;

Re: CXF without generated Java objects?

2018-08-29 Thread Daniel Kulp
https://github.com/apache/cxf/blob/master/systests/uncategorized/src/test/resources/org/apache/cxf/systest/soap/xslt-server.xml > > Colm. > > >> >> Thanks for your help >> Stephan >> >> >> > > > -- > Colm O hEigeartaigh > > Talend Community Coder > http://coders.talend.com -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: Sending multiple attachments using MTOM

2018-08-29 Thread Daniel Kulp
t; -- > Sent from: http://cxf.547215.n5.nabble.com/cxf-user-f547216.html -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: rest services in servicemix 3.4.0

2018-08-29 Thread Daniel Kulp
> > org.apache.cxf.service.factory.ServiceConstructionException > > > > > > > > > Thanks & Regards , > Ramya > -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: CXF adding all unused namespaces from wsdl into request

2018-08-07 Thread Daniel Kulp
sitive) that if you generate the code without the package annotations, then jaxb won’t output the namespaces until needed.For wsdl2java that would be adding the -xjc-npa flag. However, the size of the messages may go up if it needs to output the same namespace multiple times. --

Re: No binding factory for namespace http://schema.xmlsoap.org/soap registered

2018-07-24 Thread Daniel Kulp
> > > -- > Sent from: http://cxf.547215.n5.nabble.com/cxf-user-f547216.html -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: CXF proxy client with MustUnderstand element

2018-07-20 Thread Daniel Kulp
This is now implemented. The next set of snapshots should have it working. Dan > On Jul 20, 2018, at 12:40 PM, Daniel Kulp wrote: > > The was:addressing feature element does have a addressingRequired=true/false > attribute that I was HOPING would turn on the MustUnder

Re: CXF proxy client with MustUnderstand element

2018-07-20 Thread Daniel Kulp
g.class)); > headers.add(actionHeader); > bindingProvider.getRequestContext().put(Header.HEADER_LIST, headers); > > But I think with the features is more elegant. > > I looking the BindingProvider version of the first solution... > > Thanx > > Csaba > > > ps

Re: WSDiscoveryClient multicast network interface selection

2018-07-19 Thread Daniel Kulp
ices on multiple interfaces. > > Jonas > > > > -- > Sent from: http://cxf.547215.n5.nabble.com/cxf-user-f547216.html -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>

Re: WSDiscoveryClient multicast network interface selection

2018-07-17 Thread Daniel Kulp
blem. The problem is what's not > there. So UDPConduit is responsible in my case. Since I can't see any call > to "setNetworkInterface" in that class, can I assume that it's not possible > to select the interface for WSDiscoveryClient? > > Jonas > > > > -- > Sent

Re: wsfed apereo cas 5

2018-05-25 Thread Daniel Kulp
2.4] >at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:343) > ~[cxf-core-3.2.4.jar:3.2.4] >at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:296) > ~[cxf-core-3.2.4.jar:3.2.4] >at > org.apache.cxf.ws.security.trust.AbstractSTSClient.issue(

Re: 10 years of CXF - Happy Birthday!

2018-04-16 Thread Daniel Kulp
ects/cxf.html for more details). > > Today we have lots of more features, support for additional > specifications and a large user base. > > Thanks to anyone who made this possible and looking forward to another > 10 years :-) > > Cheers > Dennis -- Daniel Kulp dk...@ap

Re: Issue Operation in Binding in StaxDataBindingInterceptor

2018-04-04 Thread Daniel Kulp
e place it in an appropriate file, depending on whether confidential > information is contained in the message, and please treat all MuleSoft > confidential information with heightened protection.* -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Apache CXF 3.1.15 released

2018-03-13 Thread Daniel Kulp
s such as HTTP, >> JMS or JBI. >> >> The Apache CXF team is proud to announce the release of Apache CXF 3.1.15. >> This is a patch release where 57 JIRA items were resolved. >> >> To download Apache CXF 3.1.15 please go to: >> >> http://cxf.apache.org

Re: cxf 3.2 with tomcat 7

2018-03-05 Thread Daniel Kulp
rvlet 3.1 > COh> availability like there is for servlet 3 ? > > COh> Note this was introduced by [CXF-6882] Initial JAX-RS NIO Write support. > > COh> Regards, > COh> Thibaut > > > > > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Disable or filter "caused by" for PhaseInterceptorChain.doDefaultLogging

2017-12-15 Thread Daniel Kulp
nd notify the sender. > Although all reasonable efforts have been made to keep this transmission free > from viruses, the sender will not be liable for damages caused by a > transmitted virus. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Help with configuring web service to match security from WSDL

2017-11-03 Thread Daniel Kulp
There aren’t any ws-security interceptors there. Two things to check: 1) Make sure the cxf-rt-ws-security jar is in the war/service. 2) Make sure you are specifying the WSDL when the service is started.Scroll up in the log and make sure it says something like “creating service from

Re: CXF Client - HTTP Connection pooling

2017-10-20 Thread Daniel Kulp
with CXF client would be helpful. > > Thanks, > Ravishankar > > > > -- > Sent from: http://cxf.547215.n5.nabble.com/cxf-user-f547216.html -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: CXF - Content-Type: multipart/related start attribute support missing

2017-10-05 Thread Daniel Kulp
not > the first body part. > > looks like a bug..? > > > > -- > Sent from: http://cxf.547215.n5.nabble.com/cxf-user-f547216.html -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

[ANNOUNCE] Apache CXF 3.2.0 released!

2017-09-14 Thread Daniel Kulp
The Apache CXF community is proud to announce that CXF 3.2.0 has been released. CXF 3.2.0 contains several new features: - JAX-RS support updated to latest 2.1 specification - New java2swagger Maven plugin - New WS-Transfer implementation - Enhanced tracing support with Zipkin Brave - Support

Re: Newbie snapshot question - 3.1.13-SNAPSHOT

2017-09-11 Thread Daniel Kulp
act > org.apache.cxf:cxf-wadl2java-plugin:jar > :3.1.13-SNAPSHOT -> [Help 1] > > I must be doing something essentially incorrect - can anyone point me in > the right direction? > > thanks -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: WSDL caching

2017-09-08 Thread Daniel Kulp
in a cache so as long as you don’t discard the client and have to re-create it, we don’t need to retrieve it again. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Apache CXF 3.0.x End Of Life Question

2017-08-30 Thread Daniel Kulp
branch and one branch back. So currently that is 3.1.x and 3.0.x. With the release of 3.2.0 real soon now (hopefully within the next week or so), I would expect that 3.0.x will be dropped shortly thereafter. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend C

Re: CXF Servlet NPE in PerRequestFactory.create(PerRequestFactory.java:56)

2017-08-01 Thread Daniel Kulp
23) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:618) > ... > > > > I don't understand what is going wrong. Accessing the WSDL URL in the test > application works just fine. > > > > I've looked at PerRequestFactory.create, but the code means nothing to me. > > > > Can someone suggest what might be going on? > > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: CXF not honoring the Keep Alive connections

2017-06-29 Thread Daniel Kulp
ally the primary reason for this type of behavior. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Factory method 'createTLSServerParametersMap' threw exception; nested exception is java.lang.RuntimeException: Cannot create a secure XMLInputFactory

2017-06-01 Thread Daniel Kulp
om/Factory-method-createTLSServerParametersMap-threw-exception-nested-exception-is-java-lang-RuntimeExcy-tp5780853p5780880.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Setting endpoint in Handler

2017-05-31 Thread Daniel Kulp
> <http://osb01-dev3:6501/Insurance/LossOfOccupationalCapacity> > > 2017-05-31 12:22:16 DEBUG MyHandler:21 - http.connection > 2017-05-31 12:22:16 DEBUG MyHandler:24 - sun.net.www.protocol.http. > HttpURLConnection:http://localhost:6500/Insurance/LossOfOccupationalCapacity > &l

Re: Factory method 'createTLSServerParametersMap' threw exception; nested exception is java.lang.RuntimeException: Cannot create a secure XMLInputFactory

2017-05-31 Thread Daniel Kulp
>maxThreads="50" /> > > > > > I have both stax2-api-3.1.4.jar and woodstox-core-asl-4.4.1.jar in my > classpath, still getting the exception as nested exception is > java.lang.RuntimeException: Cannot create a secure

Re: CXF v2.7.14 JAXB blocked threads and degraded performance

2017-05-02 Thread Daniel Kulp
he.cxf.jaxws.support.JaxWsServiceFactoryBean.create(JaxWsServiceFactoryBean.java:215) >> at >> org.apache.cxf.frontend.AbstractWSDLBasedEndpointFactory.createEndpoint(AbstractWSDLBasedEndpointFactory.java:102) >> at >> org.apache.cxf.frontend.ClientFactoryBean.create(ClientFactoryBean.java:91) >> at >> org.apache.cxf.frontend.ClientProxyFactoryBean.create(ClientProxyFactoryBean.java:157) >> - locked <0x0006d7509a98> (a >> org.apache.cxf.jaxws.JaxWsProxyFactoryBean) >> at >> org.apache.cxf.jaxws.JaxWsProxyFactoryBean.create(JaxWsProxyFactoryBean.java:142) >> - locked <0x0006d7509a98> (a >> org.apache.cxf.jaxws.JaxWsProxyFactoryBean) >> at org.apache.cxf.jaxws.ServiceImpl.createPort(ServiceImpl.java:478) >> at >> org.jboss.wsf.stack.cxf.client.ProviderImpl$JBossWSServiceImpl.createPort(ProviderImpl.java:558) >> at org.apache.cxf.jaxws.ServiceImpl.getPort(ServiceImpl.java:345) >> at org.apache.cxf.jaxws.ServiceImpl.getPort(ServiceImpl.java:336) >> at javax.xml.ws.Service.getPort(Service.java:99) >> >> ... >> >> >> thanks, >> >> Venkat >> > > -- > Daniel Kulp > dk...@apache.org - http://dankulp.com/blog > Talend Community Coder - http://coders.talend.com > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Having multiple versions of CXF deployed in the same OSGi container

2017-05-01 Thread Daniel Kulp
uidelines that you could recommend? > > Anything would be helpful actually :) > > Thank you! > > Best regards, > M.D -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: CXF v2.7.14 JAXB blocked threads and degraded performance

2017-05-01 Thread Daniel Kulp
.JaxWsProxyFactoryBean.create(JaxWsProxyFactoryBean.java:142) >- locked <0x0006d7509a98> (a > org.apache.cxf.jaxws.JaxWsProxyFactoryBean) >at org.apache.cxf.jaxws.ServiceImpl.createPort(ServiceImpl.java:478) >at > org.jboss.wsf.stack.cxf.client.ProviderImpl$JBossWSServiceImpl.createPort(ProviderImpl.java:558) >at org.apache.cxf.jaxws.ServiceImpl.getPort(ServiceImpl.java:345) >at org.apache.cxf.jaxws.ServiceImpl.getPort(ServiceImpl.java:336) >at javax.xml.ws.Service.getPort(Service.java:99) > > ... > > > thanks, > > Venkat > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Undetermined exceptions during web service call

2017-03-07 Thread Daniel Kulp
44:49.655 INFO [ReflectionServiceFactoryBean ] - Creating > Service {http://aamva.org/authentication/3.1.0}AuthenticationService from > WSDL: > jar:file:/C:/dev/tomcat/apache-tomcat-8.0.18/webapps/DLSWeb/WEB-INF/lib/ws-dls-aamva-authentication-1.0.0.jar!/META-INF/resources/Authenticate-Serv

Re: CXF and semantic versioning

2017-02-22 Thread Daniel Kulp
> On Feb 22, 2017, at 1:14 PM, Raymond Auge <raymond.a...@liferay.com> wrote: > > On Wed, Feb 22, 2017 at 12:40 PM, Daniel Kulp <dk...@apache.org> wrote: > >> CXF is a library, but as with any block of code, there are defined entry >> points and t

Re: CXF and semantic versioning

2017-02-22 Thread Daniel Kulp
t; > Sincerely, > - Ray > > [1] https://github.com/osgi/design/tree/master/rfcs/rfc0217 > > On Wed, Feb 22, 2017 at 12:01 PM, Daniel Kulp <dk...@apache.org> wrote: > >> >>> On Feb 22, 2017, at 11:23 AM, Raymond Auge <raymond.a...@liferay.com> >&g

Re: CXF and semantic versioning

2017-02-22 Thread Daniel Kulp
shouldn’t have been exposed to the user or called by them. Not a “4.0” change. Dan > > Sincerely, > - Ray > > On Wed, Feb 22, 2017 at 10:48 AM, Daniel Kulp <dk...@apache.org> wrote: > >> >>> On Feb 21, 2017, at 11:53 AM, Raymond Auge

Re: CXF and semantic versioning

2017-02-22 Thread Daniel Kulp
ecks to the build to > assert semantic versioning? Probably not. The semantic versioning that we care about is if apps written to JAX-WS and/or JAX-RS and use the “normal” configuration mechanisms (spring/blueprint) will re-compile and run without modification. Any API changes within CXF modul

Re: WSI-BP-1.0 R2210 violation: Operation 'book' more than one part bound to body

2017-02-22 Thread Daniel Kulp
s.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaCo >>> ntainer.java:205) >>> at >>> org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute( >> WSDLToJavaContain >>> er.java:165) >>> at >>> org.apache.cxf.tools.wsdlto.WSDLToJavaContain

Re: CXF wsdl2java docs - improvements

2017-02-03 Thread Daniel Kulp
f.xjc-utils >>>> cxf-xjc-runtime >>>> ... >>>> >>>> >>>> >>>> 2.) Q: What if I want to change the generated SEI name? >>>> >>>> The current sample is missing the correct Xpath to specify the >>>> protType@name: >>>> >>>> ... >>>> >>>> >>>> >>>> ... >>>> >>>> sample with full Xpath: >>>> >>>> >>>> >>>> >>>> >>>> >>>> Please let me know if I can edit the Wiki already, then I'll add this >>>> myself. >>>> >>>> Best regards, >>>> >>>> J. Fiala >>>> >>> >> >> > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: proxy authorization error

2017-01-24 Thread Daniel Kulp
(AbstractConduit.java:56) >at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:638) >at > org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62) > > Any help is appreciated > > Regards, > Bilgehan -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: JAX-WS broken on Swa messages? CXF-7131

2016-11-23 Thread Daniel Kulp
In general, if a full mvn based test case is attached to the JIRA, it’s much more likely to be fixed. Spending a lot of time trying to reproduce a problem isn’t something many of use are willing to do. We have tests in the test suite that shows SwA working and the JAX-WS tck’s that

Re: Scalability of Async CXF for JAX-RS

2016-11-11 Thread Daniel Kulp
client and another based on Netty), then it’s different. The underlying transport is non-blocking so we can have 100s of requests outstanding and the underlying transport library handles the NIO selector things and such so we aren’t consuming extra threads. -- Daniel Kulp dk...@apache.org - http://

Re: Unmarshalling Error: unexpected element

2016-09-23 Thread Daniel Kulp
not crash? >> I would send me an email, if an attribute is added, so that I can add it >> then to my code, to consider it. >> >> Thank you in advance. >> >> Matthew >> >> >> >> -- >> View this message in context: >> http:

Re: Unmarshalling Error: unexpected element

2016-09-23 Thread Daniel Kulp
rror" at runtime, so that my program does not crash? > I would send me an email, if an attribute is added, so that I can add it > then to my code, to consider it. > > Thank you in advance. > > Matthew > > > > -- > View this message in context: > http:

Re: SAP Webservice: None of the policy alternatives can be satisfied

2016-09-21 Thread Daniel Kulp
AP-Webservice-None-of-the-policy-alternatives-can-be-satisfied-tp5772704p5772933.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://coders.talend.com <http://coders.talend.com/>

Re: None of the alternatives error while invoking service having policy with empty ExactlyOne

2016-09-16 Thread Daniel Kulp
dpoint.ClientImpl.invoke(ClientImpl.java:423) > at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:326) > at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:279) > at org.apache.cxf.endpoint.ClientImpl.invokeWrapped(ClientImpl.java:314) > at org.apache.cxf.jaxws.Dispatc

Re: Metrics feature doesn't count faults on provider side

2016-08-25 Thread Daniel Kulp
7215.n5.nabble.com/Metrics-feature-doesn-t-count-faults-on-provider-side-tp5771827.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://coders.talend.com <http://coders.talend.com/>

Re: CXF release 3.1.7

2016-07-29 Thread Daniel Kulp
(target?) date for this release? I am interested in using the >>> Spring Boot starter. For now I am building against the snapshot. >>> >>> If there is a guide for using Spring Boot in CXF 3.1.6 a reference to it >>> would be appreciated, as a back up if 3.1.7 is n

Re: CXF release 3.1.7

2016-07-25 Thread Daniel Kulp
s a back up if 3.1.7 is not going to be available > for a while. > > Thanks! > Adam -- Daniel Kulp dk...@apache.org <mailto:dk...@apache.org> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://coders.talend.com <http://coders.talend.com/>

Re: Enable JMX for jetty transport

2016-07-22 Thread Daniel Kulp
> On Jul 7, 2016, at 4:54 AM, ncasaux wrote: > > Hello, > > Does anyone have any idea regarding this ? Thanks! This should be automatic providing the appropriate jetty-jmx jar is found on the class path. We detect if it is and wire in the the mbeans. Dan

Re: CXF Spring Boot Starter Release?

2016-07-22 Thread Daniel Kulp
Soon…. I was hoping to build it this week but had a drive failure and spent a bit of time rebuilding my computer instead of preparing for a release. :( Dan > On Jul 22, 2016, at 6:38 AM, Christopher Gardner > wrote: > > When might the first release be available?

Re: Help Wanted: WSS SOAP PKI encryption with CXF

2016-06-15 Thread Daniel Kulp
there is a wsdl including wsse elements. I'm just not at liberty >> to share it publicly. I'm not sure it includes a ws-policy but I can >> investigate. >> >> Thanks Dan! >> >> Sent from my iPhone >> >>> On Jun 15, 2016, at 4:14 PM, Daniel Kulp

Re: Help Wanted: WSS SOAP PKI encryption with CXF

2016-06-15 Thread Daniel Kulp
ppreciated- I can try to answer > any questions about our needs and requirements to the best of my ability, > but at this point I'm just looking to know if the CXF community can support > this type of use case. > > > TIA! -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: com.sun.xml.internal.ws.client.ClientTransportException: The server sent the status code HTTP 406 : Not Acceptable

2016-05-27 Thread Daniel Kulp
he JDK. From our perspective, we just need to make sure it works OK with CXF and if not, fix any CXF bug that might be exposed. If you want it working with the JDK JAX-WS, you would need to go to the jax-ws community at Oracle and report it there. -- Daniel Kulp dk...@apache.org -

Re: com.sun.xml.internal.ws.client.ClientTransportException: The server sent the status code HTTP 406 : Not Acceptable

2016-05-26 Thread Daniel Kulp
TCP proxy via the normal system properties. Example: -Dhttp.proxyHost=localhost -Dhttp.proxyPort=8080 or similar so that the data would go through the tcp monitor. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: com.sun.xml.internal.ws.client.ClientTransportException: The server sent the status code HTTP 406 : Not Acceptable

2016-05-26 Thread Daniel Kulp
e.com/com-sun-xml-internal-ws-client-ClientTransportException-The-server-sent-the-status-code-HTTP-406-Note-tp5768944p5768959.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: cxf-codegen-plugin org.apache.cxf.tools.common.DataTypeAdapter

2016-04-28 Thread Daniel Kulp
t’s probably supposed to be updated to: org/apache/cxf/xjc/runtime/DataTypeAdapter which is in the cxf-xjc-runtime jar. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: javax.xml.ws.Service getPort without interface

2016-04-01 Thread Daniel Kulp
bject that implements the given interface. Without it, what would the return object be? -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: NullPointerException due to missing JAXBContext in DataWriterImpl(CXF Version: 2.7.3)

2016-03-07 Thread Daniel Kulp
Why so much of time consumption in No Trust Decider for Conduit > & Sending POST Message log statements? > && > 2.Why NPE in SoapOutInterceptor which happens just before above > statements? > > If any more information required please let me know and any direction would > be of great help. > > > Thanks, > Vishal -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: LoggingInInterceptor consuming time for big messages

2016-02-29 Thread Daniel Kulp
} catch (Exception e) { >throw new Fault(e); >} >} >log(buffer.toString()); > > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/LoggingInInterceptor-consuming-time-for-big-messages-tp5766419.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: The SOAP action specified on the message, '', does not match the HTTP SOAP Action

2016-02-12 Thread Daniel Kulp
tionListener.java:175) > at > com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217) > at > com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161) > at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) > at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) > at > com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775) > at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1865) > > Please help me out here. > > > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/The-SOAP-action-specified-on-the-message-does-not-match-the-HTTP-SOAP-Action-tp562966p5765834.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: The SOAP action specified on the message, '', does not match the HTTP SOAP Action

2016-02-12 Thread Daniel Kulp
ctionInitialReadCallback.java:113) > at > com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175) > at > com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217) > at > com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161) > at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) > at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) > at > com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775) > at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1865) > > Please help me out here. > > > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/The-SOAP-action-specified-on-the-message-does-not-match-the-HTTP-SOAP-Action-tp562966p5765834.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: The SOAP action specified on the message, '', does not match the HTTP SOAP Action

2016-02-12 Thread Daniel Kulp
c/eClaimsHL7v3InterfaceSvc.svc > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/The-SOAP-action-specified-on-the-message-does-not-match-the-HTTP-SOAP-Action-tp562966p5765855.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp

Re: CXF remove some namespaces

2016-01-14 Thread Daniel Kulp
>>> >>> >>> Hi >>> >>> >>> >>> >>> >>> >>> that is : >>> >>> 1) >> xmlns:ns6="http://xml.afterbit.com/20

Re: CXF Asynchronous call unsual delay

2016-01-14 Thread Daniel Kulp
s may be easier. 3) Switch to using CXF’s async based transport. Pretty much just add cxf-rt-transports-http-hc and the async client deps and it should work. This uses the Apache HTTP AsyncClient instead of the JDK provide URLCOnnection which should allow true async waiting without he proble

Re: How to configure multi response at Client side with UDP transport

2016-01-14 Thread Daniel Kulp
se help me ? The best place to look would be in the source for the WSDiscoveryClient where it does a probe. Basically, you need two things: 1) You must use the async methods and use a callback that can handle being called multiple times. 2) You then specify “udp.multi.response.timeout” property on

Re: Async in OSGi / pax-web

2015-12-14 Thread Daniel Kulp
ieve pax-web always assumes that async is available. Not 100% positive on that though. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: CXF incorrect WSDL automatically generated ? Please help !

2015-12-09 Thread Daniel Kulp
>>> Felix Mercader >>> >>> >>> >>> >>> >>> >>> -- >>> View this message in context: >>> http://cxf.547215.n5.nabble.com/CXF-incorrect-WSDL-automatically-gene >>> r ated-Please-help-tp5763489.html Sent fr

Re: CXF incorrect WSDL automatically generated ? Please help !

2015-12-03 Thread Daniel Kulp
>>> >>>> This attribute is not appearing to me when deploying in WebLogic. Is this >>>> the desired behaviour ? is it a bug ? >>>> >>>> In other words, the question I really want to ask: can I do any change in >>>> the java c

Re: CXF incorrect WSDL automatically generated ? Please help !

2015-12-02 Thread Daniel Kulp
hese 3 >>> parameters are *AGAIN* at the end in the body part ??? I don't want >>> them in the body part, I want them only in the header. >>> >>> Any idea why this is happening ? Is that normal ? is it a bug ? Thank >>> you for your help ! >>> >>> thanks >>> Felix Mercader >>> >>> >>> >>> >>> >>> >>> -- >>> View this message in context: >>> http://cxf.547215.n5.nabble.com/CXF-incorrect-WSDL-automatically-gene >>> r ated-Please-help-tp5763489.html Sent from the cxf-dev mailing list >>> archive at Nabble.com. >> >> The information in this message may be proprietary and/or confidential, and >> protected from disclosure. If the reader of this message is not the intended >> recipient, or an employee or agent responsible for delivering this message >> to the intended recipient, you are hereby notified that any dissemination, >> distribution or copying of this communication is strictly prohibited. If you >> have received this communication in error, please notify First Data >> immediately by replying to this message and deleting it from your computer. > > The information in this message may be proprietary and/or confidential, and > protected from disclosure. If the reader of this message is not the intended > recipient, or an employee or agent responsible for delivering this message to > the intended recipient, you are hereby notified that any dissemination, > distribution or copying of this communication is strictly prohibited. If you > have received this communication in error, please notify First Data > immediately by replying to this message and deleting it from your computer. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: CXF incorrect WSDL automatically generated ? Please help !

2015-12-02 Thread Daniel Kulp
context: >> http://cxf.547215.n5.nabble.com/CXF-incorrect-WSDL-automatically-gener >> ated-Please-help-tp5763489.html Sent from the cxf-dev mailing list >> archive at Nabble.com. > > The information in this message may be proprietary and/or confidential, and > protected from disclosure. If the reader of this message is not the intended > recipient, or an employee or agent responsible for delivering this message to > the intended recipient, you are hereby notified that any dissemination, > distribution or copying of this communication is strictly prohibited. If you > have received this communication in error, please notify First Data > immediately by replying to this message and deleting it from your computer. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: cxf-codegen-plugin 3.1.x & maven2

2015-11-24 Thread Daniel Kulp
ndividual named. If you are not the named addressee you should not > disseminate, distribute or copy this e-mail. Please notify the sender > immediately by e-mail if you have received this e-mail by mistake and delete > this e-mail from your system. > -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: How conduit is used?

2015-11-24 Thread Daniel Kulp
If you set it to something else, the responses may never make it back to the requesting application. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Equivalent of Message.setContextProperty

2015-11-23 Thread Daniel Kulp
.class, Object.class); > m.setAccessible (true); > m.invoke (message, new Object [] {"auth.spnego.useKerberosOid", "true"}); > > Is there a better way to do this ? This should have always been done with a simple: message.put("auth.spnego.useKe

Re: why doesnt cxf generator maven plugin's generate-sources not work from eclipse?

2015-11-20 Thread Daniel Kulp
stuff embedded so it should be picking up those events and regenerating the stubs and refreshing the directories. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: why doesnt cxf generator maven plugin's generate-sources not work from eclipse?

2015-11-20 Thread Daniel Kulp
> On Nov 20, 2015, at 11:09 AM, Nicholas DiPiazza <nicholas.dipia...@gmail.com> > wrote: > > Ohh. I'm on CXF 2.1.3. So that is my problem eh? Yes. Upgrade. :-) Dan > > -Original Message- > From: Daniel Kulp [mailto:dk...@apache.org] > Sent:

Re: Equivalent of Message.setContextProperty

2015-11-15 Thread Daniel Kulp
setContextualProperty(SecurityConstants.USERNAME_TOKEN_VALIDATOR,tokenValidator); > > from within an AbstractPhaseInterceptor. This method no longer exists. Is > there an equivalent? > > John -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Java-first incomplete wsdl generated

2015-10-27 Thread Daniel Kulp
otations, how can I fix wsdl >>> being generated? >>> >>> Thanks in advance! >>> >>> >>> [1] >>> https://github.com/apache/openmeetings/blob/trunk/singlewebapp/openmeetings-web/src/main/webapp/WEB-INF/classes/openmeetings-applicat

Re: Inline attachments sent as MTOM

2015-10-27 Thread Daniel Kulp
is email (including any attachments) may contain information which is > privileged, confidential, or protected. If you are not the intended > recipient, note that any disclosure, copying, distribution, or use of the > contents of this message and attached files is prohibited. If you have > received this email in error, please notify the sender and delete this email > and any attached files. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: Why I get No DestinationFactory was found for the namespace when using JDK6?

2015-10-22 Thread Daniel Kulp
ack in there that is hidden or something preventing the SOAP binding from loading. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

Re: ReflectionServiceFactoryBean performance

2015-10-08 Thread Daniel Kulp
ceFactoryBean.java:527) > [INFO] [talledLocalContainer] at > org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean.create(ReflectionServiceFactoryBean.java:261) > > Config: > > > > > > > > > > Presumably the jaxb context i have init'ed myself is not quite what cxf is > expecting ? > &g

Re: ReflectionServiceFactoryBean performance

2015-10-07 Thread Daniel Kulp
plication that contains your global JAXBContext. In the spring config, you can do: ;;; inject whatever you need in here Dan > > Jorg > > > > On Tue, Oct 6, 2015 at 3:58 PM Daniel Kulp <dk...@apache.org> wrote: >

Re: CXF Weird Discovery error

2015-10-07 Thread Daniel Kulp
kqueue-5) Caused by: > java.lang.IllegalArgumentException: prefix wsdp is not bound to a namespace > > 11:52:42,000 ERROR [stderr] (default-workqueue-5) at > com.sun.xml.bind.DatatypeConverterImpl._parseQName(DatatypeConverterImpl.java:369) > > 11:52:42,000 ERROR [stderr] (default-workqueue-5) at > com.sun.xml.bind.v2.model.impl.RuntimeBuiltinLeafInfoImpl$23.parse(RuntimeBuiltinLeafInfoImpl.java:817) > > 11:52:42,000 ERROR [stderr] (default-workqueue-5) ... 41 more > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/CXF-Weird-Discovery-error-tp5761509.html > Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp dk...@apache.org - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com

  1   2   3   4   5   6   7   8   9   10   >