Re: Java client .NET service Response: Error: Value cannot be null. Parameter name: s

2012-03-01 Thread mahesh
The sequence of the request parameters was an issue once corrected all went well. So remember to compare the .net wsdl parameters sequence for the webservice. Hope this helps others. Mahesh -- View this message in context: http://cxf.547215.n5.nabble.com/Java-client-NET-service-Response-Error

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

2011-12-28 Thread Mahesh Koli
that class cast exception. Using elimination method, I was able to have the correct dependencies in the classpath. Maybe you have already tried this Mahesh On Wed, Dec 28, 2011 at 7:17 PM, Brian Hayward wrote: > Thanks for replying. > > I found your article before, I also followed Thaker

Re: Publish with Spring without web

2011-08-29 Thread Mahesh Koli
UT meaning Unit Test? Its all configuration driven with no direct dependency on Spring Test. I don't see how it cannot be adopted for any other spring config setup Mahesh On Mon, Aug 29, 2011 at 2:46 AM, Raj Floyd wrote: > Thanks. > > This uses special Spring UT class. Is th

Re: Publish with Spring without web

2011-08-28 Thread Mahesh Koli
Check out this posting http://testablejava.blogspot.com/2011/07/testing-cxf-based-soap-webservice.html The link has been added on this page as well http://cxf.apache.org/resources-and-articles.html Mahesh On Sun, Aug 28, 2011 at 2:54 AM, Raj Floyd wrote: > Hi, > > I want to publ

Re: Are tools available to test backwards compatibility of WSDL's

2011-08-24 Thread Mahesh Koli
cific project. I don't deny the usefulness of a generic tool. Mahesh On Tue, Aug 23, 2011 at 3:34 PM, Daniel Kulp wrote: > On Tuesday, August 23, 2011 9:23:36 AM dstainer wrote: > > I'm curious if there are any tools available that test backwards > > compatibility be

Re: Apache CXF articles.

2011-08-11 Thread Mahesh Koli
I want to recommend this one. It talks about testing CXF without a Web container. http://testablejava.blogspot.com/2011/07/testing-cxf-based-soap-webservice.html On Thu, Aug 11, 2011 at 9:27 AM, Robert Liguori wrote: > Anyone aware of any other CXF articles not listed here ( > http://cxf.apache

Re: Embedding CXF

2011-08-06 Thread Mahesh Koli
I am not sure if this might help you. http://testablejava.blogspot.com/2011/07/testing-cxf-based-soap-webservice.html What is mentioned there can be easily done without using spring On Sat, Aug 6, 2011 at 9:29 AM, wrote: > > I need to be able to unpublish the service without restarting the s

Which Interceptor to choose to Cleanup WS-Policy namesapces within soap body child nodes?

2011-07-08 Thread mahesh
a interceptor I can use just before the soap body is encrypted. I am left with just two names spaces to clean. Mahesh -- View this message in context: http://cxf.547215.n5.nabble.com/Which-Interceptor-to-choose-to-Cleanup-WS-Policy-namesapces-within-soap-body-child-nodes-tp4565981p4565981.html

Re: Issue with modifying mesage via interceptor

2011-07-07 Thread mahesh
Aki the .Net Service I am calling requires specific prefix and namesapaces removed I did this finally with the code below.however there are additional two namespaces of parent node appearing in child node at some phase when ws-policy is being applied.I would like them removed I am not what phase i

Re: How different phase and interceptor works in CXF

2011-07-06 Thread mahesh
I think I would try to answer some of the questions you have asked For Symmetric binding you will need a external policy as shown below Also you will need to provide password to your jks having the certs to sign and encrypt via a Client Password Callback handler. see attached policy as example ht

Issue with modifying mesage via interceptor

2011-07-06 Thread mahesh
n"); //sm.writeTo(System.out); //System.out.println("\n---UNENCRYPTED OUT MESSAGE END\n"); } catch (Exception e) { throw new Fault(e); } } } //---End -- Thank Yo

Re: Submitting Example Unit test for Cxf using LocalTransportFactory

2011-06-29 Thread Mahesh Koli
Ok. Will do that. Thanks for the input Mahesh On Wed, Jun 29, 2011 at 9:44 PM, Glen Mazza wrote: > Best way is to create a blog entry, provide downloadable source code from > it, and then add a link to your blog entry from the resources section. > > Glen > > > On 06/27/

Java client .NET service Response: Error: Value cannot be null. Parameter name: s

2011-06-27 Thread mahesh
.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";> http://www..gov//2008/09";> Thanks mahesh -- View this message in context: http://cxf.547215.n5.nabble.com/Java-client-NET-service-Response-Error-Value-cannot-be-null-Parameter-name-s-tp4529977p4529977.html Sent from the cxf-user mailing list archive at Nabble.com.

Submitting Example Unit test for Cxf using LocalTransportFactory

2011-06-27 Thread Mahesh Koli
as a reference implementation. How do I go about submitting the code? Thanks for the help Mahesh

Re: CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-24 Thread mahesh
Colm, Looks like the client is now good only need to fix some interoperability issues I am getting now response looks like WCF service does not like my execute request call parameters Error: Value cannot be null. Parameter name: sResponse: Error: Value cannot be null. Parameter name: s No n

Re: CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-24 Thread mahesh
Colm I resolved the namespace issue and also the unmarshell issues by adding the line to package-info.java @javax.xml.bind.annotation.XmlSchema(namespace = "xxx", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) now out and in messages are error free however the out message h

Re: CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-24 Thread mahesh
Colm I resolved the namespace issue and also the unmarshell issues by adding the line to package-info.java @javax.xml.bind.annotation.XmlSchema(namespace = "xxx", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) now out and in messages are error free however the out message h

Re: CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-22 Thread mahesh
/n4514527/MSRESP1.xml MSRESP1.xml Policy http://cxf.547215.n5.nabble.com/file/n4514527/addr-external.xml addr-external.xml Thanks Mahesh -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-2-4-1-Client-is-giving-the-signature-or-decryption-was-invalid-tp4507027p4514527

Re: CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-20 Thread mahesh
After updating correct namesapces i am getting javax.xml.bind.UnmarshalException -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-2-4-1-Client-is-giving-the-signature-or-decryption-was-invalid-tp4507027p4508152.html Sent from the cxf-user mailing list archive at Nabble.com.

CXF 2.4.1 Client is giving the signature or decryption was invalid

2011-06-20 Thread mahesh
Environment is as follows 1) Service is a WCF .NET 2) Client written in Jdeveloper using CXF 2.4.1 I see the messages transferring from client to the webservice and I am getting a valid response from the service. But for some reason my client is getting exception The signature or decryption was in

RE: cxf jaxrs reuesthandler and spring 3 MVC DispatcherServlet Integration.

2011-06-09 Thread Kambam, Mahesh
Hi Sergey, The below recommendations worked for us. I tried both forward/include, they worked. The code from RequestDispatcherProvider was also really usefull. Thanks, =Mahesh Kambam. -Original Message- From: Sergey Beryozkin [mailto:sberyoz...@gmail.com] Sent: Wednesday, June 08

RE: cxf jaxrs reuesthandler and spring 3 MVC DispatcherServlet Integration.

2011-06-08 Thread Kambam, Mahesh
C to cxf seamlessly. We use cxf for rest and mvc for ui related issues. Utltimately cxf is the one that responds. Thanks, =Mahesh Kambam. -Original Message- From: Sergey Beryozkin [mailto:sberyoz...@gmail.com] Sent: Wednesday, June 08, 2011 12:11 PM To: users@cxf.apache.org Subject: Re: c

cxf jaxrs reuesthandler and spring 3 MVC DispatcherServlet Integration.

2011-06-08 Thread Kambam, Mahesh
like to have Spring DispatcherServlet to take the control and invoke the appropriate spring controller. I am having hard time to have CXF Rest features and Spring MVC work together.any solutions/references/material would be really appreciated. Thanks, =Mahesh Kambam.

Re: SOAP Payload size in a request

2009-03-05 Thread Mahesh Seshan
Glenn, Thank you for the prompt response. Unfortunately, cannot turn off chunking...because via SOAP, we could get huge request and we want to benefit from chunking. Regards, -mahesh On Thu, Mar 5, 2009 at 6:21 PM, Glen Mazza wrote: > > Chunking can be turned off (search the CXF user&#

SOAP Payload size in a request

2009-03-05 Thread Mahesh Seshan
appreciated. Thank you, -mahesh