RE: Help on name spaces in castor

2003-12-12 Thread Pradeep Jonnalagadda
Thanks Ozie i will try ur approach and let u know pradeep. This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in de

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: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
ercesImpl.jar;%JAVALIBS% \jak arta\xerces\2.2.1\lib\xmlParserAPIs.jar set cp=%classpath%;%axis.jar%;%xerces.jar% java -cp %cp% org.apache.axis.wsdl.WSDL2Java http://localhost:8080/server/axis/Services?wsdl There is also good documentation on the Axis website on how to use it, too. -Original Mess

RE: 1.2 alpha and castor serialization

2003-12-11 Thread Pradeep Jonnalagadda
arta\xerces\2.2.1\lib\xmlParserAPIs.jar set cp=%classpath%;%axis.jar%;%xerces.jar% java -cp %cp% org.apache.axis.wsdl.WSDL2Java http://localhost:8080/server/axis/Services?wsdl There is also good documentation on the Axis website on how to use it, too. -Original Message- From: Pradeep Jo

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
d BeanSerializer/Deserializer methods, which are optimized to use SAX pipeline. - Minimal customization for EnumTypes, which doesn't use DOM, and automatically generates the proper schema for WSDL. - Works with RPC encoded/literal, etc. Ozzie Gurkan -Original Message- From:

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

castor problem

2003-12-09 Thread Pradeep Jonnalagadda
Guys , When i use castor with axis i get this problem. I have followed this article http://www-106.ibm.com/developerworks/webservices/library/ws-castor/?Open&ca=daw-ws-news. But it gives me this error.I have thos class descriptor files but still it gives me this error. any help appreciated thx pra

RE: 1.2 alpha and castor serialization

2003-12-09 Thread Pradeep Jonnalagadda
This exactly the error i got. Will be great help if u find a solution to this!! This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail

Axis Gurus and Pundits Ps help

2003-12-04 Thread Pradeep Jonnalagadda
Guys, I'm trying to use axis with castor.The way i do it is 1. Define a wsdl which imports the schema of data packets which go back and forth(All files are included as attachment in this mail). 2. Generate java stubs and server side code out of it. 3. Generate castor classes out of sc

Invalid Element

2003-12-03 Thread Pradeep Jonnalagadda
Guys, I'm generating webservices around stateless ejbs.I feed remote interface to the java2wsdl tool and out of wsdl generate stubs.I edit the deploy.wsdd file to refer ejbs.I also edit deploy.wsdd and client stub to use castor serialzation .I However i get this error .My request xml

No such operation 'in0'

2003-11-26 Thread Pradeep Jonnalagadda
Guys, I'm generating a wsdl out of java code and from the wsdl generating client stubs and server code.However when i make calls to the method which takes a single param it gives me "No such operation 'in0'". Any ideas greatly appreciated guys My wsdl file and part of server-conf

Problem

2003-11-25 Thread Pradeep Jonnalagadda
Guys, When i try to make client calls it returns me with the following exception any ideas appreciated pradeep. AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException faultSubcode: faultString: No such operation 'in0' faultActor: faultNode: faultD

Problem

2003-11-25 Thread Pradeep Jonnalagadda
Hi Guys, My webservice has signature something like this : public castor.Movie getMovie(java.lang.String in0) throws java.rmi.RemoteException; any ideas appreciated thx pradeep. I get this exception AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.genera

RE: A very unique situation.

2003-11-21 Thread Pradeep Jonnalagadda
es an existing EJB - that is done through the server-config.wsdd file you posted earlier. Hope this helps Keith -Original Message----- From: Pradeep Jonnalagadda [mailto:[EMAIL PROTECTED] Sent: 21 November 2003 17:00 To: [EMAIL PROTECTED] Subject: RE: A very unique situation. Keith,

RE: A very unique situation.

2003-11-21 Thread Pradeep Jonnalagadda
SDL. This may not give you everything that you need - it depends on exactly what types the remote interface contains and you may need to modify it by hand - but then you should be able to run WSDL2Java on it and get the stub classes. Hope this helps Keith -Original Message- From: Pradeep

A very unique situation.

2003-11-20 Thread Pradeep Jonnalagadda
Hi Guys, I'm trying to implement axis web services .My architecture demands that my webservices talk to stateless session ejbs. Also I'm using doc/literal scheme of arhitecture. Initially when i did a prototype my webservices where simple java beans .I generated wsdl out of it and fr

RE: End point specification

2003-11-20 Thread Pradeep Jonnalagadda
getCurrentContext(); HttpServlet req = (HttpServlet) context.getProperty(HTTPConstants.MC_HTTP_SERVLET); String enpointURL = req.getServletContext().getInitParameter ("endpointURL"); HTH, Thunder -Original Message- From: Pradeep Jonnalagadda [mailto:[EMAIL PROTECTED] Sent: T

End point specification

2003-11-20 Thread Pradeep Jonnalagadda
Hi Guys, Can i set end point url as a parameter in server-config.wsdd file and avoid hard coding in the client code.My problem is i cannot use serversidelocator on client side .Also where can i find the schema for server-config.wsdd file. thx pradeep.

Exposing ejb stateless beans as Webservices

2003-11-17 Thread Pradeep Jonnalagadda
Guys, I need to expose stateless session beans as webservices.Given an ejb i would like to build a wsdl file and all the other needed files for axis from the ejb.I'm using websphere application developer.Is there any tool like java2wsdl which will generate the required files to expose as w

Re: Connection refused-Server is up and running

2003-11-13 Thread Pradeep Jonnalagadda
. Pradeep

Connection refused-Server is up and running

2003-11-13 Thread Pradeep Jonnalagadda
Could any one tell how to deal with connection refused exception. I have searched the mailing list archive but of no use.Any insights would be of great help I'm able to goto my end point http://localhost:9080/axis/services/StockQuoteSOAPPort on the browser. But when i wrote the client code

RE: Usage with WSAD5.1

2003-11-13 Thread Pradeep Jonnalagadda
Sent: Wednesday, November 12, 2003 6:30 PM To: [EMAIL PROTECTED] Subject: RE: Usage with WSAD5.1 http://www.websphere-world.com/modules.php?name=News&file=article&sid=707 -Srinivas -Original Message- From: Pradeep Jonnalagadda [mailto:[EMAIL PROTECTED] Sent: Wednesday, Nov

RE: problems

2003-11-13 Thread Pradeep Jonnalagadda
f you have found a solution please let us know. I suspect we are missing some castor classes from our classpath. -Original Message- From: Pradeep Jonnalagadda [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 1:42 PM To: [EMAIL PROTECTED] Subject: RE: problems Thanks

Usage with WSAD5.1

2003-11-12 Thread Pradeep Jonnalagadda
Hi Guys, Do any of you know how to install and run axis on WSAD5.1 .I'm under severe time crunch and your help would be greatly appreciated.Just point me to some docs .It would be great. pradeep. --

RE: problems

2003-11-12 Thread Pradeep Jonnalagadda
Thanks a lot Asif.It really helped.any idea on this: Same command: - Error processing 'classes/com/ibm/w3/services/stockquote/deploy.wsdd' org.apache.axis.deployment.wsdd.WSDDException: javax.xml.rpc.JAXRPCException: Nu ll serializer factory specified. javax.xml.rpc.JAXRPCException: Null serializ

problems

2003-11-12 Thread Pradeep Jonnalagadda
Hi Guys, I'm trying to change the server-config.wsdd with the deploy.wsdd by running admin server command.Though i have the class com.ibm.w3.services.stockquote.ChangeType i get class not found exception.Any ideas appreciated??. ps see the stack trace follows: C:\wsappdev51\workspa

RE: Castor class files

2003-11-12 Thread Pradeep Jonnalagadda
Thanks a lot!!! This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e

Castor class files

2003-11-12 Thread Pradeep Jonnalagadda
Hi Guys, Where can i get castor class files.The docs say axis1.1 final draft should have it.But the castor files are missing .Any reason??. pradeep. This is a PRIVATE message. If you are

Casor question

2003-11-12 Thread Pradeep Jonnalagadda
Guys, I have downloaded axis1.1 version .Though 1.1 version is said to have castor support i do not see castor clases .Where do i get them. And also im a newbie. What is a cvs version?. pradeep. T