AW: Axis 1.2RC1 and WebSphere Application Developer 5.1.2

2004-11-14 Thread Dorner, Thomas
Title: Axis 1.2RC1 and WebSphere Application Developer 5.1.2 Hi AV,   maybe I do not understand you the right way!?   What I am doing is the same as you do in your WSAD, I tell Websphere to use my own/new saaj.jar in my AXIS webapp. I am doing this by setting the classpath/WS-Specific-

Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-14 Thread V D
When generating java code using wsdl2java, I have these lines: oper.setStyle(org.apache.axis.enum.Style.RPC); oper.setUse(org.apache.axis.enum.Use.ENCODED); These enums causes problem when I compiling with jdk 5.0. So, does Axis 1.2 supporting Jdk1.5? Is there any option for the co

Can generates files in difference directories?

2004-11-14 Thread h2ooo x
Hi! May I know if the Axis's Ant task able to generate Java files into difference directories? Currently I generate the files into one temporary directory and then move the selected files into the specified directories, is there a better way of doing this? Here are the directory structure: s

Re: does anyone have complex serialization working?

2004-11-14 Thread Dennis Sosnoski
Hi John, Yes, it is perfectly possible to handle arrays of beans with references to other beans, and similar structures. For some examples of code that does this, download the Axis samples from my comparison of SOAP performance at http://www.sosnoski.com/presents/cleansoap/comparing.html This a

Re: C++ DynamicInvoker

2004-11-14 Thread Samisa Abeysinghe
--- David Song <[EMAIL PROTECTED]> wrote: > Axis Java has a DynamicInvoker written by Dims. What's the equivalent for > Axis C++? None as of now. Samisa... > > Thanks! > -David > __ Do you Yahoo!? Check out the new Yahoo! Front Page. w

Re: typeMapping and Bad Types SOLVED

2004-11-14 Thread Kevin J. Duling
After stepping through the Axis source, I found the solution to my problem. And I think I found a bug. Or 3 bugs. I'm not sure which. OperationDesc.getOutputParamByQName(QName) calls ParameterDesc.getQName(). But ParameterDesc.getQName() returns the variable "name". For my object, "name" was "Cu

RE: does anyone have complex serialization working?

2004-11-14 Thread John Menke
Thanks Nathan, so basically Axis can't do it. That's why nobody has responded. The docs seem to indicate it can be done...so much for the docs. I don't have the resources to code a framework at the moment. There was an article i saw on using Castor and Axis maybe i can do that. -jm -Origin

RE: does anyone have complex serialization working?

2004-11-14 Thread Nathan Wardle
We've actually ended up writing our own serialiser and deserialiser based on a reflection excerpt from Better, Faster, Lighter Java by Bruce Tate and Justin Gehtland (pg 70 something). We combined this with the strategy pattern (one class per type of strategy (ie ArrayStrategy, Map, Collection,

does anyone have complex serialization working?

2004-11-14 Thread John Menke
Is it even possible to serialize an array of beans where the beans have references to another bean? Nobody has been able to come up with a working example. beanMapping is not working for me. I have posted several times and nothing... i'm beginning to think it's not possible. -jm

Re: Repost: OT-ANN: My favorite SoA is Hessian

2004-11-14 Thread Davanum Srinivas
I tried to ignore this. but can't. EVERY month or so, someone posts, i have a better mouse trap.Yes, you do. BUT this is a forum for Axis users who have problem related to Axis. If you want to advocate something, do it outside. If you have a specific request about a feature that is present in h

What is the name space for DataHandler?

2004-11-14 Thread V D
When generating a wsdl from java with attachment (DataHandler), I see this: in the message declaration. Is this "apachesoap" namespace not following standard? What is the standard way of doing this? Would this WSDL be a problem if running under other library/platform than Axis? Thanks, Vh.

java.lang.NoSuchMethodException: org.apache.axis.encoding.ser.BeanSerializerFactory.create(java.lang.Class, javax.xml.namespace.QName)

2004-11-14 Thread Kevin J. Duling
I've a whole mess of these in my log4j each time I create a call object. Looking at the Axis 1.2RC1 jar, I can find the classes, but not these methods on them. Did something get out of sync between WSDL2Java and the Axis lib in RC1? What's happening here? java.lang.NoSuchMethodException: org.apa

Cannot run AdminClient

2004-11-14 Thread V D
Running axis 1.2 RC, when I deploy the attachment example, I got the follow error: Processing file attachdeploy.wsdd Exception: AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: java.net.ConnectException: Connection refused: connect fa

Re: typeMapping and Bad Types

2004-11-14 Thread Kevin J. Duling
I'm saying I can process single complex types in the response without my client-config.wsdd being configured. I believe this is because of the code in the Stub class. My next step is to try (again) to put something in the client-config.wsdd that will understand this response. However, when I get

Re: Repost: OT-ANN: My favorite SoA is Hessian

2004-11-14 Thread Vic
Easily! I return compound nested collections all the time. (Ex: resulsts of rows form a db such as iBatis) http://www.caucho.com/hessian/#Introduction-to-Hessian .V John Menke wrote: Vic! Can Hessian do complex object serialization? Say i have a bean x that contains a ref to bean y and i need to

RE: Repost: OT-ANN: My favorite SoA is Hessian

2004-11-14 Thread John Menke
Vic! Can Hessian do complex object serialization? Say i have a bean x that contains a ref to bean y and i need to return an array of x can hessian handle that? -jm -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Vic Cekvenich Sent: Sunday, November 14, 2004 10:35 AM To

Repost: OT-ANN: My favorite SoA is Hessian

2004-11-14 Thread Vic Cekvenich
V Read: http://theserverside.com/news/thread.tss?thread_id=29658 or http://www.caucho.com/hessian/#Introduction-to-Hessian I find Axis heavy and not able to do complex things I need relative to Hessian. .V

Re: axis-client in EJB session bean (jboss)

2004-11-14 Thread Peter Mount
Peter Gerstbach wrote: Hi, I've generated with Axis-1.1 stubs for the Google-webservice and built a working client. Then I've built an EJB session bean in JBoss were I call the google-webservice. I use the same (copy-paste) methods in the bean as in the axis-client but every time I invoke the bean-

axis-client in EJB session bean (jboss)

2004-11-14 Thread Peter Gerstbach
Hi, I've generated with Axis-1.1 stubs for the Google-webservice and built a working client. Then I've built an EJB session bean in JBoss were I call the google-webservice. I use the same (copy-paste) methods in the bean as in the axis-client but every time I invoke the bean-method from an ejb clie