off topic

2002-10-11 Thread Tanmay Kumar
Hi all, Currently apache SOAP is using java reflection APIs to invoke a method of EJB. Is there any negative side of using reflection to invoke an EJB method. EJB spec says "the application server should deny java.lang.reflect.ReflectPermission to EJBs." But I think this is regarding using reflec

Re: Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Thanks a lot Scott for your nice explanation. Due to your explanation only, today we can finalize our project design. regards, Tans - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 10:29 PM Subjec

Custom Deserializer

2002-10-10 Thread Tanmay Kumar
Hi all, Apart from using apache SOAP in my project, we have one more specific requirement for which Is it possible to use the existing/modifying Apache source code? If yes, my requirement is that I want to pass a DOM node to unmarshall() method of a Deserializer (may be Bean or custom) during run

Values coming as null

2002-10-08 Thread Tanmay Kumar
Hi all, Sorry to bother u all, but I cant help it. Thanks to the mailing list creator. I searched some of the archive, but coouldn't find my problem . I am able to get user defined object as return value . But though this object is having all its member variables with values, response.getReturnV

Re: BeanSerializer not found..

2002-10-08 Thread Tanmay Kumar
Hi all, I found the mistake being done by me. I was not having this statement in my client program call.setSOAPMappingRegistry(smr); Now it is working fine. Thanks, Tans - Original Message - From: "Tanmay Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTE

BeanSerializer not found..

2002-10-08 Thread Tanmay Kumar
Hi all, I am facing problem while passing a user defined object as one of the parameters to webservice method. I know the parameters passed to QName object creation should exactly match with the DD entry. So I have edited my DD like this. http://schemas.xmlsoap.org/soap/encoding/";

Re: Silly Error

2002-10-04 Thread Tanmay Kumar
t; it to a new "xml type", such as QName("urn:my-urn", "Integer"), and map > the IntObjectDeserializer to that same xml type. > > Scott Nichol > > - Original Message - > From: "Tanmay Kumar" <[EMAIL PROTECTED]> > To: <[EM

Re: Silly Error

2002-10-03 Thread Tanmay Kumar
> There is very poor response today. Scott have answered to my question . > > But today due to his absence in mailing list, no reply has yet come. > > > > I hope u all have a solution for my question as u might have faced this > > before. > > Please answer as I am unable

Fw: Silly Error

2002-10-03 Thread Tanmay Kumar
mentioned paragraph. Tans - Original Message - From: "Tanmay Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 03, 2002 10:37 AM Subject: Re: Silly Error > Hi Scott, > > From your answer, It is not very clear what we should do. > If a

Re: Silly Error

2002-10-02 Thread Tanmay Kumar
d, you need to > deserialize to Integer, which you can do with a custom mapping. Of > course, this means all xsd:int will be deserialized to Integer, which > probably breaks any method that has an int parameter. > > Scott Nichol > > - Original Message - > From: &qu

Silly Error

2002-10-02 Thread Tanmay Kumar
Hi all, I am getting an strange error of no such method with the following code. My method signature for Webservice is public float testMethod(String city, Integer p) The parameter setting part of Client code is like this: Vector params = new Vector(); params.addElement(new Parameter("

Re: WebServices and EJB.

2002-09-30 Thread Tanmay Kumar
L within the tool, although you can use WSDL to describe services you > deploy with Apache SOAP. > > Scott Nichol > > - Original Message - > From: "Tanmay Kumar" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, September 30, 2002 9:5

Fw: WebServices and EJB.

2002-09-30 Thread Tanmay Kumar
to be EJB only to get additional advantage. So can I make my webservices as EJB using apache SOAP or AXIS ???   Any suggestion will be highly appreciated.   Tans   - Original Message - From: Tanmay Kumar To: [EMAIL PROTECTED] Sent: Monday, September 30, 2002 8:48 PM Subject

WebServices and EJB.

2002-09-30 Thread Tanmay Kumar
Hi all,   I had tried webservices with Weblogic(WL) 6.1 using its own libraries for SOAP and WSDL. All webservices which I have deployed in WL 6.1 are EJBs. This is also a guideline in WL scenario.   But when I try with Apache SOAP or AXIS on Tomcat or WL 6.1, webservices are simple java pro