Re: Missing element inFault error:

2004-01-01 Thread Vairamuthu Thayapavan
hi sriram wht version of the axis u used? use lastest version of the axis. regards vtpavan > I get the following error when i run WSDL2Java > > java.io.IOException: ERROR: Missing element inFault > "getQueues_faul > t1" in operation "getQueues_fault1", in binding getQueues > at > org.ap

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: Using handlers to look at method parameter values

2003-12-03 Thread vairamuthu thayapavan
hi it is possible. all the parameter type and the value should be on the request flow. i think u can get the value from the messagecontext or u have to write the deserializer to get the value from the request flow. regards vtpavan Is it possible to look at the values of the parameters of the met

RE:Security

2003-12-01 Thread vairamuthu thayapavan
hi Tony in the HttpAuthentication u can use http header element to pass the authentication information and u can use the HttpServletRequest methods to get the user name and the password. but in the soap message level authentication u need to deserialize ur message to get the password. in ur case

Re: xml date and dateTime mismatch in wsdl

2003-11-20 Thread vairamuthu thayapavan
hi same prob also occured to someone else in the mailing list. wsdl2java generate the sql.Date or util.date for the XSD_Date. see the class org.apache.axis.encoding.DefaultTypeMappingImpl. prob might be in the regenerating the XSD type from the java Date type. vtpavan > Hi all, > > I have run

Re: AXIS newbie problem(view deployed services)

2003-11-18 Thread vairamuthu thayapavan
hi Have u uncomment the servelet mapping for the AdminServlet. see the installation guide(attached with this mail). hope this will help u. vtpavan > > Hi, > > I have been using Netbeans and Tomcat for so long now.I have installed > the axis 1.1 and even validated it.My happyaxis.jsp runs.However

Re: handlers and custom types

2003-10-28 Thread vairamuthu thayapavan
hi! problem might occur in the serialization and deserialization part by handler invoke. u can observe the soap serialization message patteren using tcp monitor. then u can find out, what wrong in the serialization and deserialization . hope this 'll help u regards vtpavan - Original Messa

Re: java.sql.Timestamp

2003-10-22 Thread vairamuthu thayapavan
hi! actually in the default type mapping, XSD_TIME is mapped to the org.apache.axis.types.Time class as shown below. this type class use the java.util.Calendar. So what is happening here is, ur java.sql.Timestamp is mapped to the XSD_TIME and again it mapped to the java.util.Calendar not to the ja

Re: couple of questions

2003-10-12 Thread vairamuthu thayapavan
> On Wed, 8 Oct 2003 14:40:25 -0400, "[EMAIL PROTECTED]" > <[EMAIL PROTECTED]> said: > > Hi Ilja, > > Hi Shrikant, > > > If you already have java classes the why you have to regenerate those > > from > > WSDL? > > I thought I should, because

Re: wsdl2java generated client transport method

2003-10-08 Thread vairamuthu thayapavan
hi u can create call object using Service service = new Service(); Call call = (Call) service.createCall(); sometimes u need to add some handlers/chains and services in the client side. so u need client deploy wsdd. see the exaple axis-1_1\samples\transport-client deploy. regards vtpavan -

Re: couple of questions

2003-10-07 Thread vairamuthu thayapavan
hi u can't do any thing with having the wsdl file only. to deploy your webservice u have to generate server binding stubs using wsdl2java tool. those are discribed detaily in the axis userguide. regards vtpavan - Original Message - From: "Ilja" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> S

Re: Wrong namespace in the response??

2003-10-01 Thread vairamuthu thayapavan
hi i think ur wsdl has the targetname space uri 'http://axis.test.soap' as in following wsdl target namespace uri "http://soap.bookshop.com.   usually WSDL2Java tool generate the class package structure according to this targetname space uri and i think this uri remains in  response. regard

Re: How to extract values from SOAP message?

2003-09-17 Thread vairamuthu thayapavan
Title: How to extract values from SOAP message? hi use any of the xml parser or parser implementaion (sax , xml pull , ). take it as a xml doc   regards vtpavan - Original Message - From: Myatlyuk, Andrey To: '[EMAIL PROTECTED]' Sent: Wednesday, September 17, 2003 12:

performance difference

2003-09-16 Thread vairamuthu thayapavan
hi i run a sample in two way in the axis 1.1 1) using the tomcat 2)using simple axis server. i observed one thing that when we increase the request size tomcat starts to give better performance rather than simple axis server. is any specific reasons for that? Thanks in advance thayapavan

Re: java.io.IOException: No serializer found for class java.util.AbstractList$Itr

2003-09-14 Thread vairamuthu thayapavan
hi make sure u have registered ur type in the followin way or any other way in the client side.   call.registerTypeMapping(PurchaseOrder.class, q1, new org.apache.axis.encoding.ser.BeanSerializerFactory(PurchaseOrder.class, q1), new org.apache.axis.encoding.ser.BeanDeserializerFactory(Purch

Re: good tute for axis clients?

2003-09-02 Thread vairamuthu thayapavan
hi, write the clients urself for the complex types. for that, use the samples in the axis, that give the guide to write the clients. i think this way give more understanding ab client side. regards vtpavan - Original Message - From: "scott" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: Passing parameters to constructor

2003-09-01 Thread vairamuthu thayapavan
hi i think u mean the ws classes in axis. for that 1st specify a default constructor with out any parameter. then specify ur constructor with required parameter. - thayapavan - Original Message - From: "Massimo Barabino" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 29, 2

Re: How to define an array of array of string

2003-08-20 Thread vairamuthu thayapavan
hi Jhon Sanabria sorry,some wrong in previous mail. first create a class that give the way to return the array of array (call that class Array2 as a bean). QName qn = new QName( "urn:myarray2", "Array2" ); then register that type call.registerTypeMapping(Array2 .class, qn,new org.apache.axis.enco

Re: How to define an array of array of string

2003-08-20 Thread vairamuthu thayapavan
hi Jhon Sanabria first create a class that give the way to return the array of array (call that class Array2 as a bean). QName qn = new QName( "urn:myarray2", "Array2" ); then register that type call.registerTypeMapping(Array2 .class, qn,new org.apache.axis.encoding.ser.BeanSerializerFactory(Arra

Re: Can an element name begin with numbers?

2003-07-21 Thread vairamuthu thayapavan
hi colin i think, it won't give the error if u specify the namespace for those elements . - Original Message - From: "Colin Ma" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 5:57 AM Subject: Can an element name begin with numbers? > Hi there, > > I am a newbie

Re: Getting a webservice to return it's result as XML.

2003-07-09 Thread vairamuthu thayapavan
hi! go to the example->message u can get more knowledge Regards, vtpavan - Original Message - From: "Peter Ross" <[EMAIL PROTECTED]> To: "Axis Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 4:39 PM Subject: Getting a webservice to return it's result as XML. > Hi