Re: [Axis2]About WS-Policy support

2008-01-13 Thread Sanka Samaranayake
On Jan 14, 2008 12:54 PM, kokie <[EMAIL PROTECTED]> wrote: > Great!The examples works.But they are all about the security policy. > I'm tring to working out a general tool which should deal with all the > policy Axis2 support. > If you can explain the function of the tool which you are planning

Re: [Axis2]About WS-Policy support

2008-01-13 Thread kokie
Great!The examples works.But they are all about the security policy. I'm tring to working out a general tool which should deal with all the policy Axis2 support. 在08-1-14,Sanka Samaranayake <[EMAIL PROTECTED]> 写道: > > > You might be interested in trying out the following samples[1] > > Cheers, >

Re: Java2WSDL Exception Handling

2008-01-13 Thread Lahiru Sandakith
part of the issue is already fixed by amila and it is available in the trunk AFAIK , next Axis2 release will include these fixes and version 1.4 will be available on arround march Thanks Lahiru Sandakith On Jan 7, 2008 11:10 AM, Belal Juma <[EMAIL PROTECTED]> wrote: > Yes it is, is this issue w

Re: [Axis2]About WS-Policy support

2008-01-13 Thread Sanka Samaranayake
You might be interested in trying out the following samples[1] Cheers, --Sanka [1]https://svn.apache.org/repos/asf/webservices/rampart/trunk/java/modules/rampart-samples/ kokie wrote: > Dear, > Axis2's great project! I'm using it developing web service with policy > support. > You metioned in

RE: SOAP Faults

2008-01-13 Thread Hoda, Nadeem [USA]
To ask a more general question... Why are custom exceptions included as a complex type in POJO services? Is this to allow for custom error/exception mapping on the client side? Please let me know if I am missing something. Thanks, Nadeem From: Hoda, N

Re: web service security

2008-01-13 Thread gaurav_abbi
hi, this is my configuration for handling security header my axis client get as a part of soap response

Re: Difficulty Generating a JSP Test Client with Eclipse's Web Service Client Wizard

2008-01-13 Thread Lahiru Sandakith
Hello Matt, Please see my comments below, On Jan 11, 2008 10:43 AM, Matthew Fadoul <[EMAIL PROTECTED]> wrote: > Hello all, > > > > I've been creating web services based on WSDL files, using Eclipse's "Web > Service" wizard and deploying on Axis2 without much difficulty. > > > Cool, > At first

Re: get response as xml file

2008-01-13 Thread Upul Godage
Hi, This is in Axis2. Because of how the the pull-parsing XML object model, AXIOM, works you may not be able to get the XML model from the generated code. Because the generated code is not building an XML object model in memory but only just to read the XML to deserialize it to the returned object

Re: Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart)

2008-01-13 Thread msg2ajay
thankS a lot it worked with http://10.1.3.90/wbds/service.asmx?WSDL Upul Godage wrote: > > Try with http://10.1.3.90/wbds/service.asmx?wsdl or > http://10.1.3.90/wbds/service.asmx?WSDL > > WSDL2Java needs the URL that points to the WSDL. The URL you have given > may > probably have an HTML

Re: NoSuchMethodError when service classes and JiBX data binding classes are located in WEB-INF/classes

2008-01-13 Thread Dennis Sosnoski
Hi Gerry, Are you certain you didn't have another copy of the classes somewhere in your classpath? This looks like you had a copy of the com.taw.cca.data.languages.DataLanguagesResult class somewhere which had not been processed by the binding compiler, and that copy was being loaded in prefe

Re: [U] Problems with Axis2/Spring inside EAR vs Exploded directory

2008-01-13 Thread robert lazarski
The docs seem to cover this case: http://ws.apache.org/axis2/1_3/app_server.html Give that a try and you still have problems let us know. HTH, Robert On Jan 13, 2008 12:58 AM, Higdon, Aaron C Mr CONT USAAC <[EMAIL PROTECTED]> wrote: > UNCLASSIFIED > > > I have been developing several web se

Re: Engaging modules on operations

2008-01-13 Thread Meeraj Kunnumpurath
Hi, I have managed to get it working by setting the SOAPAction header from the client. Thanks Meeraj On 1/13/08, Meeraj Kunnumpurath <[EMAIL PROTECTED]> wrote: > Hi, > > How do I engage modules on individual operations on a service? > > I tried using AxisOperation.engageModule(), however, the m

Engaging modules on operations

2008-01-13 Thread Meeraj Kunnumpurath
Hi, How do I engage modules on individual operations on a service? I tried using AxisOperation.engageModule(), however, the module doesn't seem to be engaged. When I di AxisOperation.getAxisConfiguration().engageModule(), it seems to be working. However, I assume this is engaging the module on al

get Error, listSingleService.jsp not found

2008-01-13 Thread henry human
sorry, it was a mistake in first posting! I have a axis2 application which is a web service running on tomcat. Trying to access service I get: http://localhost:8080/Rpem/services/Rpem1 Wen I call the wsdl I get the following error: http://localhost:8080/Rpem/services/Rpem1?wsdl Erro

get Error, listSingleService.jsp not found

2008-01-13 Thread henry human
Hi I have a axis2 application which is a web service running on tomcat. Trying to access service I get: The service cannot be found for the endpoint reference (EPR) http://localhost:8080/Rpem/services/Rpem1 Wen I call the wsdl I get the following error: http://localhost:8080/Rpem/services/MyServ

SOAP Faults

2008-01-13 Thread Hoda, Nadeem [USA]
All, In the call: new AxisFault(new QName(errorNamespaceUri, errorCode, errorNamespace), errorMessage, new Exception(errorDetail)); what exactly does adding the Exception (the third parameter) to the AxisFault call do? I do not see any difference in the SOAP Fault at the client s