Re: Apache says 404 on calling http://localhost/axis, all libraries found, simple_axis_server and base do work

2005-09-12 Thread Hanno Fietz
Samisa, I just tried the following procedure: - install Apache 2.0.54 manually - listen on port 8080 - insert LoadModule and SetHandler directives into httpd.conf according to Axis installation manual - changed _nothing_ with the Axis configuration - start Apache ... and it works! So

Hello Again... (null) return value for Hello World. Xerces C?

2005-09-12 Thread Gavin M. Bell
Hello, I have gone from attempting to use the axis-c binary distribution to the axis-c source distribution to the cvs tree that I have built myself and they all lead me back to getting a (null) back when processing my Java web service response. I changed the build scripts to build with '-g'

RE: Cannot Run WSDL2WS in Axis C++

2005-09-12 Thread Dushshantha Chandradasa
Hi thushantha, do you have following jars in your classpath??? axis.jar wsdl4j.jar commons-discovery.jar commons-logging.jar log4j-1.2.8.jar jaxrpc.jar saaj.jar Please check whether each file is separately stated in the classpath setting. These jars are packaged with Axis Java. Please

WSDL2Java doesn't work correctly in some situations

2005-09-12 Thread Juha Kononen
Hi, this email is a continuation of my previous topic 'Is there coming a schema support for facets, lists and regular expressions in Axis?. I'm at the moment a little bit confused as to generating Java classes with WSDL2Java. It seems that the WSDL2Java functions incorrectly when it has to handle

Anders Heintz är på semester

2005-09-12 Thread Anders Heintz
Jag kommer att vara borta från kontoret fr.o.m. 2005-09-12 och kommer inte tillbaka förrän 2005-09-16. Jag har semester under denna period och kommer att svara på meddelandet när jag kommer tillbaka.

Versions

2005-09-12 Thread anshuk pal chaudhuri
Guys, I have downloaded Axis 1.2.1 .I want to know that in that particular case what is the Version of the SOAP it using,is it Soap 1.2? And the WSDL being generated for the web services,what is the version of the WSDL?is WSDL 2.0? Anshuk __ Do

Axis and encryption

2005-09-12 Thread Henrik Ehlig Petersen
Hi, We would like to use axis in a commercial Ericsson product and have some questions about the product: Can you tell us if the Java code contains encryption - or even better can you tell us what export code (ECCN) to use when distributing our product with axis? Are you aware of possible

Deploy Service via API

2005-09-12 Thread Bromberg, Dirk - encoway
Hi, ive developed a webservice via java2wsdl - wsdl2java. The webservice works fine by deploying it via an entry in the server-config.wsdd placed in WEB-INF directory. How can i deploy the webservice via an api call, without using the AdminClient or adding sections to files or

SOAP header sessions

2005-09-12 Thread Clarence Dahlin
Are there any interoperability issues, between Axis and other popular environments like .NET, Weblogic etc, concerning sessions in the SOAP header Ive been searching the web for an answer without success. Regards, Clarence

RE: SOAP header sessions

2005-09-12 Thread Hansen, Geir
We have customers using several types of clients; .NET, Glue, Axis (1.2.1), WebMethods. Only customers using Axis has complained about backward compatibility problems which directly is related to the exception thrown in the BeanDeserializer as I described it. Regards, Geir From:

Re: Axis and encryption

2005-09-12 Thread Davanum Srinivas
We don't do any encryption. We are not aware of any possible patents. thanks, -- dims On 9/12/05, Henrik Ehlig Petersen [EMAIL PROTECTED] wrote: Hi, We would like to use axis in a commercial Ericsson product and have some questions about the product: Can you tell us if the Java code

org.omg.CORBA.BAD_OPERATION: minor code: 0 completed: No

2005-09-12 Thread Kr
Hi All, I am trying to expose a EJB as webservice using AXIS 1.2 Final. When deployed my ear/ejb on WAS 4.0 on HP-UX operation system and trying to consume the web service using AXIS 1.2 generated stubs I am getting below error on the server side. [9/12/05 8:17:55:260 MST]ed128 WebGroup

Deserialization Problem

2005-09-12 Thread Rafael Jose Deitos
Hi all... I'm using this code for the service invocation (Axis-1.2.1, jdk-1.5.0, Tomcat-5.5.9): Service s = new Service(); Call call = (Call) s.createCall(); call.setTargetEndpointAddress(serviceURI); Object response = call.invoke(name_of_the_method,newObject[]{object_to_invoke}); and I'm

client.Service and/or client.Stub threadsafe?

2005-09-12 Thread Paul Grillo
For client side Axis use, I'm following/using the pattern as generated by the WSDLtoJava. Essentially an org.apache.axis.client.Service is created by feeding it a client.wsdd file. From this service I get a org.apache.axis.client.Stub by constructing one using the aforementioned Service. Now,

I need code example of Session management

2005-09-12 Thread MUHAMMAD IQBAL
Hi All, Would any one provide me the complete sample codes for Axis Session Management. Thanks and Regards, Muhammad Iqbal

I need code example of Session management

2005-09-12 Thread MUHAMMAD IQBAL
Dear All, Would any one provide me the complete code example of Axis Session menangement. Thanks and Regards, Muhammad Iqbal I think this has to be handled outside of AXIS. I think you should restrict the client from accessing all the records in one shot. Typically there should be some kind

Axis - setup/teardown notification?

2005-09-12 Thread Dave Hoffer
Does Axis provide any mechanism to notify web services that they are starting and/or stopping? I would like to provide some resource initialization when my web service has started and provide some resource cleanup when it is being stopped for any reason. What is the preferred way to do

Re: I need code example of Session management

2005-09-12 Thread Juha Kononen
Here are my instructions. I think the session management is done very easily in Axis and you don't need to write much code. My version uses cookies and the WSDL2Java tool. 1) Using WSDL2Java Create a stub and server-side, for example, with the following command: java -cp %AXISCLASSPATH%