Re: RE : RE : Axis2/C built with SSL support. axis2_http_sender.dll fails to load

2008-10-07 Thread Laksh
Hi, I am wondering whether the SERVER_CERT specified in axis2.xml cause of this issue. We are not interested in enabling client authentication. So my doubts are 1) Do I need to provide SERVER_CERT in axis2.xml? We are not interested in setting up client authentication 2) If this is required,

Re: deploy of sample using axis2c

2008-10-07 Thread Sandro Javiel
Hi Samisa, I have just chaged some lines in the beginning of Calculator.wsdl: wsdl:definitions targetNamespace=http://192.168.0.11/axis2/services/Calculator; xmlns:impl=http://192.168.0.11/axis2/services/Calculator; xmlns:type=http://192.168.0.11/axis2/services/Calculator/types;

Re: deploy of sample using axis2c

2008-10-07 Thread Dimuthu Gamage
Hi Sandro, The namesapce declarations (starting with xmlns: ) and targetNamespaces doesn't related to the service endpoint. They are just namespaces that the xml elements belongs to (in the wsdl and the soap messages). In order to change the service endpoint you have to change the endpoint

Re: deploy of sample using axis2c

2008-10-07 Thread Sandro Javiel
Hi Dimuthu, I changed the wsdl as you have suggested. A test with soapUI returned error: request: soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:typ=http://ws.apache.org/axis2/services/Calculator/types; soapenv:Header/ soapenv:Body typ:add

ver 1.6

2008-10-07 Thread Subra Aswathanarayanan
Hello, Do you guys know when you are going to release Axis2/C ver 1.6? Subra

Re: signature verification failing

2008-10-07 Thread Uthaiyashankar
Hi Raghu, Can you capture the messages (Request and Reply) with tcpmon and send it? I need full message, not just the body... Also, the client.log seemed to be not full. can you clear all the logs and then send the request, and attach the log. Service.xml and client.policy.xml assertions

Re: Tired of aar problem

2008-10-07 Thread ibrahim demir
Hi Everybody;   Firstof all Thanks for your interest to my problem. I attach my test wsdl file,services.xml and my class . the handling class is under tr\com\cs\banking\in= frastructure\bankingextensions\webservice\handler and it is CSBankingWS   I also send the code for that class . This class

Exception deserialization problem? (WebSphere as server)

2008-10-07 Thread Henrik Hjalmarsson
We have an server application running in WebSphere 6.1 and a client using Axis 1.4. Both the server and client are Java applications running in Java 1.4.2. The server and client side Java is generated from WSDL using axis and websphere ant target's wsdl2java. The server throws custom checked

Re: WS call returns Can't decode apache map

2008-10-07 Thread Samisa Abeysinghe
1. Could you send the WSDL? 2. Do you have the request and response messages captured? Samisa... thusa gihan wrote: Hi, This is my first post to the group. I have generated client side Java classes using a WSDL2Java tool, and when I call the WS, it returns the following error message.

Re: WS call returns Can't decode apache map

2008-10-07 Thread thusa gihan
Yes, I have all of those. WSDL: (start) -- ?xml version=1.0 encoding=UTF-8? definitions xmlns:typens=urn:Company xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/;

Re: HELP!!! - Axis 2 1.4 CodeGenerator Eclipse Plugin fails - InvocationTargetException

2008-10-07 Thread WilsonSandra
Steve, I had the same problem (InovcationTargetException) and resolved. I am using : Eclipse version 3.4 (eclipse-jee-ganymede-SR1-win32.zip) Axis2 version 1.4.1 (axis2-1.4.1-bin.zip) Axis2 - Codegen tool - version1.4 (axis2-eclipse-codegen-wizard.zip) Make sure you are using the above and

Re: When do cleanup functions need to be called?

2008-10-07 Thread Amila Suriarachchi
Please try with a Nighly build. As I think this could be the problem. in Stub class we have this at the clean up method. protected void finalize() throws Throwable { super.finalize(); cleanup(); } public void cleanup() throws AxisFault {

Re: Axis2 in Weblogic 8.1

2008-10-07 Thread Amila Suriarachchi
On Tue, Oct 7, 2008 at 12:05 AM, Martin Gainty [EMAIL PROTECTED] wrote: trying to figure out the statementDue to some constraints we need to deploy only the Axis2.war. if you are prohibited from deploying aar with mar then yes you wont be able to use Axis2Could you explain please?Martin

Re: Adding custom fields to the Username Token

2008-10-07 Thread Jason Clark
Okay, I think I've resolved this thanks to this post: http://markmail.org/message/wkypgewpla4cs55r I created my own Security header and populated the field with all of the data the webservice I'm connecting to requires. I disabled the outflowsecurity section in my axis2.xml file, and call the

Re: Rampart Username and signed certificate

2008-10-07 Thread RonnieMJ
Unfortunately the WSDL does not have ANY security considerations in it. I don't have control over that WSDL either. I've tried it with SignedSupportingTokens (or even just SupportingTokens) below the binding (as a top level) a few times. It ends up making the token still embedded and

Re: Tired of aar problem

2008-10-07 Thread ibrahim demir
Hi Everyboy;   I understood the problem.The problem was because I have already added the bin folder to the classpath of jboss so it confuses whic class it should use. When I removed it then it worked.   thanks for your interest   Yours  Ibrahim DEMIR CyberSoft Yazilim Muh.

Web service client error - Unable to import binding

2008-10-07 Thread Mark Christiansen
I'm a web services newbie - please help  I'm trying to create a .NET web client to a Java (Ajax2) web service. This is just a test page, so see if I can do it, before I continue adding more code.   But when I build my client web app I get the error: Unable to import binding 'SimpleServiceSOAP'

Programmatically Changing Http Method

2008-10-07 Thread Perry-Pelletier, Adam
My WS appears to connect via POST yet the service only responds to GET. The following exceptions fragment shows the result: Oct 7, 2008 1:59:56 PM org.apache.axis2.transport.http.HTTPSender sendViaPost INFO: Unable to sendViaPost to

Problem attaching ws-policy at message level

2008-10-07 Thread Mary Thompson
Has anyone had success in attaching ws-policy at the message level in the xml.services file? I am trying to get the request messages signed and time stamped and the response messages just time stamped. I have followed Nandana's tutorial at https://wso2.org/library/3786 and used the following

Re: Programmatically Changing Http Method

2008-10-07 Thread keith chapman
Hi Adam, Have a look at this blog posthttp://www.keith-chapman.org/2008/10/axis2-setting-http-method-when-sending.html[1]. It shows how the HTTP method can be changed when sending a request. Thanks, Keith. [1] http://www.keith-chapman.org/2008/10/axis2-setting-http-method-when-sending.html On

Questions about converting WSDL to Java with multiple imported XSD Files

2008-10-07 Thread Andrew Thorburn
I have a WSDL file that doesn't declare any types of its own, but rather imports several XSD files that declare the types it uses. This works fine. It took a little while, but it works. Mostly. For reference, I'm using Sun's Java 1.5 on Ubuntu 7.04, using Eclipse Europa to check my XSD and WSDL

Re: Problem attaching ws-policy at message level

2008-10-07 Thread Nandana Mihindukulasooriya
Hi Mary, Has anyone had success in attaching ws-policy at the message level in the xml.services file? I am trying to get the request messages signed and time stamped and the response messages just time stamped. I just tested this scenario with Axis2 1.4.1 and Rampart nightly build and worked

Re: Questions about converting WSDL to Java with multiple imported XSD Files

2008-10-07 Thread Andrew Thorburn
Ok, my apologies, I tested with Axis2 1.4, and my first problem went away. Looks like Problem 2 as well. Thanks, - Andrew Thorburn On Wed, Oct 8, 2008 at 4:36 PM, Andrew Thorburn [EMAIL PROTECTED] wrote: I have a WSDL file that doesn't declare any types of its own, but rather imports several

Re: Rampart Username and signed certificate

2008-10-07 Thread Nandana Mihindukulasooriya
Hi, I've tried it with SignedSupportingTokens (or even just SupportingTokens) below the binding (as a top level) a few times. It ends up making the token still embedded and encrypted (not a plain old Username token). Yes, when a username token is used as supporting token with symmetric

Re: Rampart Username and signed certificate

2008-10-07 Thread RonnieMJ
Thanks Nandana, No the most recent message wasn't accepted (ASSUMEDLY due to the username token being encrypted). I'll check with the other side (other company) to see if they have more detail as to why it wasn't accepted. Nunny wrote: Hi, I've tried it with SignedSupportingTokens (or