Re: question on providers in WSDD

2004-05-28 Thread samir_chouthai
Sanjay, I think that there is a typo in the wsdd ... it should be operationProviders instead of providers it then makes sense.   - Samir Chouthai.Sanjay Dahiya <[EMAIL PROTECTED]> wrote: |Thanks Bioernthe second example is from globus (http://www.globus.org), which is based on Axis. if its no

Re: c++ WSDL2Ws creates an extra input parameter

2004-05-28 Thread Aleksander Slominski
Ben Souther wrote: More Data.. Using the tcpmon application, I was able to grab all of the data being swapped between the client and server. For some reason, Axis (server, java) returns the returns the response "chunked" for the C++ Client but not for the Java client. the reason is that AXI

Re: c++ WSDL2Ws creates an extra input parameter

2004-05-28 Thread Ben Souther
More Data.. Using the tcpmon application, I was able to grab all of the data being swapped between the client and server. For some reason, Axis (server, java) returns the returns the response "chunked" for the C++ Client but not for the Java client. I assume the delay is due to the connecti

Re: Document style web service

2004-05-28 Thread Luciano Fiandesio
Romulus, I recently put on my web site a step-by-step guide on how to build a simple web service using Axis 1.1. The tutorial comes with some sample code (ant build script and classes). You can easily modify the Ant build script to use document/literal style instead of wrapped. The tutorial is avai

Document style web service

2004-05-28 Thread Pasca, Romulus
Is it anywhere a complete sample with a document style(not wrapped) web service? Thanks, Romulus

QoS in Axis? (Correction)

2004-05-28 Thread Rui Zhang
Sorry, confused the previous mail with the one sent to Tomcat List... Corrected as follows... -- Hi all, Is there any infrastruture availabe (or at least any possiblities) in Axis to tune the QoS (say, the time needed for a request to go through Axis to reach the targetService) reques

QoS in Axis?

2004-05-28 Thread Rui Zhang
Hi all, Is there any infrastruture availabe (or at least any possiblities) in Axis to tune the QoS (say, the time needed for a request to go through Axis to reach the targetService) requests are receiving? For instance, is it possible to give differentiated treatments to requests of various

c++ WSDL2Ws creates an extra input parameter

2004-05-28 Thread Ben Souther
Hello, I've used the WSDL2Ws tool that ships with Axis C++ to create a simple client for a java webservice running on axis/tomcat. The webservice method takes a string as it's only argument and returns the same string but in upper case. The c++ method that gets generated has an extra input para

Re: Setting the Socket Timeout

2004-05-28 Thread gary . si . grewal
Hello Jonathan, Thanks for the Info. That works like a charm. A big relief here. Thanks for help. Thanks and Regards, === Gary Grewal |-+> | | [EMAIL PROTECTED]| | | chase.com| | |

Setting the Socket Timeout

2004-05-28 Thread jonathan . lowe
Hi Gary Try the following to set the timeout: MyServiceLocator serviceLocator = new MyServiceLocator(); MyPort port = serviceLocator.getPort(url); org.apache.axis.client.Stub stub = (org.apache.axis.client.Stub ) port; stub.setTimeout(); Try setting the value to something very small and watch

Re: SSL Config

2004-05-28 Thread Michael Thompson
Haven't figured it out exactly, but with some combination of upgrading to 1.2 beta, changing the client endpoint url to https:// vs. http:// (doh :O), and fixing a corrupted client keystore, it seems to be working now. --m Michael Thompson wrote: Ladies and Gentlemen, I'm having a VERY tou

Initializing objects via AxisServlet.init() ?

2004-05-28 Thread Ivan Vasquez
Hi, I need to open and close a database connection (to a BerkeleyDB JE) in my Web service. I don't want every request to open and close the database environment, because most likely I'll run into synchronization problems (one thread might close some other's database). Is there an object I can get

RE: Issue with Axis running under TomCat

2004-05-28 Thread Andrew Premdas
This is probably because you didn't have the logging setup correctly. Try putting a log4j.properties file on your classpath. In eclipse one way to do this is to create a conf folder, but log4j.properties in there, then go to project properties | java build path and add conf as a class folder

RE: Is it message style MUCH slower then rpc?

2004-05-28 Thread Pasca, Romulus
Hi guys, and thanks for the answer. First of all was a mistake in my message-style web services, so for very small messages (an xml request with one item) as I expected the message style looks to be faster then RPC style(3-5 times). Unfortunatly I had to send a large amount of data over Web servi

SSL Config

2004-05-28 Thread Michael Thompson
Ladies and Gentlemen, I'm having a VERY tough time getting axis configured for SSL comm to a Tomcat web server. I've followed several readmes, blogs, former mail postings, but I can't seem to get it right. I'm using axis 1.1 and tomcat 4.1.30. I'm doing this with self signed certs just to at

RE: Issue with Axis running under TomCat

2004-05-28 Thread Meloro, John
Thank You for the reply.   My problem was two-fold.     Firstly, I was invoking TomCat under Eclipse.  For reasons I don't understand this led to no errors being logged.  When I started TomCat from the Windows Start menu and tried to deploy I discovered in one of the TomCat logs that my dep

RE: Is it message style MUCH slower then rpc?

2004-05-28 Thread Anne Thomas Manes
The MSG provider (WSDD style of MESSAGE) uses DOM and the RPC provider (WSDD styles of RPC, WRAPPED, or DOCUMENT) uses SAX. The MESSAGE provider transforms requests into a DOM. The RPC provider uses the serialization framework to transform requests into Java objects. This accounts for the very sign

RE: Is it message style MUCH slower then rpc?

2004-05-28 Thread Anne Thomas Manes
The MSG provider (WSDD style of MESSAGE) uses DOM and the RPC provider (WSDD styles of RPC, WRAPPED, or DOCUMENT) uses SAX. The MESSAGE provider transforms requests into a DOM. The RPC provider uses the serialization framework to transform requests into Java objects. This accounts for the very sign

Re: question on providers in WSDD

2004-05-28 Thread Sanjay Dahiya
|Thanks Bioern the second example is from globus (http://www.globus.org), which is based on Axis. if its not Axis parameter then it must be a globus specific parameter. I'll post on globus list as well. the exact service description sample from globus follows: share/schema/core/notification/s

Re: question on providers in WSDD

2004-05-28 Thread Biörn Biörnstad
Hi Sanjay > 1. In a wsdd file when we give > what does it mean, When using the 'Handler' provider type use the 'handlerClass' parameter to specify the class to be used. The specified class must implement the o.a.axis.Handler interface. Your handler gets called with the raw MessageContext. Check

AXIS Attachments w/o using Stub

2004-05-28 Thread rommels
Hi, >From what I understand, there are two ways of invoking a webservice, a direct dynamic invocation where we specify in the code the endpoint URL, and other details without using a Stub object, and the second using the 'Stub' that hides these details for us. All the code snippets usin

Re: Issue with Axis running under TomCat

2004-05-28 Thread Dhanush Gopinath
John,   Normally when u deploy using the WSDD generated it should deploy the webservices, but in some cases it doesnt happen ( I dunno for what cases ) ..   So check ur server-config.wsdd file under AXIS and see if it contains the details of your deployed services. If not then copy the conte