Re: Client Apache CXF to a Windows webservice

2015-03-13 Thread Pravin
Carlos Oliva CarlosO@... writes: Hi Colm, Would you know which jars I would need to update in JBoss6 installation (I believe it works with v2.3.1 of Apache CXF) to work with v2.7.8? The java stand-alone java client works fine with v2.7.8 of Apache CXF. When I cut and paste the code in a

Adding Advice in CXF 2.7.13 STS

2015-03-13 Thread Stephen.CTR.Chappell
I am revisiting some STS code I was working on some time ago and found a sort of major bug. I have a requirement to issue tokens with Advice when my RST has an ActAs. At the time, I implemented that using a SAMLCustomHandler derivative, which seemed to work until I started writing validators.

Re: How to use HTTP Digest when communicating with a WebService using JaxWsProxyFactoryBean

2015-03-13 Thread Tobse
According to http://osdir.com/ml/dev-cxf-apache/2013-11/msg00044.html http-digest doesn't work since Apache CXF 2.7.4 (I am using ApacheCXF 3.0.3 from 2015-01-13). All other search results on google do it exactly the same way as the link above and I do. Maybe a bug? -- View this message in

Re: Configuring JSON provider with CXF

2015-03-13 Thread Aki Yoshida
Hi Sergey, thanks the info ;-) I saw com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider is loaded but not selected as candidates during the matching process. See if switching to 2.7.15 does the work. regards, aki 2015-03-13 11:16 GMT+01:00 Sergey Beryozkin sberyoz...@gmail.com: Hi Aki, Ron

Re: Configuring JSON provider with CXF

2015-03-13 Thread Sergey Beryozkin
Hi Aki, Ron This is actually available in https://github.com/swagger-api/swagger-core/blob/develop_2.0/samples/java-jaxrs-cxf/src/main/resources/applicationContext.xml (the endpoint creation looks a bit complex, jaxrs:endpoint, possibly with the auto discovery enabled would look much

Re: How to use HTTP Digest when communicating with a WebService using JaxWsProxyFactoryBean

2015-03-13 Thread Tobse
I searched the whole web for a solution, but couldn't find any. Any ideas? Thank you in advance. -- View this message in context: http://cxf.547215.n5.nabble.com/How-to-use-HTTP-Digest-when-communicating-with-a-WebService-using-JaxWsProxyFactoryBean-tp5754858p5755046.html Sent from the

Re: Configuring JSON provider with CXF

2015-03-13 Thread Aki Yoshida
This is likely caused by the missing json provider in the jaxrs.providers list, e.g. in web.xml init-param param-namejaxrs.providers/param-name param-valuecom.fasterxml.jackson.jaxrs.json.JacksonJsonProvider/param-value /init-param or some dependency is

Re: New to Fediz -Update

2015-03-13 Thread Colm O hEigeartaigh
Are you sure that the private key is in truststore_dev.jks? It seems unusual to store a private key in a file called truststore. If you do a keytool -list -keystore truststore_dev.jks -v, compare the issuer + serial no. to the X509Data structure received in the message from the IdP. Colm. On

Connect Fediz to my database of users

2015-03-13 Thread John Cleber Jaraceski
Hello. I would like to connect Fediz IDP to my database of users. But I really don't know how to begin. Can somebody help me, please. John

Connect Rediz IDP to my database of users

2015-03-13 Thread John Cleber Jaraceski
Hello. I would like to connect Rediz IDP to my database of users. But I really don't know how to begin. Can somebody help me, please. John

Re: Configuring JSON provider with CXF

2015-03-13 Thread Ron Ratovsky
Who would have thought the solution would be to just upgrade CXF. Thank you very much for the info! I'll have to take a look at the SwaggerFeature you referred to. For now we're trying to document how to use Swagger without vendor-specific implementations but I'm very happy to see that those

Re: Connect Fediz to my database of users

2015-03-13 Thread John Jaraceski
Jan, In this case I'll change the cxf-transport.xml : remove the two endpoints to realmA and realmB, add the referente to my new endpoint. jaxws:endpoint id=transportSTSUT endpointName=ns1:TransportUT_Port serviceName=ns1:SecurityTokenService

AW: Connect Fediz to my database of users

2015-03-13 Thread Jan Bernhardt
Hi John, this would not be a good idea ;-) You will need the transport endpoint for the IDP to issue SAML tokens based on the cached SAML token at the IDP. The IDP needs to cache a SAML token for the user, because otherwise you could not provide single sign on and the user would have to enter

AW: Connect Fediz to my database of users

2015-03-13 Thread Jan Bernhardt
Hi John, you need to update the authentication validator at the STS. You can either use a JAAS DB module, or write your own validator. Best regards Jan -Ursprüngliche Nachricht- Von: John Cleber Jaraceski [mailto:john.jarace...@gmail.com] Gesendet: Freitag, 13. März 2015 13:48 An:

Re: Configuring JSON provider with CXF

2015-03-13 Thread Aki Yoshida
hi sergey, ron, think it's working with that change. regards, aki 2015-03-13 11:33 GMT+01:00 Aki Yoshida elak...@gmail.com: Hi Sergey, thanks the info ;-) I saw com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider is loaded but not selected as candidates during the matching process. See if

Re: Configuring JSON provider with CXF

2015-03-13 Thread Sergey Beryozkin
Hi Aki Thanks a million for spending your time on validating it :-), Cheers, Sergey On 13/03/15 11:16, Aki Yoshida wrote: hi sergey, ron, think it's working with that change. regards, aki 2015-03-13 11:33 GMT+01:00 Aki Yoshida elak...@gmail.com: Hi Sergey, thanks the info ;-) I saw