Re: Does CXF support multiple endpoint for single wsdl now?

2011-12-29 Thread Willem Jiang
On Fri Dec 30 11:49:13 2011, xuhb wrote: I known, thanks a lot; If I really need one service with multiply port enabled, I think I could wrote a custom proxy service which just manipulate the WSDL and mapping the ports's address to different endpoint published by CXF; Yes, it is more easy to

Re: Localized characters in path

2011-12-29 Thread Bhaskar
Hi, similar thing is working fine for non Unicode characters. but we are getting the problems with POST request if we have any unicode characters. FYI...if we have Unicode characters in GET request it is working fine.. Regards, Bhaskar On Thu, Dec 29, 2011 at 8:01 PM, Sergey Beryozkin wrote: >

Re: Does CXF support multiple endpoint for single wsdl now?

2011-12-29 Thread xuhb
I known, thanks a lot; If I really need one service with multiply port enabled, I think I could wrote a custom proxy service which just manipulate the WSDL and mapping the ports's address to different endpoint published by CXF; Thanks a lot; - Original Message - From: "Glen Mazza" T

Re: Custom SOAP header

2011-12-29 Thread Glen Mazza
Have you confirmed, via Wireshark[1] or similar tool, that the service is indeed receiving the client message with those soap:header elements? I'm not sure if the client is actually sending what it claims to be sending. In my JAX-WS handler tutorial[2] service-side SOAPHandler.java class (St

CXF 2.5.1 problem with httpj:threadingParameters

2011-12-29 Thread Jesse Pangburn
Hi, I have the following portion of a Spring configuration file that I was using with CXF 2.4.2: There is a corresponding jaxws:endpoint that listens to a url on port 9003. When I updated to CXF 2.5.1, the server was a

Re: CXF - WS Security - Signature X509 - signatureKeyIdentifier - key identifier type

2011-12-29 Thread fernando.las
I tried again and it worked fine. (At least with ) But i'm still looking for cxf official documentation about this. Thanks. -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-WS-Security-Signature-X509-signatureKeyIdentifier-key-identifier-type-tp5105996p5108378.ht

Re: Custom SOAP header

2011-12-29 Thread Aki Yoshida
it looks like you got the header object as a DOM element and it has likely its intended value. object = {com.sun.org.apache.xerces.internal.dom.ElementNSImpl@4427}"[CustomHeader: null]" I'm not sure if you are talking about that printed "null". In that case, this simply means you have an element

Re: ExceptionMapper choosing the wrong mapper

2011-12-29 Thread Sergey Beryozkin
Hi Alex, Sorry for a delay, I've finally tried to get more optimized hierarchies supported but I'm not sure we can get a handle on this top-level parameter, here is the test code: private static class RuntimeExceptionMapper1 extends AbstractTestExceptionMapper { } private st

Re: CXF w/WS-Security 2.5.0 + WebSphere 7.0

2011-12-29 Thread Glen Mazza
Unfortunately my blog entry was vague--I'm unsure whether I loaded it as a WAR or as an EAR--the WebLogic article it refers to states that either will work. You might wish to put nothing in WEB-INF/lib and try creating your web service as an EAR (it will go as a /lib subfolder under that level

Custom SOAP header

2011-12-29 Thread dkundo
Hi, I'm having the following problem: The client (WCF/.NET) sends a custom soap header with some value but on the server side the header's value is null. This is the SOAP message sent by client: http://schemas.xmlsoap.org/soap/envelope/";> *http://schemas.devleap.com/CustomHeader";> 3859e0ee-40

Re: Localized characters in path

2011-12-29 Thread Sergey Beryozkin
Hi On 29/12/11 13:52, Bhaskar wrote: Hi, My URL looks like this http://server-name/name = "᧭᧮᧭᧮" Note the request type is POST. those characters are unicode characters I guess you need to do something like @Path("name={value}") Let me know if it works please Sergey Regards, Bhaskar On

setting custom fault code on exceptions

2011-12-29 Thread Guy Pardon
Hi, What is the easiest way to set the "Code" element of an exception thrown by my @WebMethod? Thanks Guy

Re: Matrix Parameter added to the path in the middle doesn't work

2011-12-29 Thread Sergey Beryozkin
Hi, have a look here please: http://svn.apache.org/viewvc?rev=1225538&view=rev (also merged to 2.4.x and 2.3.x branches) In this test, we have a context set to 'webapp', jaxrs:address - to "/rest", and BookStoreSimple has JAX-RS annotations which make it identical, as far as the match is conc

Re: Localized characters in path

2011-12-29 Thread Bhaskar
Hi, My URL looks like this http://server-name/name = "᧭᧮᧭᧮" Note the request type is POST. those characters are unicode characters Regards, Bhaskar On Thu, Dec 29, 2011 at 5:07 PM, Sergey Beryozkin wrote: > Redirecting to the users list > > > On 29/12/11 11:36, Sergey Beryozkin wrote: > >> Hi

Re: validation error

2011-12-29 Thread TON
it also is not occurred in cxf 2.4.2 -- View this message in context: http://cxf.547215.n5.nabble.com/validation-error-tp5101800p5107205.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: specify the output file for CXF logging

2011-12-29 Thread chimaira
Hi Daniel , and thank you for reply, I v tried this @Logging(outLocation = "file:outsoap.log", inLocation = "file:outsoap.log", pretty = true) @Logging(outLocation = "file:c:\\outsoap.log", inLocation = "file:c:\\outsoap.log", pretty = true) but doesnt work. I can t find the logs files with out

Re: Sub-resources and relative URIs

2011-12-29 Thread Sergey Beryozkin
Hi, On 29/12/11 00:26, Jeff Wang wrote: I have a resource and a sub resource... @Path(/user) @Service public UserServiceImpl { @Path("{userId}/contact") public IContactService getContactService(@PathParam("userId") Long userId); } @Service public ContactServiceImpl { @POST

Re: Localized characters in path

2011-12-29 Thread Sergey Beryozkin
Redirecting to the users list On 29/12/11 11:36, Sergey Beryozkin wrote: Hi On 29/12/11 04:10, Bhaskar wrote: Hello All, How to handle the localized characters in Path? We are implementing RESTful Web services, we need to pass localized characters in path? How the actual URI will look like,

How to call 2 CXF dynamic clients?

2011-12-29 Thread miloslavskacel
A try to call two CXF-2.5.0 dynamic clients fails with: org.apache.cxf.interceptor.Fault: Marshalling Error: net.webservicex.GetWeather is not known to this context package my.test; import javax.xml.namespace.QName; import org.apache.cxf.endpoint.Client; import org.apache.cxf.jaxws.endpoint.

Re: CXF+MTOM attach multiple files

2011-12-29 Thread Son Tung Nguyen
Hello Dan, i updated my CXF to lastest version and it seems to work now. I used version 2.3 before. Thanks Tung Le 29 déc. 2011 03:50, "Daniel Kulp" a écrit : > > We have a system test that sends 7 attachments so this definitely should > work. > Any chance you can create a small testcase? > > D