RE: XDoclet and Axis deployment descriptor

2003-03-07 Thread Armond Avanes
Hi, Yes! I’m generating the WSDD file by XDoclet and it has been fully ok. What’s the problem on your side?   Best Regards, Armond   -Original Message- From: Bill Pfeiffer [mailto:[EMAIL PROTECTED] Sent: Saturday, March 08, 2003 2:14 AM To: Axis-User Subject: XDoclet and Axi

RE: Ser/Deser for ArrayList and java.sql.Date

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
I had the same problem and had to write my own serialisers/desrialisers for ArrayLists and other unsupported data types. Couldn't find any thing avaialable for these anywhere -Original Message-From: Bill Pfeiffer [mailto:[EMAIL PROTECTED]Sent: Saturday, March 08, 2003 2:3

Deployement Problem,

2003-03-07 Thread parmod mehta
Hi, I am starting with the Web Services. I have downloaded Axis 1.0, but I persistently getting the deployement problem. The sample progams are running perfectly fine, but I tried to deploy my own code, it gave be the error given below: -

Very Eargent- What are the jars needed?

2003-03-07 Thread Risath
Hi All, I want to access a .NET Web Service from an Applet using axis client.The Applet comes fron the same IIS server.I sidned the applet.So the security problems were eliminated.But still I get no class found error message. I want to know what are the classes or jars should be sent to the

XDoclet and Axis deployment descriptor

2003-03-07 Thread Bill Pfeiffer
Is anyone working on an XDoclet task to generate the WSDD from javadoc tags?   Bill Pfeiffer

RE: AxisClient uses?

2003-03-07 Thread Dan Weston
Title: Message The client stubs generated by Axis are great for creating the basic SOAP message, but what if you want to add other new features, such as encryption or digital signatures as specified by WS-Security? Adding handlers to the client-side handler chain allows these additional feat

Ser/Deser for ArrayList and java.sql.Date

2003-03-07 Thread Bill Pfeiffer
I am experimenting with axis to expose some of our large grained business methods (EJB SessionBeans).  Most of our methods work with an object graph composed largely of XDoclet generated javabeans, but also of some hand coded classes to pull the graph together.  The handcoded classes use Arr

Passing parameters to the Service via deploy file

2003-03-07 Thread Milind Gadre
Hi again. In the sample deploy.wsdd files, I see entries such as How can I add additional parameters and which method can get me access to the additional parameters?? I have tried the following methods without luck. MessageContext.getProperty ServiceDesc.getProperty Th

AxisClient uses?

2003-03-07 Thread Volkmann, Mark
Title: AxisClient uses? What are some examples of why one would want to use an Axis engine on the client-side.  I'm referring to the class AxisClient and the whole handler framework it supports.  It makes perfect sense to me why I'd want this on the server-side supported by AxisServer.  I just

SAXException Bad types - complex type - holder issue?

2003-03-07 Thread Stephen Gornick
I am getting SAXException Bad types (class RemotableExampleTypes.TExample -> int) and do not know how to diagnose the problem. My web service is a Delphi 7 app, so I used WSDL2Java to create the bindings from the WSDL. The GetCust operation responds with the complex type TExample. Any help grea

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
Jim, You might also try importing the XMLife schema from under the element. Per WS-I, you should import a schema from within the section, but .NET might have trouble with that. So it can't hurt to try importing it as a direct child of . Anne > -Original Message- > From: Brain, Jim [mai

Another approach

2003-03-07 Thread Brain, Jim
When you tell AXIS to deploy a service with style=message, it has no way of knowing what actual message you intend to send to it. The generated WSDL reflects this. Is there a way or are there plans for a way to add a WSDD descriptor tag that will tell AXIS that the input for the service is a docu

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
I found an error: In your portType, don't put a namespace qualifier on the name of the operation: Anne > -Original Message- > From: Brain, Jim [mailto:[EMAIL PROTECTED] > Sent: Friday, March 07, 2003 11:21 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Need help with Doc/Lit web service >

Re: Performance

2003-03-07 Thread Frank Cohen
I've seen similar concurrency problems in Axis while I was doing a performance project for a customer. This was last Summer when Axis was still very, very new. I haven't had a chance to dig into the code but I suspect there is a problem with the way Axis handles threads and globals. If you nee

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
They've come out with a new release -- maybe it works better. I figured it was worth a try. > -Original Message- > From: Brain, Jim [mailto:[EMAIL PROTECTED] > Sent: Friday, March 07, 2003 11:21 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Need help with Doc/Lit web service > > > I have the

RE: Need help with Doc/Lit web service

2003-03-07 Thread Brain, Jim
I have the CapeClear one, but when I use it, .NET chokes on the WSDL. Jim Jim Brain, [EMAIL PROTECTED] "Researching tomorrow's decisions today." (319) 369-2070 (work) SYSTEMS ARCHITECT, ITS, AEGON FINANCIAL PARTNERS -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED]

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
So obviously it's having trouble doing the import. Your import statement looks fine, but imports are tricky. Are you using a WSDL editor tool? It might help you make sure that everything's copasetic. Cape Clear offers a free one. Anne > -Original Message- > From: Brain, Jim [mailto:[EMAI

RE: Need help with Doc/Lit web service

2003-03-07 Thread Brain, Jim
I can try, but it is HUGE (It's the ACORD standard for insurance policy data, and it contains 288 top level elements, and thousands of lower elements) BTW, here is the error wsdl.exe is giving: Schema validation warning: Type 'http://ACORD.org/Standards/Life/2:TXLife' is no t declared. Schema val

RE: "Connection Closed" SQLExceptions

2003-03-07 Thread Chris Forbis
Off the top of my head I think with the Tomcat pool you can set the auto commit in it's setup and also you should set the verifiy before checkout option in Tomcat pooling. Use something like SELECT 1 FROM DUAL; it is nice and quick and will make sure before if gives you a connection that it is v

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
Jim, You might try copying the TXLife type definition from the schema directly into your WSDL (rather than importing the schema). For that matter, you might want to remove stuff you don't need: the imports of the encoding schema. Anne > -Original Message- > From: Brain, Jim [mailto:[EMA

"Connection Closed" SQLExceptions

2003-03-07 Thread Roy Wood
This is probably not really an Axis problem, but I suspect that someone else here has probably run into it before. I've got a SOAP service that accesses an Oracle database via JDBC. Most of the methods exposed are pretty light (fetch a bunch of rows from a table, maybe insert into one table), an

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
The entry for the same in the deployment descriptor is -Original Message- From: Balakrishna, Vandana (Cognizant) Sent: Friday, March 07, 2003 9:31 PM To: [EMAIL PROTECTED] Subject: RE: Type Mappings problem while deploying service. Hi, There seems to be another problem in deployin

RE: Need help with Doc/Lit web service

2003-03-07 Thread Brain, Jim
OK, here is an update: On #1, the WSDL I started with came from AXIS itself, so it is dropping the Exception. I don't know what schema or namespace to put it in (I saw a previous thread about this being a bug. Note to developers: it is still broke in RC2) I switched it to xsd:anyType and it wil

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
Hi, There seems to be another problem in deploying the service. I have an application specific Java Bean and while deploying the service, though the AdminClient does not throw up any error, the Websphere error log says Unable to deploy typemapping: {urn:ClaimManager}NestedDO java.lang.ClassNotF

RE: EchoAttachmentsService wsdl generation error

2003-03-07 Thread Paul Knepper
This is attachdeploy.wsdd from the samples\attachments that came with Axis 1.1 RC1. I don't have the WSDL, that is what I'm trying to generate. See my initial message for the error I get when trying to generate the WSDL. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org

Exposing EJBs as Web Services: Recommended approach?

2003-03-07 Thread pchoudhu
I would like to expose EJB APIs as a web service. The aim is to provide clients with a wsdl ,that they can use to generate code that'll call our APIs. From the lists it looks like there are a number of approaches to this. I'd like to know what is recommended for what I'm trying to achieve. The cl

InvocationTargetException

2003-03-07 Thread Sonja Pieper
Hi, I set up my service and all. It seems to be working. But now I am getting a java.lang.reflect.InvocationTargetException anyone seen this before and can tell me what is wrong? (yes I still need to set up my soap monitor but it is friday late afternoon and I would rather be at home - would b

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
Hi Mike, Thanks a ton for the help. I'd just realised the fact that I hadn't specified an appropriate deserializer factory when your mail confirmed the same..:) Have managed to deploy the web service successfully!! regards, Vandana. -Original Message- From: Mike Burati [mailto:[EMAIL P

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Mike Burati
Looks like you solved half the problem - the SerializerFactory half. The error below is when AXIS is trying to create a Deserializer via a DeserializerFactory, but your type mapping is specifying the SerializerFactory for both the SerializerFactory and DeserializerFactory type mapping properties

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
yes, I guess that is the problem. Thanks...:) I wrote this serializerfactory with just the code as given below: package com.metlife.ins.portal.disability.common.encoding; import org.apache.axis.encoding.ser.*; public class CollectionSerializerFactory extends BaseSerializerFactory { public

WSDL2Java and minOccurs/maxOccurs sequence problem

2003-03-07 Thread Silveste® Poza®nik
I have a problem when generating java class that should hold an "unbounded" number of subelements when using WSDL2java stub generator. The Schema (see under) describes the element containing unbounded sequence of elements, while (as far I can see) the generated java class Batch is not capable of

RE: Bean Serializer/ Deserializer

2003-03-07 Thread Mike DuVall
Thanks for the info, Paul. I actually did figure that out this morning through trial and error. Being able to specify the makeup of the bean via BeanInfo looks to be a very nice way of solving several problems that I am having. One problem in particular is that we have several classes that ha

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Mike Burati
Vandana, The BaseSerializerFactory that appears to be throwing the ClassCastException, is looking for an AXIS SerializerFactory, a Java Factory class which is used to return instances of Serializers to AXIS. The Class you appear to be configuring as the Factory though in that typeMapping is t

RE: Type Mappings problem while deploying service.

2003-03-07 Thread Cory Wilkerson
Needs a SerializerFactory and a DeSerializerFactory -- you've problem just given it the serializers & deserializers. -Original Message- From: Balakrishna, Vandana (Cognizant) [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 8:39 AM To: [EMAIL PROTECTED] Subject: Type Mappings proble

Type Mappings problem while deploying service.

2003-03-07 Thread Balakrishna, Vandana (Cognizant)
Hi, I have two questions. I write a java application and expose it as a web service using AXIS. The methods take in custom data objects for which I specify the appropriate type-mappings in the deployment descriptor file. The entry in the deployment descriptor for the type mapping is as follows

RE: Bean Serializer/ Deserializer

2003-03-07 Thread Paul Andrews
They use the reflection package. If you implement BeanInfo classes you can control precisely what gets serialized/deserialized. Look in the java.beans package for more info. > -Original Message- > From: Mike DuVall [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 06, 2003 2:38 PM > To: [

RE: Using style Document in WSDD For Deployment

2003-03-07 Thread Krishnakumar B
hi   Thanks for the response. But i still have some problems. I have tried setting the namespace. Now the SOAP request is      http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">     Wo

Re: SOAPAction Header

2003-03-07 Thread Nicola Muratori
I supposed... :) but the question is: HOW can I set an HTTP Header in a SOAP request using AXIS? thanx :) Nicola - Original Message - From: "Eric Rajkovic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 8:09 PM Subject: Re: SOAPAction Header > Nicola, > >

RE: Need help with Doc/Lit web service

2003-03-07 Thread Anne Thomas Manes
Jim, #1: There's no declaration for the tns3: namespace. Do you have a schema that defines the Exception type as referenced by the second schema element? http://xmlife.acord.org"; xmlns="http://www.w3.org/2001/XMLSchema";> http://schemas.xmlsoap.org/soap/encoding/"; />