Re: Help Abt WSDD

2003-12-11 Thread Vairamuthu Thayapavan
hi copy and paste those tag manually to the server-config file. hope it will work regards vtpavan > I cannot include and in the > server-config.wsdd file. > Otherwise its working > > - Original Message - > From: "Jaspreet Singh" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thu

Re: ...getting null values

2003-12-11 Thread Aaron Hamid
ServiceLifecycle params and web.xml init params have nothing to do with each other. Service params are configured in your WSDD. Furthermore, ServiceLifecycle init method will NOT be called if implement it in your *Impl class. You must implement it in your *Skeleton class (modify the generate

tomcat + axis - .jws not working

2003-12-11 Thread Shaun Smith
Hi all. Firstly, although I already have tomcat running Citrix NFuse, I'm very new to the whole thing. I'm attempting to use Tomcat to serve axis for soap communication, and I've run across a problem. Firstly, happyaxis.jsp appears to be happy: ---

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Thilo Frotscher
Hi! You're right - the figures show very well why there are different orders on the client and the server for system-specific, global and transport- specific chains. But that wasn't the question :-) The question was about what's not explained in the figures: why are the JAX-RPC handlers invoked be

...getting null values

2003-12-11 Thread I-Sampige, Srinivas
Hi I have implemented the ServiceLifecycle interface method in my web service implementation class and trying to read some input parameters from my web.xml. But, I don't see the input parameters at all in my "init" method even though I am able to print out other details like the real path to a

Help on name spaces in castor

2003-12-11 Thread Pradeep Jonnalagadda
Guys, ANy idea which file i have to change in order for the response look like request.The request is in http://beans";> whereas the response . Due to this im getting castor serializer problems thanks pradeep. Why the response is not in the same name space as request. The request

Castor Serializers

2003-12-11 Thread Pradeep Jonnalagadda
Hi Ozzie, I'm counting ur solution since castor serializer gives me "uable to find field descriptor " error messages.From what i understand u need castor enum serializers for enum types and for the rest of types beanserializers work.For bean serizliers to work with castor

RE: Zipping up stream?

2003-12-11 Thread rmkellogg
No but a similar technique should be possible. This took me quite sometime to get working between .NET and Axis (6 weeks if I remember correctly). Be sure to contribute back if you get something working. Good luck! Rick > Thanks, does this work with a standard generated axis client--one generat

RE: Zipping up stream?

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Thanks, does this work with a standard generated axis client--one generated with WSDL2Java? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 4:22 PM To: [EMAIL PROTECTED] Subject: Re: Zipping up stream? Please see the following discu

Re: Zipping up stream?

2003-12-11 Thread rmkellogg
Please see the following discussion: http://marc.theaimsgroup.com/?l=axis-dev&m=106086909809576&w=2 Good luck! Rick

Zipping up stream?

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message Has anyone messed around with trying to zip-up the input and output streams of the XML? I can imagine a huge performance improvement on large messages if both client and server side can put in support for zipping up the stream.   Thanks, Ozzie Gurkan Manheim

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
Hi Ozzie, You have indicated earlier in one of ur mails that ur using beanserializers for non enum types .So did u code those BeanSerializers.If so could you send that code also. thanks a lot pradeep This i

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
I'm now getting pretty clear on this .One last question?. 1.For all other castor classes which are not enumtype should i use castorserializers ?. thx pradeep. This is a PRIVATE message. If you are not

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
1. Castor generates special classes when you use the "xs:restriction" for simpleType in the schema. These special classes have no public constructors and can only be created via the use of "valueOf" method. Since Java doesn't provide "Enum" data types like C, C++ does, everyone has their own type-s

Why the response is not in the same name space as request.

2003-12-11 Thread Pradeep Jonnalagadda
Hi Guys, I posted this one before but did not get any help.I can send any files u want to look at ?. thx pradeep. Why the response is not in the same name space as request. The request http://www.w3.org/2001/XMLSchema"; xmlns:soapenv="http://schemas.xmlsoap.org/soap/env

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
Hi Ozzie, Thanks for the help. I have few questions based on ur email reply. 1. What are castor enum type classes. 2. Do i have to change typmapping for every entry in deploy.wsdd file to refer to CastorEnumTypeSerializorFactory/CastorEnumTypeSerializorFactory or only few sel

RE: Deserializer help needed

2003-12-11 Thread Daniel Smeltzer
Title: Message Thanks a ton!  You have saved me a great amount of time.  Thanks again!   Daniel -Original Message-From: Gurkan, Ozzie (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 12:49 PMTo: '[EMAIL PROTECTED]'Subject: RE: Deserializer help

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
One other advantage to my approach is that the client side doesn't need the Castor Serializer/Deserializers at all--not even the enum type. That is because I allow the WSDL to be created by Axis Server automatically and hence the WSDL2Java creates pure Bean Serializer/Deserialzer code. As a matter

RE: Deserializer help needed

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message Here are the two attached files for helping with serialization and de-serialization of Castor EnumType classes. You will need to add the following to your wsdd file:     http://mycompany.com//>   Notice the reflection takes place on the serializer to pull out the string (call

RE: Deserializer help needed

2003-12-11 Thread Daniel Smeltzer
Title: Message That would be greatly helpful!  Thanks! -Original Message-From: Gurkan, Ozzie (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 12:39 PMTo: '[EMAIL PROTECTED]'Subject: RE: Deserializer help needed I have tackled this proble

RE: Deserializer help needed

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message I have tackled this problem with Castor EnumType classes. If you like, I can attach the source code and you can duplicate it. It also automatically generates the schema needed for WSDL generation. -Original Message-From: Daniel Smeltzer [mailto:[EMAIL PROTECTED

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Unlike the article, I don't include the XSD in the WSDL file. I let the automatic WSDL generation process that Axis does generate it for me. I do generate the castor classes (along with the *Descriptor classes) from the XSD file and define these as beanMappings: ht

Deserializer help needed

2003-12-11 Thread Daniel Smeltzer
Title: Deserializer help needed I need help finding information about writing a custom deserializer.  I have a class I want to pass through Axis that acts as a type-safe enumeration.  It has no public constructor.  The class can return an instance that is matched against certain data, but no

Re: Confusion in getHeaderByName methods - Please help

2003-12-11 Thread Christoph Tratter
Hi! If passing "true" solves your problem and you're sure that actors will not be involved in any way, then stick to it. If you want to program defensively, you could still do something like the following: org.apache.axis.message.SOAPHeaderElement header; header = env.getHeaderByName(namespace,

RE: Confusion in getHeaderByName methods - Please help

2003-12-11 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Hi Tratter, Thanks for your reply.. Yes when I invoked getHeaderByName passing argument "true" worked when I ported to another system. Though I don't have any actors defined, first API worked in one system, but when I ported the same service to another system, first API didn't work, but second API

Re: Confusion in getHeaderByName methods - Please help

2003-12-11 Thread Christoph Tratter
Hi, Ranjith! Maybe this won't bring much light into your case, but as any help is deeply appreciated... In org.apache.axis.message.SOAPEnvelope, where both methods are defined, the method nr. 1) just does the following: public SOAPHeaderElement getHeaderByName(String namespace,

Re: Enumeration Question

2003-12-11 Thread Stuart Barlow
It is the java2wsdl that is the problem step. I guess that it would need to spot public final static Strings and ints etc and make them enumerated types. For now a manual edit of the WSDL is working. Thanks, Stuart. McDaniel, Joe wrote: Hi Stuart, Part of the source distribution are the test cas

RE: Confusion in getHeaderByName methods - Please help

2003-12-11 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Hi, Somebody please explain me this or point me to some documentation(I read Axis API documentation) which explains this a little more.. Any help will be deeply appreciated. Thanks, Ranjith Pillai. -Original Message- From: PILLAI,RANJITH (HP-PaloAlto,ex1) [mailto:[EMAIL PROTECTED]

RE: intended purpose of JAXRPCHandler class ??

2003-12-11 Thread Mark D. Hansen
OK - thanks for this explanation. I want to use a JAX-RPC handler in a non-service specific way, but can't make use of JAXRPCHandler class because of some problems noted in an earlier post to th is list. I am going to try to come up with a patch for JAXRPCHandler and post it along with a bug repo

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Christoph Tratter
Hi Thilo! In the Axis Architecture Guide (http://ws.apache.org/axis/java/architecture-guide.html) the behaviour you describe is explained to be intended. (Beside points 3 and 7, which are not explained). Imho the figures show very well, why there's a different order of chains on server and clie

Re: intended purpose of JAXRPCHandler class ??

2003-12-11 Thread Thilo Frotscher
When deploying JAX-RPC handlers using via WSDD and the element, you can't decide _when_ your handlers will be invoke. They will always be invoked between the global chain and the service-specific chain (on the server side), or between the global chain and the transpot specific chain (on the client

Optimizing large soap object

2003-12-11 Thread Karl Baum
Hi. I am running an axis web service which takes and returns a very large complex bean as an argument. I use the BeanSerializer to Serialize the object. Everything functionally works but the service runs too slowly for the project requirements. I am thinking the easiest way to optimize is to re

intercept request message

2003-12-11 Thread Jan Kester
Hello,   is it possible to create a soa-rpc-request message, save it, but don't send it? I would think of this being useful if I want to split up my total processing into several, controlable steps. That is, have the ability to not execute a step, but only generate the requestmessage for th

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
Hi Ozzie, I'm interested in ur solution. Can u send me the required files and give me a short note on how to use them in the context of the article . thx pradeep. This is a PRIVATE message. If you a

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Thilo Frotscher
Axis developers: was the decribed behaviour intentionally coded like this or is it a bug? Harald Pollak wrote: ok! I agree with you in all points. 1. Its realy confusing that client and server chain are different. 2. If jax-rpx handlers are service spezific ( I have missunderstood somthing )-

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
For those using Castor and Axis, I have a better solution... I have had to only write a custom serializer/deseralizer to handle the SimpleType Enum classes and have used the standard BeanSerializer/Deserializer to do the rest. I am successfully running in production a full blown castor based soluti

What is high-fidelity recording and by turning it off do I get pe rformance improvements?

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message I noticed that there is a "streaming" setting for a Service, which seems to turn off "highFidelityRecording". This seems to turn off the SAX2EventRecorder, which records every event in the Deserialization process. Why is this defaulted to true? And in what situations should I

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Harald Pollak
ok! I agree with you in all points. 1. Its realy confusing that client and server chain are different. 2. If jax-rpx handlers are service spezific  ( I have missunderstood somthing )-> the client should     allso act like the server.     So I allso think its a bug. Harry Am Do, den 11.12.

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Thilo Frotscher
Harald Pollak wrote: A jax-rpc handler chain can only handle jax-rpc handlers but axis can deal with both That's true. > and jax-rpc handler are allways global and not service spezific. That's not true. JAX-RPC handlers are service specific in Axis. Thus, I am wondering why they are invoked af

Re: Apache Axis Tutorial

2003-12-11 Thread Yves
I got my javac to work from everywhere now (I just reinstalled the sdk), but that wasn't the problem. Hmmm. Does anyone have XP running? How do you have the classpath and path and everything set up? Since I have all the axis jars in the classpath and and in the path, I think there could easily be s

Re: Help Abt WSDD

2003-12-11 Thread Dhanush Gopinath
I cannot include and in the server-config.wsdd file. Otherwise its working - Original Message - From: "Jaspreet Singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 11, 2003 5:50 PM Subject: RE: Help Abt WSDD > Hi > > > -Original Message- > > From: Dhanush

Can Axis be made to handle messages that are not SOAP-based?

2003-12-11 Thread Gurkan, Ozzie (MAN-Corporate)
Title: Message The problem I am having is that not every client is willing to switch to SOAP for sending messages. I have looked through a lot of source code and I think that there is a way to create a new AxisServer and MyCustomServiceHandler to deal with non-SOAP messages. Is this the best

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Craig Duncan
Bug 25440 posted.

Re: Bug? JAX-RPC handlers on the client

2003-12-11 Thread Harald Pollak
about your question: As I have understood your and Dapeng Wang presentations on W-JAX: A jax-rpc handler chain can only handle jax-rpc handlers but axis can deal with both, and jax-rpc handler are allways global and not service spezific. so the transport handlers und global handlers build t

RE: Migration from Apache SOAP 2.2

2003-12-11 Thread Craig Duncan
Go here and scroll to the bottom of page. http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 12:13 PM To: [EMAIL PROTECTED] Subject: Migration from Apache SOAP 2.2

Recall: my body parts are in the header

2003-12-11 Thread Bradberry, Rick
The sender would like to recall the message, "my body parts are in the header".

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Craig Duncan
Castor 0952 Axis 1.1 - I downloaded the zip file containing the source and then built it with ant. Unfortunately most of the things I have done have been complex. I started down the path of castor + axis because of the following link: http://www-106.ibm.com/developerworks/library/ws-castor/ Th

RE: my body parts are in the header

2003-12-11 Thread Bradberry, Rick
David, the reporting stuff is on gemsrm at /opt/msadmin/jakarta/webapps the only file you need is gemsIMAC.war. Just put in the webapps directory on the production server, make sure it is owned by the jakarta owner and restart tomcat. Pretty simple eh? We also need to coordinate [EMAIL PROTECT

my body parts are in the header

2003-12-11 Thread Bradberry, Rick
Hi all, I'm new to this web server stuff and have a problem with a web service that I am trying to use. I'm using WSDLtoJava to generate the classes needed to access a web services. My problem is that the soap:body parameters are being sent in the soap:header and the web services is ignoring them

Bug? JAX-RPC handlers on the client

2003-12-11 Thread Thilo Frotscher
Hi! Browsing the source code of Axis 1.2 alpha I found out, that the order in which handlers are called on the client side is as follows: 1) Service Specific Request Chain 2) Global Request Chain 3) JAX-RPC Handlers 4) Transport Specific Request Chain 5) Send SOAP message to service 6) Transport S

RE: Help Abt WSDD

2003-12-11 Thread Jaspreet Singh
Hi > -Original Message- > From: Dhanush Gopinath [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 11, 2003 5:31 PM > My Problem is after executing this the details abt the > WebService are not > updated in the server-config.wsdd file. the adminclient has some known bugs. so try dep

Re: Using xdoclet to generate wsdd

2003-12-11 Thread __matthewHawthorne
Aren't you sending this to the wrong list? Try http://xdoclet.sf.net -- all the info is there. Olivier RICHAUD wrote: Hi all, As we make extensive use of xdoclet in our project, we looked at the xdoclet tags. But how do I call it from my ant build file? Thanks. Olivier.

Help Abt WSDD

2003-12-11 Thread Dhanush Gopinath
Group, Can any one tell What happens after executing this command ? > java org.apache.axis.client.AdminClient deploy.wsdd My Problem is after executing this the details abt the WebService are not updated in the server-config.wsdd file. How do i deploy this? I am not able to access the WSDL of t

Re: Couple of questions on Axis Handlers

2003-12-11 Thread Thilo Frotscher
Hi! Could you find answers to these questions in the meantime? I would be very interested in them. Thanks, Thilo Hi All, I have couple of questions on Axis handlers. Any help in answering this = questions (answers, hints, pointers are all welcome) is greatly = appreciated. 1. I want to configure

Re: Enumeration Question

2003-12-11 Thread Stuart Barlow
Thanks for all the info. I am aware of the type safe enumerations pattern and the benefits this brings. But when I run Java2WSDL I do not get any enumerated definitions of any kind. They are just ignored. Did you submit a fix for the Java2WSDL tool? Or am I making a mistake when running it? :-) McD