Re: Unable to initialize context error with EJB on IPlanet (iAS 6.0)

2002-11-14 Thread Raghavan Srinivasan
one way would be to tweak org/apache/soap/providers/StatelessEJBProvider.java to use the following mechanism to create the InitialContext . iAS 6.0 supports the no args mechanism of creating the IntitialContext inside the container . try { /// current mechanism javax.naming.InitialContext

Re: do an Apache SOAP 2.3 release ?

2002-04-26 Thread Raghavan Srinivasan
Hi Sanjiva , This makes a lot of sense to me . For folks that have been using / certifying their applications with the 2.2 release(and have not yet adopted Axis) , handling bugs / features introduced in future builds means having to go through cvs and figure out exactly which

Re: xsi type, NS_URI_CURRENT_SCHEMA_XSD

2002-02-05 Thread Raghavan Srinivasan
Hi Oliver , This is not the answer to your question , but is a related change . I think you need to also change the QName array in Constants.java that contains schema mappings for various versions . QName schema2001QNames [] incorrectly uses timeInst2001QName (xsd:timeInstant)

Re: WSDL?

2002-01-29 Thread Raghavan Srinivasan
Gary Feldman wrote: 007201c1a90b$6de93920$[EMAIL PROTECTED]"> From: Wallis, Simon (Toronto - 22 Front)Sent: Tuesday, January 29, 2002 4:10 PM 1) Is WSDL a Microsoft-only thing? WSDL is a proposal that has been submitted to the W3C, but not yet

Re: WSDL?

2002-01-29 Thread Raghavan Srinivasan
sorry the URL should have read www.themindelectric.com Raghavan Srinivasan wrote: [EMAIL PROTECTED]"> Gary Feldman wrote: 007201c1a90b$6de93920$[EMAIL PROTECTED]"> From: Wallis, Simon (Toronto - 22 Front)Sent: Tuesday, January 29, 2002 4:10 PM

xsd:timeInstant Problems ?

2002-01-18 Thread Raghavan Srinivasan
I am trying to use WSDL generated classes (using mind electric glue 2.0.1 ) to call an Apache Soap service (2.2) . I am returning a Java DateTime variable using the following encoding Date date = new Date() ; pLastModifiedDate = new Parameter("mLastModified" , Date.class , date , null );

WSDL , Apache Soap question

2002-01-11 Thread Raghavan Srinivasan
I have a Apache Web service one of whose methods takes in java.util.Hashtable as a parameter . I understand that the Apache Toolkit supports Hashtable encoding . But i want to write a WSDL interface to this service that toolkits from other languages could use to generate stubs . I could'nt find

No Deserializer found ...Apache - Apache

2002-01-07 Thread Raghavan Srinivasan
I know this one error has been seen by a lot of folks using the MSTK with Apache . Has anyone seen this with an Apache client calling a Apache service ? I am trying to send across a complex type across a Soap call . I have taken care to register the serializer-serializer combo with both the

writing serializers for complex objects

2001-12-16 Thread Raghavan Srinivasan
how would i write a serializer for a complex object that looks like.. class AddressHolder { // this contains a list of Address objects HashMap addresses ; // . } class Address { getName() ; getZip() ; ... } Does AddressHolderSerializer() have to

Base Complex Type ?

2001-12-14 Thread Raghavan Srinivasan
I tried tweaking the address2 Serializers class and created a BaseSerializer that dynamically loads up other serializers and deserializers based on the type of the object / name of the XML element as follows . public class BaseSerializer { public void marshall () { serHandlerType =