Re: Document (Vs) RPC style services

2004-03-30 Thread Vivek Nagulapati
TECTED] Subject: Re: Document (Vs) RPC style services Date: Tue, 30 Mar 2004 14:44:30 -0500 Vivek Nagulapati wrote: > MS web services are document-styled web services. But you still have > >the overhead of (de)serializing your XML request to parameters. > When you have a service which

RE: Document (Vs) RPC style services

2004-03-30 Thread Vivek Nagulapati
convert a WSDL from RPC -> document. Anyway, the point is that there shouldn't be any measurable difference between the two communication styles, unless I'm missing something. ;-) Russ -Original Message- From: Vivek Nagulapati [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 3

Document (Vs) RPC style services

2004-03-30 Thread Vivek Nagulapati
Hello All, I am doing a performance evaluation between Document and RPC style web services. Below are two of the criteria I would be evaluating. i) Requests/Sec served (Vs) Payload size ii) Time taken to process a single request (Vs) Variable Payload Size Can anyone think of any better crit

Performance monitoring tools

2004-03-30 Thread Vivek Nagulapati
Hello All, I am looking for tools/profilers to track the performance of a web service in Axis. Specifically, I would be interested in collecting statistics for memory processing, time taken to serve a request, to name few.. If I can get the time taken to (De)serialize a SOAP request would b

Axis's Architecture

2004-03-26 Thread Vivek Nagulapati
Hello All, I have few questions on the low-level architecture of Axis. 1. According to the architecture guide of Axis, it states that there are 3 chains of handlers that a MessageContext object has to go through before being serviced i) Service ii) Global iii) Transport. IIRC, Service handlers

Re: Doc-Style Web Clients

2004-03-25 Thread Vivek Nagulapati
Anne, I think you misinterpreted my question. Currently, my client is NOT using the attachments to pass my XmlDocuments of type "Document". I wanted to know how one can avoid the axis marshalling of calls to XML. IIRC, doc style web services circumvent the (de)serialization of calls but can we

Doc-Style Web Clients

2004-03-24 Thread Vivek Nagulapati
Hello Guys, Can we develop doc-style web service clients? When I say doc-style web service clients, I mean a client which calls a web service directly without the involvement of Axis serialization wherein marshalling of function calls to XML is circumvented. What I want to do is, I have my "Do

Exception

2004-03-22 Thread Vivek Nagulapati
Hello All, I have handcrafted a SOAP-request message and tried sending the message over the wire. But once my Axis web service receives the request it is throwing the following error. org.xml.sax.SAXParseException: Content is not allowed in prolog. Did anyone encounter similar problem before?

Message/Document styled web services

2004-03-19 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message styled web service and was able to deploy a simple web service. But each time, I make changes to the web service I am forced to restart the server for the changes to take effect in the web service. Did anyone had the same problem? If yes, how can we

Message/Document styled web services

2004-03-19 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message styled web service and was able to deploy a simple web service. But each time, I make changes to the web service I am forced to restart the server for the changes to take effect in the web service. Did anyone had the same problem? If yes, how can we

Problems with WSDL

2004-03-15 Thread Vivek Nagulapati
Hello Guys, I am having problems when creating proxy classes in Visual Studio .NET to a web service created in Axis. I am getting the following error: The type attribute must be set to a valid type name Though I was able to create proxy classes few days back for the same Web service, somehow I

RE: Document-style web services

2004-03-08 Thread Vivek Nagulapati
_Hari -Original Message- From: Vivek Nagulapati [mailto:[EMAIL PROTECTED] Sent: Friday, March 05, 2004 3:52 PM To: [EMAIL PROTECTED] Subject: RE: Document-style web services >From: "Hari Lakshmanan" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAI

Message-style web services

2004-03-08 Thread Vivek Nagulapati
Hello Guys, I am trying to implement message-style web services using one of the examples provided in the Axis distribution i.e., the one in "samples/message/MessageService.java". No matter how I change the implementation in MessageService.java, it returns the SAME SOAP request received as my

RE: Document-style web services

2004-03-05 Thread Vivek Nagulapati
From: "Hari Lakshmanan" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: Document-style web services Date: Fri, 5 Mar 2004 15:35:46 -0800 Thanks Joe, that does the trick. Also I packaged my wsdl file web-inf/classes directory Hello Hari and Joe, I placed a

RE: Document-style web services

2004-03-05 Thread Vivek Nagulapati
I'm pretty sure you can (in the service's .wsdd file, maybe?) override Axis' return of the generated WSDL--instead exposing your hand-built WSDL to any client that looks at your service. Nick Remy "Vivek Nagulapati" <[EMAIL PROTECTED]>

Deployment using custom WSDL

2004-03-04 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message-styled web service and I have developed a custom WSDL for my web service. I was able to deploy the web service using the custom WSDL. But when I try to access the WSDL using "?wsdl", my logs say that it is unable to find the WSDL. Here is how my dep

Document-style web services

2004-03-04 Thread Vivek Nagulapati
Hello All, I am trying to develop a document-style web service. I hand-coded the WSDL for this web service as Axis generated RPC-styled WSDL. How can one expose this web service to clients like .NET to create client-side stubs? The WSDL generated on-the-fly when clients access this document-st

RE: Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Vivek Nagulapati
Hello Magnus, Thanks for sharing the information. It really helped me!! Magnus, as you said that Axis would not support Document/literal with .NET clients what can be the other option to bypass the serializing/deserializing phase of Axis? When you say that Axis does not support Doc/Lit, do you

Re: AXIS "interoperability" question

2004-02-27 Thread Vivek Nagulapati
n use XML schemas that may confuse many of the existing SOAP toolkits horribly - NONE of the toolkits I've worked with (IBM's proprietary one, .NET, something from TIBCO) will properly generate client stubs for some of the OASIS schemas, for example. Vivek Nagulapati wrote: Hi Hari, I strongl

Re: AXIS "interoperability" question [It is indeed questionable....]

2004-02-27 Thread Vivek Nagulapati
Hi Hari, I strongly feel that Axis interoperability solutions are still in their nascent stages. My ratiocination for this statement: I have been trying to communicate with a web service developed on Axis from a .NET client. Web service is supposed to return a "Document" object and I have bee

Working with XML DOM's

2004-02-24 Thread Vivek Nagulapati
Hello All, My apologies if this question has been asked before but I couldnt find any relevant solutions on this topic. I am trying to develop a web service which returns an XML Dom tree which is of type Document. Some of the clients are implemented on .NET technologies. My question is, is the

RE: Axis RPC WebService that returns an Document object

2004-02-23 Thread Vivek Nagulapati
Hi Richard, I tried implementing a web service which returns an XML document. I am not sure if you could return an XML "Document" object directly but what I did was serialized the XML DOM tree to a string and returned it. It worked fine! If you need further information, do email the list HTH,

Re: No serializer found for class

2004-02-23 Thread Vivek Nagulapati
Parul, Are you trying to embed an XML document string in your request. If yes, did you check if your DOM tree has been formed correctly. I mean try validating it against the schema and see if it is well-formed. HTH, Vivek From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED

XML DOM

2004-02-13 Thread Vivek Nagulapati
Hello All, A question on the interoperability of .NET and J2EE. I have to pass an XML Document to a web service implemented in .NET Is it advisable to send an XML dom object which is of type "org.w3c.dom.Document " to the .NET web service. I am assuming that the interoperable version to an XML

Stateless Session Bean as a webservice client

2004-02-09 Thread Vivek Nagulapati
Hello Guys, I deployed a SLSB - Stateless session bean as a webservice client which accesses a webservice implemented in .NET technologies. Well, I was successful in deploying the bean in the application server which is JBoss 3.2.1 but somehow I could not make it to work. I configured Axis 1.1

Message Archives?

2004-02-09 Thread Vivek Nagulapati
Hello All, I am new to the Axis mailing list. Does anyone know the URL to the message archive of the mailing list, so that I could go through the old messages. Thanks in advance, Vivek