Re: Is java:RPC provider really what anyone wants for a SOAP service?

2003-10-23 Thread Mike Klein
My guess would be java:RPC is the default because of multi-ref serialization...ability to store java object graphs (uhhh after reading specs again). And getting my feet wet with Perl via SOAP::Lite probably wasn't the smartest thing to do...but I'm getting there slowly but surely. Function vs.

Re: Is java:RPC provider really what anyone wants for a SOAP service?

2003-10-23 Thread Stephen Gordon
My guess is that this was the first Provider implemented and was hence the default... You could quite easily write another provider ;) Axis is language-independent (jargon: heterogeneous) but you need the appropriate Provider to call the back-end service. There's a lot of scope for people to wr

Is java:RPC provider really what anyone wants for a SOAP service?

2003-10-23 Thread Mike Klein
Given that the point of soap is client/language-independence...it returns an extremely unfriendly return type. Not that intuitive how to pick out the pieces (at least in Perl via SOAP::Lite). Then again I find perl (as a beginner) a little difficult in general...too many ways to do the same thi

Re: wsdl file

2003-10-23 Thread Stephen Gordon
Please attach the WSDL in question. stephen Henry lu wrote: I got a wsdl file generated by IE from a WS written in C#. I got the following errors when i tried wsdl2java program: java.lang.NullPointerException at org.apache.axis.wsdl.toJava.JavaWriter.writeComment(JavaWriter.java:2 44)

Re: Changing Web Service address location

2003-10-23 Thread Stephen Gordon
First thing which comes to mind is to simply redirect requests. This involves configuring the web server. stephen Pablo wrote: Hi My web service location is: http://localhost:8080/jboss-net/services/MyWebService I want to change it to something like this: http://localhost:8080/MyWebService

wsdl file

2003-10-23 Thread Henry lu
I got a wsdl file generated by IE from a WS written in C#. I got the following errors when i tried wsdl2java program: java.lang.NullPointerException at org.apache.axis.wsdl.toJava.JavaWriter.writeComment(JavaWriter.java:2 44) at org.apache.axis.wsdl.toJava.JavaServiceIfaceWriter.w

Simple setup notes for NetBeans users of Axis:

2003-10-23 Thread Mike Klein
You want to go into Tools->Options->IDE Configuration->System->Object Types->XML Objects and add wsdd and wsdl as XML instance types. Additionally (already in docs)...for Axis and Tomcat ant integration: includes="catalina-a

Re: ant tasks

2003-10-23 Thread Mike Klein
Forgot to answer your second and third questions... Yes, wsdl2java will generate deploy/undeploy.wsdd with type mappings (they could've used the simpler beanMapping element though). http://quotations.vxappliance.com"; qname="ns:Quotation" type="java:com.vxappliance.quotations.

Re: ant tasks

2003-10-23 Thread Mike Klein
Actually...there is a way to specify the classpath...it's just not documented correctly in the ant tasks html on Axis web site. I had this problem last night and thought...geez what an omission...I need to specify classpath before starting NetBeans/my IDE??? No, all is well...just use something

Problem with DataHandler and DataSource (Bug ?)

2003-10-23 Thread De Closmadeuc, Etienne
When a client want to download binary data from an axis web service, axis uses internal class DimeBodyPart.java. This class reads twice an InputStream : in method "send", it calls "getDataSize", which reads the InputStream, and then read again the InputStream to send it to the client. First, it'

Generated TestCase class and "catch (null e)"

2003-10-23 Thread Christopher Blunck
Hi- In inspecting the TestCase classes that Axis generates, I noticed that the invocations of my service are wrapped in a "catch (null e)". Clearly this is incorrect. I looked at the code (JavaTestCaseWriter) that generates this, and found: pw.print(Utils.getFullExceptionName(f.getMessage(),

Changing Web Service address location

2003-10-23 Thread Pablo
Hi My web service location is: http://localhost:8080/jboss-net/services/MyWebService I want to change it to something like this: http://localhost:8080/MyWebService How can I do it? Thanks in advance Pablo

Re: real benefits of using apache axis?

2003-10-23 Thread Christopher Blunck
On Thu, Oct 23, 2003 at 10:27:19AM -0400, PINAL PATEL wrote: > Hello Everyone, > > 1. What is the benefits of using Apache Axis?. > Without using Apache axis, a developer can just create wsdl > file(using a wizard..for eg. IBM WSAD Web Service wizard) and register to uddi > serv

SOAP message parsing redundancy with doc-lit services.

2003-10-23 Thread Sharmin Choksey [comcast]
This is a followup to the thread posted at http://www.mail-archive.com/[EMAIL PROTECTED]/msg09663.html,. Subject : "Accessing the XML in the SOAP message body" posted Feb-03.   In reference to the message posted, I am specifically interested in knowing if there has been any development done i

real benefits of using apache axis?

2003-10-23 Thread PINAL PATEL
Hello Everyone, I am new to Apache Axis and to Web Service. I would appreciate if you could provide some answers to the below questions?. 1. What is the benefits of using Apache Axis?. Without using Apache axis, a developer can just create wsdl file(using a wizard..for eg. IBM

Re: WebServices chaining

2003-10-23 Thread Anne Thomas Manes
Note that WS-Addressing supercedes WS-Routing/WS-Referral. See http://www-106.ibm.com/developerworks/webservices/library/ws-add/ The technical name for this mediator is a SOAP Intermediary. Most Web Services Management products operate as SOAP intermediaries -- executing as a proxy to the target

Re: Examples of stateful services

2003-10-23 Thread Tom Oinn
We have a project called Soaplab (http://industry.ebi.ac.uk/soaplab/) where the services are inherently stateful; they wrap around arbitrary command line tools (mostly life science analysis programs) and expose them as services driven by metadata descriptions. These follow a standard factory pa

Re: ant tasks

2003-10-23 Thread Stephen Gordon
With the first point, AFAIK there isn't a way to specify the classpath. You could however use the task and call the WSDL2Java/Java2WSDL that way. A kludge for sure, but it would work ;) stephen Matthew Pocock wrote: Hi, I've been having some problems with the axis ant tasks. We're running a

ant tasks

2003-10-23 Thread Matthew Pocock
Hi, I've been having some problems with the axis ant tasks. We're running axis-1_1 and ant 1.5.1beta1 (should probably upgrade ant). We were doing everything by hand (running loads of different commands from a shell) and this worked ok, but now are trying to automate things and at the same tim

Can Handler in requestFlow act as pivot?

2003-10-23 Thread Vance Maverick
I'd like to create a Handler in the global requestFlow which is capable, in certain circumstances, of acting as the pivot handler. Generally speaking, the response would be generated by the service object, in the ordinary way: but sometimes, this Handler would decide to supply the response itself.

Re: WebServices chaining

2003-10-23 Thread Henry lu
As a matter of fact, you don't need this kind of "mediator". It is WS-routing/WS-forwarding/WS-refering all about. -Henry From: "Rodrigo Ruiz" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: WebServices chaining Date: Mon, 13 Oct 2003 12:48:10 +0200 If you w

Re: Move discussions to geronimo-dev@ (Re: JSR 109 implementation for Apache)

2003-10-23 Thread Tetsuya Kitahata
Dims, All. The only one thing I can suggest is that you had mistaken the mailing list address of geronimo-dev. [EMAIL PROTECTED] ===> [EMAIL PROTECTED] <[EMAIL PROTECTED]> is the right place for you to discuss. Cheers, -- Tetsuya. ([EMAIL PROTECTED]) On Thu, 23 Oct 2003 05:51:29 -0700 (PDT)

Re: Move discussions to geronimo-dev@ (Re: JSR 109 implementation for Apache)

2003-10-23 Thread Davanum Srinivas
Yes, my mistake. thanks for the catch. -- dims --- Tetsuya Kitahata <[EMAIL PROTECTED]> wrote: > > Dims, All. > > The only one thing I can suggest is that you had mistaken the mailing > list address of geronimo-dev. > > [EMAIL PROTECTED] > ===> > [EMAIL PROTECTED] > > <[EMAIL PROTECTED]> is t

Re: Server typemappings

2003-10-23 Thread ian_d_stewart
Assuming context is an instance of org.apache.axis.MessageContext: context.getTypeMapping().register(javaType, xmlType, serializerFactory, deserializerFactory); HTH, Ian Ian D. Stewart Open Systems Engineer II Enterprise Midrange - Bank One Infrastructure & Operations [EMAIL PROTECTED] (6

Move discussions to geronimo-dev@ (Re: JSR 109 implementation for Apache)

2003-10-23 Thread Davanum Srinivas
Everyone interestedPLEASE join geronimo-dev list. It's time to move the discussions to just that mailing list. Please don't CC individuals. Please don't involve axis-user as it is just a user group. If and when axis-dev involvement is needed, you can CC that mailing list. Thanks, dims --- S

Move discussions to geronimo-dev@ (Re: JSR 109 implementation for Apache)

2003-10-23 Thread Davanum Srinivas
Everyone interestedPLEASE join geronimo-dev list. It's time to move the discussions to just that mailing list. Please don't CC individuals. Please don't involve axis-user as it is just a user group. If and when axis-dev involvement is needed, you can CC that mailing list. Thanks, dims --- G

Re: JSR 109 implementation for Apache

2003-10-23 Thread Richard Monson-Haefel
Thanks, I'm working on some other things today and will join the discussion tomorrow night. On 10/22/03 4:14 AM, "Srinath Perera" <[EMAIL PROTECTED]> wrote: > http://nagoya.apache.org/wiki/apachewiki.cgi?JSR109Proposal -- Richard Monson-Haefel Co-Founder\Developer, Apache Geronimo Author of:

Re: JSR 109 implementation for Apache

2003-10-23 Thread Richard Monson-Haefel
Looks good. I'm out today but will be back on this tomorrow. On 10/22/03 4:14 AM, "Srinath Perera" <[EMAIL PROTECTED]> wrote: > Hi All, > > There is a wiki proposal page created for the JSR109 implementation. > it can be found by url > > http://nagoya.apache.org/wiki/apachewiki.cgi?JSR109Propos

Re: JSR 109 implementation for Apache

2003-10-23 Thread Richard Monson-Haefel
Sounds interesting. Is the code available somewhere for us to look at? On 10/22/03 5:41 AM, "Srinath Perera" <[EMAIL PROTECTED]> wrote: > Hi Dims, > > we agree the changes to axis should be minimal (preferably no changes.) > > How we thought about the project is like this > > 1) JSR109 im

Re: No such operation error using document/literal service

2003-10-23 Thread DealRaider.com
Actually, that doesn't matter. It is a typo, but the software doesn't care what the name of the element is. It looks like it is true that Axis does not truly support doc/literal =( I was hoping someone would know the answer to this question off the bat. Thanks - Is that a typo in the WSDL??

limiting # of simultanious calls

2003-10-23 Thread tom schuring
hello, i have created a webservice that when called uses quite a bit of memory. when multiple requests are made multiple chunks of memory get used. how would you go about in limiting the number of concurrent requests to a webservice under axis ? i have tried a static counter, but it never get

Re: JSR 109 implementation for Apache

2003-10-23 Thread Srinath Perera
sorry if I give a false hope ...it was archtecture I was explainig. Code is not written yet be have fairly good idea what to done and the architecture.(I belive) We will start writing it once the discussion done. Srinath On Thu, 2003-10-23 at 09:29, Richard Monson-Haefel wrote: > Sounds interest

Re: JSR 109 implementation for Apache

2003-10-23 Thread Srinath Perera
Hi Guillaume, In short, I'm interrested to contribute for a new Axis tool (like > WSDL2Java) taking into account the jaxrpc mapping file. JAX-RPC mapping file is a requirement for JSR109 spec we have to support it anyway I think. > After dev, this > tool should be integrated/used into JOnAS as w

Server typemappings

2003-10-23 Thread Wolfgang Vullhorst
Hi, I know how to register server side typemappings in the deploy.wsdd. Is there a way to add typemappings in the server's class? Thanks, Wolfgang

Examples of stateful services

2003-10-23 Thread Mark Carman
Dear all, Apologies if this request is slightly off topic for this list. Does anybody have any WSDL examples of services with state? We are trying to perform automated service/operation composition using planning technology, and we need as many examples as possible of services with internal st

Re: JSR 109 implementation for Apache

2003-10-23 Thread Guillaume Sauthier
Hello I'm already working on an Axis integration in a J2EE server (JOnAS) for a JSR109 implementation. And we found some axis limitations : - jaxrpc mapping cannot be completely supported (only package mapping and xml type mapping at this time). All stuff concerning class generation (class mapping

Re: Dynamically setting the SOAP server.

2003-10-23 Thread M Ludlow
Thanks for that. I was actually doing that in the first place just didn't pick up on it till you told me. The problem was that my token replaces weren't being done because the config file wasn't being replaced and so there were no tokens to replace. Thanks. Hi, If I understand your problem c