Question about using CXF stand-alone

2014-08-11 Thread David Sills
(and also removed) the JAR file itself from the manifest Class-List (though I don't believe this is necessary). I always get the same result, whatever I try. Can anyone help me figure out what is going on and why? Thanks! David Sills

RE: Question about using CXF stand-alone

2014-08-11 Thread David Sills
Never mind. It turned out the maven repository sent me the javadoc for Jetty, not the classes. Once fixed, everything worked fine. Thanks! David Sills -Original Message- From: David Sills [mailto:dsi...@datasourceinc.com] Sent: Monday, August 11, 2014 10:00 AM To: users

FW: HTTPS client configuration using JaxWsProxyFactoryBean

2011-10-19 Thread David Sills
Sorry, this got replied to the wrong address. -Original Message- From: David Sills Sent: Wednesday, October 19, 2011 7:06 AM To: 'Daniel Kulp' Subject: RE: HTTPS client configuration using JaxWsProxyFactoryBean Daniel: Many thanks for the suggestions. I have tried using

Question about XML payload

2011-10-18 Thread David Sills
All: I have a web service that must send a single XML string as its only payload. Is there anything special about this case? Or can I treat it just as any other string? Thanks! David Sills

HTTPS client configuration using JaxWsProxyFactoryBean

2011-10-18 Thread David Sills
All: Is it possible to configure the JaxWsProxyFactoryBean to use HTTPS? It looks as though it should be, but I can't quite figure out how to connect up the bits. I have added this to the Spring configuration file: http:conduit

Tomcat session invalidation

2011-10-10 Thread David Sills
it? Does anyone have any suggestions? David Sills

RE: Tomcat session invalidation

2011-10-10 Thread David Sills
10, 2011 12:16 PM To: users@cxf.apache.org Subject: Re: Tomcat session invalidation That shouldn't be a concern, as SOAP requests are all stateless by default (have REQUEST scope). Glen On 10/10/2011 10:39 AM, David Sills wrote: All: I'm a little confused about something. I'm using Tomcat

RE: Published endpoint URL

2011-10-06 Thread David Sills
Thanks for the comments, all. I hacked the source code for 2.4.2, putting in the fix in the method getAbsoluteAddress that was already in the source code in the repository (and will presumably be there for 2.4.3). This made the problems disappear. Good job! David Sills -Original Message

RE: Non CFX clients for CFX web services

2011-09-30 Thread David Sills
. David Sills -Original Message- From: Tim [mailto:s...@mail.ru] Sent: Friday, September 30, 2011 12:50 AM To: users@cxf.apache.org Subject: RE: Non CFX clients for CFX web services David Sills, thank you for your answer. No. I don't generate client from wsdl. I don't use wsdl at all

RE: Question about web services

2011-09-30 Thread David Sills
confused about, does the soap:address location attribute have to specify https as the protocol? If so, how can I do this with CXF annotations? I can find nothing in the documentation about this, though perhaps I'm just missing something. David Sills -Original Message- From: David Sills

RE: Non CFX clients for CFX web services

2011-09-29 Thread David Sills
expect it there? David Sills -Original Message- From: Tim [mailto:s...@mail.ru] Sent: Thursday, September 29, 2011 2:09 AM To: users@cxf.apache.org Subject: Non CFX clients for CFX web services Hi! I try to use CFX in first time. Before I develop web services using other framworks

Question about web services

2011-09-28 Thread David Sills
a particular service to use HTTPS, even though other services may be using HTTP? Many, many thanks for any advice and ideas. David Sills

RE: Web service style/use

2011-08-31 Thread David Sills
See the SOAPBinding class-level annotation, example: @SOAPBinding(parameterStyle = ParameterStyle.WRAPPED, style = Style.DOCUMENT, use = Use.LITERAL) -Original Message- From: Raj Floyd [mailto:rajfl...@gmail.com] Sent: Wednesday, August 31, 2011 8:51 AM To: users@cxf.apache.org Subject:

Null strings

2011-08-15 Thread David Sills
own validators to test for empty strings and throw out the RI exemplars? David Sills

RE: A question of choice

2011-06-29 Thread David Sills
Thanks, Sergey, I'll give these suggestions some thought. I agree there is probably some refactoring involved, but for the moment the client is happy with the performance of the service and with the simplicity of the API from their client code's point of view (of course, that simply means the

A question of choice

2011-06-27 Thread David Sills
this and the ups and downs you encountered? Thanks in advance! David Sills

Spring autowiring

2011-06-03 Thread David Sills
like to be able to add a new web service by simply dropping it in, either reading configuration information from an XML in the JAR file or by reading annotations. Has anyone tried something like this and gotten it to work? Thanks! David Sills

RE: Spring autowiring

2011-06-03 Thread David Sills
-Ursprüngliche Nachricht- Von: David Sills [mailto:dsi...@datasourceinc.com] Gesendet: Freitag, 3. Juni 2011 13:20 An: users@cxf.apache.org Betreff: Spring autowiring All: I have been using the CXF non-Spring servlet and am now moving to the CXF Spring servlet. I'm not completely familiar

Schemas inside WSDL

2011-05-31 Thread David Sills
what I want? Thanks! David Sills

RE: Schemas inside WSDL

2011-05-31 Thread David Sills
really need to use a highly-specialized schema to express your web service (which I might discourage), you can't use JAX-B in Java-first mode. You can use schema-first, and then enable schema validation. On Tue, May 31, 2011 at 11:21 AM, David Sills dsi...@datasourceinc.com wrote: I'm having some

RE: Schemas inside WSDL

2011-05-31 Thread David Sills
naively thought it might? Did I get the general sense of the objection? David -Original Message- From: David Sills [mailto:dsi...@datasourceinc.com] Sent: Tuesday, May 31, 2011 2:03 PM To: users@cxf.apache.org Subject: RE: Schemas inside WSDL Benson: I take your point that perhaps I'm

RE: Schemas inside WSDL

2011-05-31 Thread David Sills
, David Sills dsi...@datasourceinc.com wrote: Benson: I take your point that perhaps I'm asking more than the tools can do, but am left wondering why you might discourage the use of reusable elements within a web service. Is it not typically done? I was thinking that it would simplify data

RE: Schemas inside WSDL

2011-05-31 Thread David Sills
, at least not as a schema with the appropriate URL), and so the whole thing threw a hissy fit. In the end, I decided you were right and not to try to use schema validation. I'll just validate the old fashioned way on the other end. Many thanks for your help and the clarifications. David Sills

DestinationFactory with JAX-WS?

2011-03-01 Thread David Sills
Hi! I'm a new user of CXF (though a long-time veteran of Java and other WS implementations) and have to admit I find the documentation very confusing. Of course, it's easy to write confusing documentation if the people who write it know what they are doing (they don't realize the things their