Re: Packaging Axis...

2003-01-02 Thread Gene Chuang
I will eventually be packing axis in my webapp as well for transportability across servlet containers, so thanks for the pointers! This does bring up an issue that perhaps has been addressed on this board before: I'm assuming that most J2EE vendor implementation of Web services is done using the Se

Re: returning an array of beans (or: why i'm going insane)

2003-01-02 Thread Gene Chuang
Yeah sure, if you are familiar with XML-namespace syntax and how axis maps namespace to java package and vice versa, and how Axis handles complex-type and array-type conversion then you can handcode the deploy.wsdd to do exactly this. If not, then do the round-trip to create the deploy.wsdd as a te

Re: returning an array of beans (or: why i'm going insane)

2003-01-02 Thread Dhagam Sridhar
HI all,     I too have the same problem using Axis,     Can we make it work without using java2WSDL and WSDL2java?   thanks in advance, sridhar. - Original Message - From: Marc Esher To: [EMAIL PROTECTED] Sent: Monday, December 30, 2002 5:51 AM Subject: RE: returnin

RE: AXIS/JMS example

2003-01-02 Thread Krishnakumar B
HI I got this to work . The steps i followed are 1)java org.apache.axis.utils.Admin client client_deploy.wsdd 2)java org.apache.axis.utils.Admin server server-config.wsdd 3)Add SonicMQ\lib\tools.jar to classpath then java samples.jms.JMSTest -c jndi-connection-factory.properties -d MyQ XXX Can

RE: AXIS/JMS example

2003-01-02 Thread Krishnakumar B
Hi I have followed all the steps in the documentation. I am using SonicMQ 4.0.2. The samples/jms directory has client-config.wsdd and server-config.wsdd. Should i do some AXIS deployment. Also i am using WebSphere Small FoorPrint Server. Would be grateful for some more help Regards Krishnakuma

Re: axis ant task in netbeans

2003-01-02 Thread Gene Chuang
Yup, I switched to to invoke all the axis tools and my problems are gone...  Found out even the StackOverflowException I reported was directly caused by: This tag causes the overflow even if I'm invoking a target that does not use an axis-task.  I will stop beta-testing the axis tasks until they

userid, passwd info set in call object not getting to .NET service

2003-01-02 Thread Chakraborty, Anirban
Title: userid, passwd info set in call object not getting to .NET service Hi, I have a java webservice that acts as a client to a .net webservice. following is the code snippet on the client side: Service service = new Service(); Call _call = (Call) service.createCall(); _call.setUser

Re: axis ant task in netbeans

2003-01-02 Thread Steve Loughran
- Original Message - From: "Gene Chuang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 14:28 Subject: Re: axis ant task in netbeans > > Thanks for all your valuable input Steve. > >Well, ant does its thing differently; you can't really align the codebase th

RE: JAX-RPC Web Services in the Real World

2003-01-02 Thread Anne Thomas Manes
The whole idea behind WSDL is that you fully describe your types using XML Schema, and your client stub/proxy generator should be able to generate the appropriate language classes and serialization routines from the WSDL. Unfortunately, the productivity aspects of client stub/proxy generators vari

Re: axis ant task in netbeans

2003-01-02 Thread Michael Rimov
At 02:28 PM 1/2/2003 -0800, you wrote: >Well, ant does its thing differently; you can't really align the codebase that well Given that axis standalone commandlines (WSDL2Java, Java2WSDL and Admin) are more stable and better supported than their ant-task counterparts, would it be simply better

Re: Packaging Axis...

2003-01-02 Thread Mir Shafiqul Islam
All you would need to is have axis.jar and other axis related jar files in your WEB-INF/lib directory before "war"ing your web application. In the web.xml file you need to define what the service location will be and add proper entry for the servlet. You can take al the entries in web.xml file

RE: JAX-RPC Web Services in the Real World

2003-01-02 Thread Marion . Morrison
Thanks Anne, you provided the feedback I was looking for. I was thinking that service providers might supply the Java stubs if they are using JAX-RPC or the VB equivalent if using .Net just to save clients, who can make use of them, time and hassle. Even for intranet Web service, it seemed like

client using multiRefs instead of qualified names?

2003-01-02 Thread Dan Stone
I've got a AXIS 1.0 RPC service that takes a Bean as an argument to its only method. .NET clients (vb and c#) can use it, no problem. AXIS client is having trouble - The difference? : AXIS client uses 'MultiRef' instead of the qualified name for the Bean argument (iQ411_3_0:TransactionRequest).

Re: axis ant task in netbeans

2003-01-02 Thread Gene Chuang
Thanks for all your valuable input Steve. >Well, ant does its thing differently; you can't really align the codebase that well Given that axis standalone commandlines (WSDL2Java, Java2WSDL and Admin) are more stable and better supported than their ant-task counterparts, would it be simply better (o

RE: Interoperability Axis with .NET (C#)

2003-01-02 Thread McCaslin Orion
Title: RE: Interoperability Axis with .NET (C#) Using the Axis1.0 samples for encoding using custom serralizer/deserializer, I wish to pass an array of complex data types to .Net(C# Web Reference).  In addition, I am using Java2Wsdl.  The C# .Net side Web Refernce auto-generated code catche

RE: JAX-RPC Web Services in the Real World

2003-01-02 Thread Anne Thomas Manes
You should be able to make your Web services available simply by publishing the WSDL. Providing client stubs is much more problematic since you have to provide a stub that can run on the client side (a Java stub generated by Axis isn't much help to a VB client). You can find quite a few demonstrat

RE: Packaging Axis...

2003-01-02 Thread Joe Hanink
I just started using Axis and had some difficulty with server-config.wsdd at first. Being the server config file, there should be only one. Chances are, you packaged up the axis context, which has /WEB-INF/server-config.wsdd that's pre-empting the one you want designated (see server.xml to see if

JAX-RPC Web Services in the Real World

2003-01-02 Thread Marion . Morrison
With so many of you offering your own web services (many of which seem quite elaborate I might add), I'm wondering practicality of making these services available. Are you simply making the WSDL available and leaving it to the client to generate the client-side stubs or are you generating the stub

Re: Interoperability Axis with .NET (C#)

2003-01-02 Thread Steve Loughran
- Original Message - From: "Gene Chuang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 11:05 Subject: Re: Interoperability Axis with .NET (C#) > > Sorry about the mis-information. I was looking at: http://msdn.microsoft.com/library/default.asp?url=/library

Re: axis ant task in netbeans

2003-01-02 Thread Steve Loughran
- Original Message - From: "Gene Chuang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 11:00 Subject: Re: axis ant task in netbeans > > >I'd try specifiying an output="some file name" attr > Yup, that did the trick, at least when running the task in NetBean

Packaging Axis...

2003-01-02 Thread James Carman
I would like to package the AxisServlet in my webapp along with other pieces of my distributed application (Java WebStart servlet, etc.). How do I "war up" my files so that when I place my WAR file in the webapps directory of a server, it will already have my service deployed? I've tried supplyin

Re: Interoperability Axis with .NET (C#)

2003-01-02 Thread Gene Chuang
Sorry about the mis-information.  I was looking at: http://msdn.microsoft.com/library/default.asp?url=""> >Note   In addition to being provided with the Office XP Web Services Toolkit 2.0, the SOAP 3.0 DLL is also included in the SOAP Toolkit 3.0 along with a user guide. And I assumed that the SOAP

Re: axis ant task in netbeans

2003-01-02 Thread Gene Chuang
>I'd try specifiying an output="some file name" attrYup, that did the trick, at least when running the task in NetBeans.  The wsdl was generated after the "BUILD SUCCESSFUL" message, although subsequently NB pops an Exception window with a StackOverflow message: Annotation:  Exception occurred in R

Re: Interoperability Axis with .NET (C#)

2003-01-02 Thread Steve Loughran
- Original Message - From: "Gene Chuang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 01, 2003 19:12 Subject: Re: Interoperability Axis with .NET (C#) > > I just created a web service with Axis 1.1beta for a RPC method that returns an array of JavaBeans. > I insta

Re: axis ant task in netbeans

2003-01-02 Thread Steve Loughran
- Original Message - From: "Gene Chuang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 01, 2003 18:59 Subject: Re: axis ant task in netbeans > > Whoops, sorry about posting Classpath-related exceptions. After going through the Ant manual, I rewrote my build.xml so

Re: DSML activity?

2003-01-02 Thread Martin Smith
Anne--Sounds like a lead I need to check on. Just what I was trolling for: the possibility that "it's been done"! Thanks again, and I'll report back on progress . . . Martin PS--I'm not thinking of abandoning Axis. This is just one rather specialized W-S project! Anne Thomas Manes wrote: N

RE: Axis fault when client invokes a webservice which is published in internet

2003-01-02 Thread Norris Merritt
Your symptom looks a lot like what I get if I run my web service under the debugger and abruptly terminate it without permitting it to send a response to the client.  It may be that Axis behaves this way when the server side closes the socket connection without sending anything, which is rea

re: problem using CVS from today

2003-01-02 Thread James Black
Hello, This morning I checked out, and compiled the source. I am now getting an error that I don't know how to troubleshoot. What I did was to delete my implementation file, and have it be regenerated by calling WSDL2Java and feed in my wsdl file as the input. I get this error: faultCode:

RE: JMS Sample : ClassCastException

2003-01-02 Thread Kevin Wang
Add $SONIC_HOME/lib/tools.jar to your classpath and try again. I got the same error when I first try to run it. Kevin -Original Message- From: Krishnakumar B [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 01, 2003 12:20 AM To: [EMAIL PROTECTED] Subject: RE: JMS Sample : ClassCastE

RE: AXIS/JMS example

2003-01-02 Thread Jaime Meritt
The sample documentation gives a pretty good walkthrough of how to create the administered objects for SonicMQ using the Sun FSContext implementation. These must be created before running the sample. You should also be able to see the entries in Sonic Explorer that you have created. Are you able

RE: DSML activity?

2003-01-02 Thread Anne Thomas Manes
Not to disuade you from using Axis, but you might consider using either GLUE or WASP, both of which provide better support for doc/literal than Axis does. You wouldn't need to worry about building a custom serializer. Given a full schema, they will generate all the serializer code you need. Both of

out of memory exception

2003-01-02 Thread Joe Hanink
The threads on xml-rpc streaming were quite interesting.  Did anyone decide if there a simple answer to whether xml-prc can/should be used to return response data of arbitrary length? Axis xml-rpc webservices have the conveniences I’m looking for, with this one drawback.  If I have to resor

Axis fault when client invokes a webservice which is published in internet

2003-01-02 Thread Shobha Rani Jagathpal
Hi, I am trying to use a webserivce published in xmethods.net I have used axis to create client stubs and the code is as follows   import javax.commerce.util.BASE64Encoder; import com.ammai.www.*; import java.net.URL;   public class PDFCreatorClient {   public static void main(Stri