RE: Problem with Axis C++ installatio on Linux PC

2006-09-18 Thread Murali Konnipati
Title: Message Hi All, Finally i have installed Axis C++ in my System. But when i try to start the simple_axis_server, it is giving the following error.. Warning - The WSDDFilePath file (/usr/local/axis/etc/server.wsdd) in the AXISCPP.CONF file does not exist. Aborted I checked

RE: Problem with Axis C++ installatio on Linux PC

2006-09-18 Thread Popuri, Monica
Title: Message cp server.wsdd_linux to server.wsdd in /etc folder of your axis installation. You need to make change in this file. hope this solves your problem. BTW which version of apache you have installed? -Original Message-From: Murali Konnipati [mailto:[EMAIL

RE: Problem with Axis C++ installatio on Linux PC

2006-09-18 Thread Murali Konnipati
Title: Message I installed axis in /usr/local/axis directory. In that etc directory is not there. Do i need to create it manually or what..? I installed Apache2.09 in my system. There is not problem with installation of Axis. Could you please mail me the changes i need to make in

Re: Axis C++ SOAP 1.2 faults

2006-09-18 Thread Nadir Amra
I believe it is a known issue Nadir K. Amra Kamlesh kumar [EMAIL PROTECTED] wrote on 09/15/2006 06:56:59 PM: I am interested in creating SOAP faults based on SOAP 1.2 spec using Axis C++. Looking at SOAPFault API it seems we can only create SOAP fault that is compliant with SOAP 1.1

DateTime deserialization problems

2006-09-18 Thread Kamlesh kumar
I am facing a strange problem with Date DateTime deserialization. Axis can successfully parse the following date foo2035-08-15-00:00/foo However, its not able to parse this date. foo2038-08-15-00:00/foo Note, the change is only in the year field. Instead it throws an exception saying

xsd deserialization for integer types broken

2006-09-18 Thread Kamlesh kumar
The xsd deserialization for integer types is awfully broken. For instance, calling the getElementAsInt() API for the XML fragment foo30a/foo I would have expected it to either return 30 or ideally throw an exception. Instead, I get a value of 300 :( Similarly, calling foo30 /foo returns a

Re: [Axis2] OMException: Can't find datahandler

2006-09-18 Thread Thilina Gunarathne
HI Satyajit, The response you are getting back is not garbage ;-).. It has base64 encoded binary data inside the result element. Axis2 is suppose to identify those data in the presence of xsi type base64Binary... What is the databinding mechanism you are using. XmlBeans or ADB... Anyway this

Re: Sept. 15 nightly build axis2.war and tomcat conflict ?

2006-09-18 Thread Davanum Srinivas
Deepal, this has already been fixed. -- dims On 9/18/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Gul ; pls create a JIRA Thanks Deepal Hi, I just downloaded the axis2.war from axis2 nightly builds and trying to use it with Tomcat 5.5.17 (release version). I connected

Re: Sept. 15 nightly build axis2.war and tomcat conflict ?

2006-09-18 Thread Deepal Jayasinghe
oh , thx dims , I did not know that. Deepal Davanum Srinivas wrote: Deepal, this has already been fixed. -- dims On 9/18/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Gul ; pls create a JIRA Thanks Deepal Hi, I just downloaded the axis2.war from axis2 nightly builds

Re: Getting Rampart to work on client side

2006-09-18 Thread Christoph Raupach
Hello, I'm using: The latest Axis2 Nightly build wss4j-1.5.0.jar xmlsec-1.4.Beta1.jar rampart-1.0 addressing-1.0 I'm also using an probably old axis-security-SNAPSHOT.jar but removing or adding it to the classpath has no effect on the error message. Also I can't find an current axis-security.jar

Re: [Axis2] Help me better understand axis2

2006-09-18 Thread Sameera Madushan
Hi nancy,Since you have the implementation class. The next thing you have do is to create the services.xml file. I will try to reply with the services.xml file. Before hand you better refer the following tutorial. ... ... For further details you can refer

Re: WS-Addressing Interoperability Problem

2006-09-18 Thread David Illsley
You need to do the following to the Options object you use to comfigure your client: options.setProperty(org.apache.axis2.addressing.AddressingConstants.WS_ADDRESSING_VERSION, org.apache.axis2.addressing.AddressingConstants.Submission.WSA_NAMESPACE); Which will tell the addressing module to add

Re[2]: Axis2 import xsd into WSDL and generator WSDL2Java

2006-09-18 Thread Sergey GMAIL
Hello, Anne. Âû ïèñàëè 16 2006 ?., 3:32:58: ATM To clarify, You may not use wsdl:import to import an XSD file. You ATM must use xsd:import. It would look like this: ATM definitions name=CalculatorsService ATM targetNamespace=http://com/nuance/pws/middleware/beans/calculator; ATM

Re: getting the security principal for x509 authentication profile

2006-09-18 Thread Ruchith Fernando
Yes ! In the case of signature, the way to extract the Principal is similar to the way we extract WSUserameToken principal. Basically one gets the DN of the certificate used to sign the incoming message as a java.security.Principal. Thanks, Ruchith On 9/16/06, [EMAIL PROTECTED] [EMAIL

[Axis2] nightly build download problem

2006-09-18 Thread Michele Mazzucco
Hi all, the following link http://people.apache.org/dist/axis2/nightly/ seems to be broken (there's nothing). Any idea? Thanks, Michele - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Axis 1.3 and Castor

2006-09-18 Thread Rishikesh . Mallesh
I have tried the methods suggested by the articles below, but they seemed to be more of a workarounds/kludge rather than clean solutions. I would like to know if anyone in the group is using Castor and Axis and the approach they have used. Thanks in advance Rishi -Original Message-

RE: [Axis2] Help me better understand axis2

2006-09-18 Thread nancy
Hi Sameera, Thanks Sameera for the link. I have gone through the document. Is there any link in which how to send the request having parameters other than String is explained. As far as I know the setText method of OMelement takes String parameter, also createOMElement method of

Axis documentation

2006-09-18 Thread Erik Norgaard
Hi: I have a project that ought to be simple straight forward, but I'm lost in the documentation. Any links to useful documentation is highly appreciated. I need to write a simple client application, that uses the different levels of abstraction offered by Axis: RPC, Document, Wrapped and

RE: [Axis2] Help me better understand axis2

2006-09-18 Thread Nirmit Desai
Look at the AXIOM javadoc http://ws.apache.org/commons/axiom/apidocs/index.html I am not sure how you can have a HashMap type parameter in an Axis2 service operation. For best results, start from a WSDL and generate code with databinding. -Nirmit

Re: WS-Addressing Interoperability Problem

2006-09-18 Thread Martin Gainty
David- Are there advantages of using the Options.setProperty over setting properties via MessageContext such as MessageContext.setProperty(WS_ADDRESSING_VERSION,Submission.WSA_NAMESPACE)? Thanks, Martin -- * This email message

Re: [Axis2] nightly build download problem

2006-09-18 Thread Davanum Srinivas
something's there right now :) -- dims On 9/18/06, Michele Mazzucco [EMAIL PROTECTED] wrote: Hi all, the following link http://people.apache.org/dist/axis2/nightly/ seems to be broken (there's nothing). Any idea? Thanks, Michele

Re: WS-Addressing Interoperability Problem

2006-09-18 Thread David Illsley
Martin, Both will work but the Options class is the 'official' Client API. David On 18/09/06, Martin Gainty [EMAIL PROTECTED] wrote: David- Are there advantages of using the Options.setProperty over setting properties via MessageContext such as

Re: [Axis2] jar conflicts

2006-09-18 Thread Jesse Vitrone
When I decompile the .class files, it looks like they're all fine, I think I'm picking up an old QName from WebSphere :( Thanks anyway. Jesse - Original Message From: Davanum Srinivas [EMAIL PROTECTED] To: axis-user@ws.apache.org; Jesse Vitrone [EMAIL PROTECTED] Sent: Friday,

Re: [Axis2] jar conflicts

2006-09-18 Thread Davanum Srinivas
Please set the class loader mode to Parent Last http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/ctrb_classload_jcl_conf.html

Using SSL and HTTPS with Axis2

2006-09-18 Thread Gul Onural
Title: Using SSL and HTTPS with Axis2 Hi, I am looking for help using SSL and HTTPS with Axis2. Is there a document somewhere to give me a pointer on this ? Gul

WS-I testing tools for Axis2

2006-09-18 Thread Sivaramakrishnan Rajamani
Hi, I am trying to find a WS-I testing tool for the service I wrote with Axis2. Please suggest some tools available. Thanks Siva

RE: WS-Security and HTTPS compatibility

2006-09-18 Thread Dale Herrig
can you please point me to the jira link, thanks -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Sunday, September 17, 2006 3:57 PM To: axis-user@ws.apache.org Cc: Dale Herrig Subject: Re: WS-Security and HTTPS compatibility Please switch on http client logging

Re: WS-I testing tools for Axis2

2006-09-18 Thread Davanum Srinivas
http://www.ws-i.org/deliverables/workinggroup.aspx?wg=testingtools On 9/18/06, Sivaramakrishnan Rajamani [EMAIL PROTECTED] wrote: Hi, I am trying to find a WS-I testing tool for the service I wrote with Axis2. Please suggest some tools available. Thanks Siva -- Davanum Srinivas :

Re: WS-Security and HTTPS compatibility

2006-09-18 Thread Davanum Srinivas
http://issues.apache.org/jira/ create a login for yourself and then create an issue under Axis2 On 9/18/06, Dale Herrig [EMAIL PROTECTED] wrote: can you please point me to the jira link, thanks -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Sunday, September

Re: Using SSL and HTTPS with Axis2

2006-09-18 Thread Ruchith Fernando
Hi Gul, If you are looking to configure the SeviceClient with to use HTTPS then simply set the JSSE properties. Example: System.setProperty(javax.net.ssl.trustStore, path/to/ keystore); System.setProperty(javax.net.ssl.trustStorePassword, password); The keystore file must contain the public key

RE: WS-Security and HTTPS compatibility

2006-09-18 Thread Gul Onural
I was wondering if the JIRA for the SSL/HTTPS can be fixed for the Aaxis release that is planned for this month ? Gul -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Monday, September 18, 2006 10:15 AM To: Dale Herrig Cc: axis-user@ws.apache.org Subject: Re:

off topic - to list admin

2006-09-18 Thread Maximilian Eberl
Please remove me ([EMAIL PROTECTED]) manually from the list. I have 10.000 messages on the server and have to download them all to answer the unsubscribe-message. Thank You Maximilian Eberl netzdenker.de Senior Software Architect

FW: [Axis2] User Guide's Writing Web Services by Code Generating Skeleton

2006-09-18 Thread Michael Larkin
Thanks to everyone for tolerating my newbie questions... I have been able to answer my own questions, which I will record here - in case anyone else out there, like me, has been floundering. Here they are... Question: Why wouldn't the userguide example's ant build file (which appears after

[Axis2] Issue with SOAP response

2006-09-18 Thread Charak, Vikas
My WSDL as displayed by Axis2 in the web page has the following part wsdl:message name=getCodeResponse wsdl:part name=part1 element=impl:getCodeReturn/ /wsdl:message When the service is invoked I get the following response. ?xml version='1.0' encoding='UTF-8'? soapenv:Envelope

[Axis1.4] error on receiving soap message generated by WSE 2.0 - DIME message version mismatch

2006-09-18 Thread shantanu chawla
I have written email abt this problem last week but I didnt get any response, so I am curious to know is my problem unique. I am calling a .NET webservice that is sending soap message using WSE 2.0.and I believe it is sending the message as DIME message. My java client that is running under

Re: [Axis2] nightly build download problem

2006-09-18 Thread Michele Mazzucco
Dims, now there's something, but it doesn't work as expected :(. If you try to deploy the axis2.war, you'll get an exception during the tomcat startup (some jms.* resources are missing). Michele Davanum Srinivas wrote: something's there right now :) -- dims On 9/18/06, Michele Mazzucco

[Axis2] application scope deployment question

2006-09-18 Thread Michele Mazzucco
Hi all, what happens if a service deployed in application scope (i.e., only one instance should exist into the engine) is not invoked for some time? Can it be unloaded/garbage collected by the app. server/web server/axis2? Thanks, Michele

[Axis2] Problem using a ServiceClient on the server

2006-09-18 Thread Punnoose, Roshan
I am trying to push back a response to a Client's Callback listener, but I keep getting this error: Caused by: java.lang.IllegalStateException: Current state not START_ELEMENT at com.ctc.wstx.sr.BasicStreamReader.getAttributeCount(BasicStreamReader.ja va:582) at

Re: [Axis2] nightly build download problem

2006-09-18 Thread Davanum Srinivas
fixed. try in an hour or so. -- dims On 9/18/06, Michele Mazzucco [EMAIL PROTECTED] wrote: Dims, now there's something, but it doesn't work as expected :(. If you try to deploy the axis2.war, you'll get an exception during the tomcat startup (some jms.* resources are missing). Michele

RE: [AXIS2] Calling SOAP version on WebSphere works with Release1; Possible bug in nightilies

2006-09-18 Thread VanKooten, Derek
Ok, I was able to finally test this. It works great! Thanks for all the help. -Original Message- From: VanKooten, Derek [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 3:32 PM To: axis-user@ws.apache.org; [EMAIL PROTECTED] Subject: RE: [AXIS2] Calling SOAP version on

Re: [Axis2] Using 'type' attribute for the message part

2006-09-18 Thread Davanum Srinivas
Are u using the nightly build? If so, please open a issue/bug. thanks, dims On 9/18/06, Spies, Brennan [EMAIL PROTECTED] wrote: Axis devs, Got a question regarding the use of types for message parts rather than elements...specifically, what are the semantics of it? Reading the WSDL spec does

Re: [Axis1.4] error on receiving soap message generated by WSE 2.0 - DIME message version mismatch

2006-09-18 Thread Martin Gainty
You will see multiple examples of DIME support in Axis 1.x (most notably 1.4 is the latest Ive seen) client example is located at .\samples\attachments\EchoAttachment.java service examples is located at .\samples\attachments\EchoAttachmentsService.java) The original implementation for DIME

Re: [Axis2] Using 'type' attribute for the message part

2006-09-18 Thread Ajith Ranabahu
Hi, What kind of binding do you have ? Ajith On 9/18/06, Davanum Srinivas [EMAIL PROTECTED] wrote: Are u using the nightly build? If so, please open a issue/bug. thanks, dims On 9/18/06, Spies, Brennan [EMAIL PROTECTED] wrote: Axis devs, Got a question regarding the use of types for

RE: [Axis2] Using 'type' attribute for the message part

2006-09-18 Thread Spies, Brennan
The issue is here: https://issues.apache.org/jira/browse/AXIS2-1185 -Original Message- From: Spies, Brennan Sent: Monday, September 18, 2006 11:49 AM To: axis-user@ws.apache.org; [EMAIL PROTECTED] Subject: RE: [Axis2] Using 'type' attribute for the message part Yes, I am using the most

Re: [Axis2] jar conflicts

2006-09-18 Thread Jesse Vitrone
I tried a few things, and I can't seem to et WebSphere 5.1.x to use the QName from the stax-api-1.0.1.jar. Set Parent Last for the class loader. Unjarred stax-api-1.0.1.jar into my WEB-INF/classes. Copied stax-api-1.0.1.jar into the WebSphere lib dir. None of that seemed to help. Any ideas

is TCP a supported transport for Axis 1.4 .. ?

2006-09-18 Thread Wenbo
The distributed source code doesn't include tcp (under the transport pkg) .. but there's a sample on TCP support. Thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[Axis 1] Hard-coding configuration information?

2006-09-18 Thread Kenneth Love
Hello, I'm using Axis 1.4 and Tomcat 5.5 to develop a Web service. I've written code that works. The code was originally generated by WSDL2Java and has four functions in the server's Impl class. Unfortunately, I have had to hard-code configuration information into the source code files.

[Axis2] Multiple messages from the server

2006-09-18 Thread Punnoose, Roshan
Hi, I am trying to return multiple messages back from the server to the client's callback, however, I keep getting this error: org.apache.axis2.AxisFault: Invalid message addition , operation context completed at org.apache.axis2.description.OutInAxisOperation.addMessageContext(OutInA

[Axis2] Message name and part name

2006-09-18 Thread Charak, Vikas
When I open my wsdl generated on listServices , I see the following part. wsdl:message name=getCodeResponse wsdl:part name=getCodeReturn element=impl:getCodeReturn/ /wsdl:message Can I make my message name and my part name to have same name. I tried using my hand crafted WSDl but Axis keeps

Java deserialization problem using Axis 1.4

2006-09-18 Thread Troy Baer
Hello all, I have the attached JobStatus Java class (using code generated from the attached WSDL file using wsdl2java and then modified) as part of a web service I'm developing. For reasons I don't understand, not all of the fields in the object are deserialized correctly on the client side. In

Re: WS-Addressing Interoperability Problem

2006-09-18 Thread Anthony Bull
Thanks, that worked awesome. I was using a code generated client, so I had to go in to the client Stub class and add that line of code to its constructor. Thanks for the quick response. Anthony. David Illsley wrote: You need to do the following to the Options object you use to comfigure

[Axis2] REST request not quite working

2006-09-18 Thread Shruti Krishnagiri
I'm facing a problem gettinga specificREST request to work. One of my service methods takes in an array of strings as a parameter and the corresponding wsdl snippet looks like this: - xs:element name="generatePriceList"- xs:complexType- xs:sequence xs:element minOccurs="0" type="xs:string"

[Axis2] REST request not quite working

2006-09-18 Thread Shruti Krishnagiri
I'm facing a problem gettinga specificREST request to work. One of my service methods takes in an array of strings as a parameter and the corresponding wsdl snippet looks like this: - xs:element name="generatePriceList"- xs:complexType- xs:sequence xs:element minOccurs="0" type="xs:string"

Unable to invoke the WebService : Error - Could not find class f or the service named: dit.ops.wserv.MyWebService

2006-09-18 Thread Amm, Azad
Hi I am unable to invoke the webservice that i managed to deploy on the weblogic server, the error message that i get is And now... Some Services AXIS error Sorry, something seems to have gone wrong... here are the details: Fault - Could not find class for the service named:

[Axis2]WSDL2Java - Code generation - boolean type variables

2006-09-18 Thread Sameera Madushan
Dear all,I developed a wsdl for two web service operations(mentioned below). Code generation process works fine.There is boolean variable called 'loginStatus' in the UserLoginReponse element. After the code generation I could see the following UserLoginResponse.getLoginStatus().As I know in java