Re: Problems calling 2 different web services from the same Eclipse Runtime...

2007-11-22 Thread Tophebboy
Hi! This morning, I've tried putting the initialization stuff in an initialization methode which is called only one. And I still have the same problem... I will try to do what you're tellin later... Thanks. Glen Mazza-2 wrote: BTW, may I ask, why do you need a different wsdl each time? As

Re: Problems calling 2 different web services from the same Eclipse Runtime...

2007-11-22 Thread Tophebboy
I also tried using this: code Service service = Service.create(SERVICE_NAME); String endpointAddress = EDocDocumentumPluginParam.EDocDocumentumPluginParam_EndpointAddress; service.addPort(PORT_NAME, SOAPBinding.SOAP12HTTP_BINDING, endpointAddress); _myPort =

How change XMLInputFactory properties

2007-11-22 Thread Juanjo Vázquez
Please i need help urgently! I have a CXF application deployed over Weblogic 9.2. How could I set XMLInputFactory (woodstox) properties, like for instance SUPPORT_DTD?. Maybe with any parameters in the endpoint definition?. My services are published in this manner: jaxws:endpoint

integration with omcat

2007-11-22 Thread Zohar
Hi, I'm (very) new to CXF. I want to create a WS from a java class I have. I want to deploy it within Tomcat (6). How do I do that? Thanks, Zohar.

Refactoring a WSDL with CXF and Eclipse...

2007-11-22 Thread Tophebboy
Hi! I have to create Web Services with CXF and Eclipse. When I follow the tutorial Java fisrt, everything is OK. But, when I have to refactor my SEI, I lose everything: the wsdl is not updated...Anyway, I tried to Create a new Java First project to create a new SEI, a new WSDL, and I updated the

RE: CXF + ACEGI security - full example

2007-11-22 Thread Davide Gesino
Does anyone have finished this example? I have tried applying these snippets to my code, anyway I was not able to make something work. :-( What are the ACEGI jars to be imported? What are the ACEGI relevant classes to create and store a login context somewhere? Kaleb Walton-2 wrote:

How to get wsdl for java_first_jaxws on Tomcat

2007-11-22 Thread Bruce Z
Hi Guys, I deployed java_first_jaxws from cxf-2.0.3\samples to Tomcat using ant deploy-tomcat, and helloworld.war is deployed to my Tomcat webapp folder. However, when I tried to get it's wsdl from by browser using: http://localhost:8080/helloworld/services/helloWorld?WSDL from Tomcat

Re: CXF+ACEGI setting userid/pw on the client side

2007-11-22 Thread mattmadhavan
Hi David, Thanks for the reply. Yes you are correct. Thats the Java way. I found a posting for a Flex client as well. Please look at this great blog - (It was a great post on lot good stuff - but rather incomplete). http://www.jroller.com/wookets/ I wish this guy makes the examples more

Re: WS-Security Single Sign On

2007-11-22 Thread mattmadhavan
Hi Davide, (I have replied to one of your earlier reply to mine). I found bunch of postings here and few blogs. Please look at ACEGI+ CAS (SSO) fro SSO. Please refer to this great post, http://domagojtechtips.blogspot.com/2007/08/cxf-spring-and-ws-security-putting-it.html explains security

Re: integration with omcat

2007-11-22 Thread Glen Mazza
Java-first has two options with CXF: annotated (JAXWS frontend) and unannotated (simple frontend). I've done WSDL-first with Tomcat: http://www.jroller.com/gmazza/date/20071019 I would look at one of our java-first samples (samples directory of the CXF distribution), and perhaps some of the

RE: Interceptors pulling values out of requests

2007-11-22 Thread Liu, Jervis
Did you really mean the names of parameters or what you want to get is instead the value of incoming parameters? If it is the later, I would say it is only possible to get the parameter values after the data binding marshaling stage. The exact point various depending on the protocol binding

Re: Refactoring a WSDL with CXF and Eclipse...

2007-11-22 Thread Jonathan Huang
Hi Tophebboy, I am not sure which version of eclipse you use. If you use the old one, you could set Build Automatically for your project. Then if you refactor SEI, the related wsdl will be updated automatically. If the Build Automatically is not set, you should build your project

RE: How to get wsdl for java_first_jaxws on Tomcat

2007-11-22 Thread Liu, Jervis
All CXF demos can be deployed into a Servlet container. Please refer to samples directory README for building demos in a servlet container. Cheers, Jervis -Original Message- From: Bruce Z [mailto:[EMAIL PROTECTED] Sent: 2007年11月23日 1:01 To: cxf-user@incubator.apache.org Subject: