Re: beanMapping tag in wsdd with Axis 1.2

2005-02-09 Thread Bill Keese
plex types due to which .NET client fails to de serialize the objects to beans.   How do I add a complex type bean to a service even if the service methods are not directly referring to the bean? Axis1.1 used to define the bean in WSDL if wsdd has beanMapping for that bean (even if service is not

beanMapping tag in wsdd with Axis 1.2

2005-02-09 Thread Praveen Peddi
x27;t define the complex types due to which .NET client fails to de serialize the objects to beans.   How do I add a complex type bean to a service even if the service methods are not directly referring to the bean? Axis1.1 used to define the bean in WSDL if wsdd has beanMapping for that bean (ev

Re: WSDD deployment with JAR file?

2005-02-09 Thread Nate Jones
ering whether > it is possible to deploy a *.jar file with a Web > Service Deployment > Descriptor (WSDD) file. > > As far as I can understand from the docs ( > http://ws.apache.org/axis/java/reference.html#DeploymentWSDDReference > as well as the User's Guide), this is

WSDD deployment with JAR file?

2005-02-09 Thread Morten Egelund Rasmussen
Hi all! I just discovered the wonders of Apache Axis, and was wondering whether it is possible to deploy a *.jar file with a Web Service Deployment Descriptor (WSDD) file. As far as I can understand from the docs ( http://ws.apache.org/axis/java/reference.html#DeploymentWSDDReference as well as

adding complex type to the wsdd file not working with axis 1.2

2005-02-08 Thread Praveen Peddi
bean, I am referring it in wsdd file. I don't understand why Axis doesn't define that bean in the WSDL.   My requirement is to return a complex type bean based on the condition. So I have to return Object and leave it to the client for casting to the right complex type bean. .NET client fails s

is there a way to avoid duplication in wsdd? specifically for typeMappings

2005-01-28 Thread Jay Glanville
Hello all. I know that there are ways to reduce duplication in the WSDD with respect to the handlers. I'd like to know if there is a similar feature for type mappings? For example, I know that I can define a handler before the global configuration element, like this: And then u

BeanMapping for Fault in wsdd file

2005-01-08 Thread Madeleine Wright
my service class in exactly the way that it is in EmployeeInfo and it works except that, without a type mapping, I do not get the info message in the faultstring - just the type of error that it is. If I deploy the wsdd file without the type mapping, I get no error message. But when I deploy t

[Proposal] for WSDD

2005-01-05 Thread Barzilai Spinak
Hi, this is a proposal and attempt for discussion of a feature I think Axis doesn't implement at the moment. It's not a big change but I don't think it will make it into 1.2 The issue comes originally from this need: I'd like, in my deployment descriptor (wsdd) to

WSDD file for Multiple PortType ?

2004-11-23 Thread Beytullah Yildiz
Hello, I am working on deploying a multiple port type service. I have manually created wsdl file and deployed it into an absolute path. I have correctly created client stubs. If I deploy folowing service element, PortTypeA is working: FULL_PATH/MultiplePortTypes.wsdl If I deploy

Pleaase help with beanMapping / typeMapping in wsdd

2004-11-10 Thread John Menke
PLEASE HELP!!! - I'm stuck I have a webservice that uses 2 beanS. One bean contains a reference to the other. When i try to deploy the webservice without bean mappings it works and i get my wsdl defined like below. But when i add beanMapping tags to serialize my beans the deploy fails without an

Bad Types - BeanMapping without wsdd??

2004-11-09 Thread jay dude
Impl.java:963) I'm at a total loss of what to do. Since I don't use a wsdd file, I don't know where to put my BeanMapping, if I even need one? Every help I can get is _highly_ appreciate! See below for information of the setup. (Please reply to [EMAIL PROTECTED] as well as the mail-l

"Couldn't find a matching Java operation for WSDD"

2004-11-01 Thread Denis Schlesinger
Hi all,   After having deployed a web service which echoes base64-encoded binary data on a JBoss 3.2.5 server with AXIS/Java 1.1, I get the following error message:   Exception - org.apache.axis.InternalException: java.lang.Exception: Couldn't find a matching Java operation for

RE: wsdd schema

2004-10-27 Thread Anne Thomas Manes
I’ve never seen the schema, but here’s a great reference: http://www.osmoticweb.com/axis-wsdd/   From: Samir Shaikh [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 3:57 PM To: [EMAIL PROTECTED] Subject: wsdd schema   Hi,   Does anyone know where I

wsdd schema

2004-10-27 Thread Samir Shaikh
Hi,   Does anyone know where I can find the schema or dtd that describes a wsdd's format.   Thanks, Samir

WSDD Syntax for specifying xsd:date java.util.Calendar mapping

2004-10-18 Thread Jeff Oh
I have an interface with a method that looks something like this: = public interface Foo { public boolean isBar( String fooName, java.util.Calendar startDate, java.util.Calendar endDate); } = I have successfully deployed an implementation of this interface by using a .wsdd

Re: WSDD files for EJB web services

2004-10-18 Thread Peter Smith
> > My questions are: > > > > Q. When exposing an EJB as an axis web service do I have to always > > *manually* make the WSDD file or can I somehow make an appropriate > > one using wsdl2java. > > You can use XDoclet (xdoclet.sf.net) axis support to build your

Re: WSDD files for EJB web services

2004-10-18 Thread Adrian Perez Jorge
Hi, My questions are: Q. When exposing an EJB as an axis web service do I have to always *manually* make the WSDD file or can I somehow make an appropriate one using wsdl2java. You can use XDoclet (xdoclet.sf.net) axis support to build your .wsdd files from your source code javadoc-like

WSDD files for EJB web services

2004-10-17 Thread Peter Smith
Hi,   I was able to deploy a simple EJB and then deploy an axis service exposing it. The simple WSDD file I manually created and used for the axis deployment is as follows.   http://xml.apache.org/axis/wsdd/"    xmlns:java="http://xml.apach

Re: Custom parameters in wsdd file?

2004-10-16 Thread enric
/** * Enric Jaen Villoldo * PhD student * http://nmg.upc.es/~enric */ On Sat, 16 Oct 2004 [EMAIL PROTECTED] wrote: > > If I am not wrong you can specify your own parameters like this: > > > > ... > > > Regarding how your service could retrieve the parameters, I am not quite > su

Re: Custom parameters in wsdd file?

2004-10-16 Thread enric
Villoldo * PhD student * http://nmg.upc.es/~enric */ On Sat, 16 Oct 2004, Stefan Henke wrote: > Hi, > I´m wondering if it is possible to add some service specific parameters to > the wsdd-deployment descriptor for my service. What I try to do is to > declare some initialization para

Custom parameters in wsdd file?

2004-10-16 Thread Stefan Henke
Hi, I´m wondering if it is possible to add some service specific parameters to the wsdd-deployment descriptor for my service. What I try to do is to declare some initialization parameters for the service that should be provided inside the service at runtime. But changing the parameter values

AW: WSDD configuration problems

2004-10-14 Thread Florian Theurich
vil in the detail! Thanks anyway Florian -Ursprüngliche Nachricht- Von: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 14. Oktober 2004 17:54 An: [EMAIL PROTECTED] Betreff: RE: WSDD configuration problems Florain, You specify that you want document/literal in

RE: WSDD configuration problems

2004-10-14 Thread Anne Thomas Manes
spaces, and namespace prefixes in the "beanMapping in WSDD" thread. Regards, Anne From: Florian Theurich [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 10:42 AM To: [EMAIL PROTECTED] Subject: RE: WSDD configuration problems Hi A

RE: beanMapping in WSDD

2004-10-14 Thread Arijit Mukherjee
;From: Mark Malinoski [mailto:[EMAIL PROTECTED] >Sent: 14 October 2004 16:41 >To: [EMAIL PROTECTED] >Subject: RE: beanMapping in WSDD > > >FYI - Client side you need to call registerTypeMapping on the >call object for each container class as well. > >Mark A. Malinoski

RE: beanMapping in WSDD

2004-10-14 Thread Mark Malinoski
lt;[EMAIL PROTECTED]> 10/14/04 11:30 AM cc Subject Please respond to R

RE: beanMapping in WSDD

2004-10-14 Thread Suzy Fynes
Thanks for that!   -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 16:31 To: [EMAIL PROTECTED] Subject: RE: beanMapping in WSDD   You can have more than one tag in a WSDD. You cannot specify more than one bean class in the same tag

RE: beanMapping in WSDD

2004-10-14 Thread Anne Thomas Manes
You can have more than one tag in a WSDD. You cannot specify more than one bean class in the same tag.   Anne   From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 10:48 AM To: [EMAIL PROTECTED] Subject: beanMapping in WSDD     Hi,   Can there

RE: no method found for wsdd deployed file

2004-10-14 Thread Suzy Fynes
Nope, no joy. Still doesn’t work though if I only put one method in either, very strange!   -Original Message- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 15:53 To: [EMAIL PROTECTED] Subject: RE: no method found for wsdd deployed file   Comma

RE: no method found for wsdd deployed file

2004-10-14 Thread Sagar Pidaparthi
Comma separator missing in allowed methods?   -Original Message- From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 7:49 AM To: [EMAIL PROTECTED] Subject: no method found for wsdd deployed file   Hey can anyone figure out why when I deploy the service

no method found for wsdd deployed file

2004-10-14 Thread Suzy Fynes
bean mapping for an array of objects of a class I created. Basically this is my wsdd   deployment name = "Orphans"   xmlns="http://xml.apache.org/axis/wsdd/"   xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">      

beanMapping in WSDD

2004-10-14 Thread Suzy Fynes
  Hi,   Can there be more than one <beanMapping> tag in an WSDD doc? Or can you specify more than one bean class in the same tag?   Thanks, Suzy

RE: WSDD configuration problems

2004-10-14 Thread Florian Theurich
on) and what impact would that change have on my service implementation??   Thanks Florian       -Ursprüngliche Nachricht- Von: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 13. Oktober 2004 12:39 An: [EMAIL PROTECTED] Betreff: RE: WSDD configuration problems

RE: WSDD configuration problems

2004-10-13 Thread Anne Thomas Manes
e. (or add addition typeMapping definitions in the wsdd for your string arrays.) I assume that Axis generated a different namespace for the Con and ArrayOfCon types because of your custom type mapping. There's no problem with including an element called "con" within a complex

WSDD configuration problems

2004-10-12 Thread Florian Theurich
ctory"   deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />     Now I have following questions:   1)    Is there anything wrong concerning my approach in the WSDD?

wsdd classes with imports

2004-10-07 Thread Suzy Fynes
Hi   I want to deploy a class that has imports from other classes ive created at. It works ok when I used a jws file and had the jar of the classes set as part of the classpath but when I use wsdd its not finding the import files.   Is there a particular way it needs to be set up

RE: deploying a wsdd file

2004-09-29 Thread Suzy Fynes
[mailto:[EMAIL PROTECTED] Sent: 29 September 2004 09:26 To: [EMAIL PROTECTED] Subject: RE: deploying a wsdd file   That doesn't include all jars in the lib directory (sadly), try adding each and every jar file e.g: When you run 'set', you should rather see   CLASSPATH=/us

RE: deploying a wsdd file

2004-09-29 Thread Suzy Fynes
Ah I see. Thanks I’ll give that a try!     -Original Message- From: Sunkara, Jayachandra S [mailto:[EMAIL PROTECTED] Sent: 29 September 2004 09:26 To: [EMAIL PROTECTED] Subject: RE: deploying a wsdd file   That doesn't include all jars in the lib directory (sadly), try a

RE: deploying a wsdd file

2004-09-29 Thread Sunkara, Jayachandra S
as PATH search   HTH Jayachandra -Original Message- From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: RE: deploying a wsdd file   Hey thanks for everyone for your help but I've set the classpath and it still can&#x

RE: deploying a wsdd file

2004-09-29 Thread Suzy Fynes
, I can see the classpath as above. Thanks Suzy -Original Message- From: Greg Michalopoulos [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 18:05 To: [EMAIL PROTECTED]; 'jayachandra' Subject: RE: deploying a wsdd file Just store the classpath in an environment variable and al

RE: deploying a wsdd file

2004-09-28 Thread Greg Michalopoulos
Fynes [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 12:39 PM To: [EMAIL PROTECTED]; 'jayachandra' Subject: RE: deploying a wsdd file I'm running it from a local server (unix), so would I have to set the classpath each time I want to run it? -Original Message- Fr

RE: deploying a wsdd file

2004-09-28 Thread Larry Meadors
ED] Sent: 28 September 2004 17:33 To: [EMAIL PROTECTED] Subject: Re: deploying a wsdd file See if you have axis.jar in your classpath when running that command. jaya - Original Message - From: Sagar Pidaparthi <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 09:29:51 -0700 Subject: RE: dep

RE: deploying a wsdd file

2004-09-28 Thread THOMAS, JAI [AG-Contractor/1000]
Check $CLASSPATH settings. If axis.jar is not included there, that is obviously the problem! Jai -Original Message- From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 11:39 AM To: [EMAIL PROTECTED]; 'jayachandra' Subject: RE: deploying a wsdd file I

RE: deploying a wsdd file

2004-09-28 Thread Suzy Fynes
I'm running it from a local server (unix), so would I have to set the classpath each time I want to run it? -Original Message- From: jayachandra [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 17:33 To: [EMAIL PROTECTED] Subject: Re: deploying a wsdd file See if you have axis.j

Re: deploying a wsdd file

2004-09-28 Thread jayachandra
See if you have axis.jar in your classpath when running that command. jaya - Original Message - From: Sagar Pidaparthi <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 09:29:51 -0700 Subject: RE: deploying a wsdd file To: [EMAIL PROTECTED] One simple way to get around the problem

RE: deploying a wsdd file

2004-09-28 Thread Sagar Pidaparthi
One simple way to get around the problem is to copy the relevant content of your wsdd to server-config.wsdd manually.  This can get you going before you find a solution to the problem you are facing.   Sagar   -Original Message- From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent

deploying a wsdd file

2004-09-28 Thread Suzy Fynes
Hi,   I’m trying to run the AdminClient on my service using the following command   java org.apache.axis.client.AdminClient axis/serviceDeployer/BankModulsCheckServiceDeploy.wsdd-1 http://81.192.132.189:8080/axis/services/AdminService   and I getting the following error   Exception

Bug with automatically generated WSDD

2004-09-03 Thread WAJSBERG Julien RD-BIZZ
Hi, we're facing two problems that seems different but also related, with typeMapping and beanMapping in a WSDD file. The second one will be in another mail ;) We're trying to expose, in RPC/Literal style, the following java class : public class BusinessStructImpl { public

Serializable Class=> what is the type maping info to be included in the WSDD

2004-09-01 Thread Mahen Perera
Hi I am having a web service method like the following public Serializable Method(String key){ } What is the required Type Mapping information (typemapping section in WSDD) to be included in the WSDD , in order to deploy this web service in Axis. Mainly,,, the concern is the "Seriali

Deploy with a WSDD - problem with WebServices with argument

2004-08-19 Thread LEBLANC, Damiens
Hi,       I'm beginning in WebServices with AXIS and I can't arrive to deploy a WebService with an argument.       My wsdd is described below:      xmlns:java="http://xml.apache.org/axis/wsdd

AXIS - Can't deploy with a WSDD file

2004-08-18 Thread LEBLANC, Damiens
Hi,       I'm working with this environment · Sun Solaris 8 · AXIS 1.1 · Tomcat 4.1 · Java 1.4   I'm trying to deploy my first service with a WSDD file. But I have an exception :   Processing file deploy.wsdd Exception: (

XML-Schema for WSDD?

2004-08-17 Thread W.Beck
Hi folks, I want to validate my deployment/undeployment descriptor files but so far now I was not able to locate a schema for WSDD on the net. Where do I find it? What'S the URL that goes into the xsi:noNamespaceSchemaLocation attribute of the deployment/undeployment root element? thx cu* Willy

RE: Java2WSDL importSchema - how to use in a WSDD

2004-08-05 Thread Nathan Sowatskey
one by specifying the wsdlInputSchema parameter in a WSDD file. > > Here is an example. Hope this helps somebody else who might have the same issue: > >xmlns="http://xml.apache.org/axis/wsdd/"; > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; > xmlns:jav

RE: Java2WSDL importSchema - how to use in a WSDD

2004-08-03 Thread Mark D. Hansen
Nobody answered this, so I dug around in the source code and found out that it can be done by specifying the wsdlInputSchema parameter in a WSDD file. Here is an example. Hope this helps somebody else who might have the same issue: http://xml.apache.org/axis/wsdd/"; xmlns:xsd="htt

RE: Classpaths for WSDD

2004-08-01 Thread Vijai Mohan
ensorLogic│M2M made easy. 972-934-7375 x 2111 972-934-7376 (fax) [EMAIL PROTECTED] www.Sensorlogic.com -Original Message- From: Anand Natrajan [mailto:[EMAIL PROTECTED] Sent: Sunday, August 01, 2004 6:45 AM To: [EMAIL PROTECTED] Subject: RE: Classpaths for WSDD Things to try: 1.

RE: Classpaths for WSDD

2004-08-01 Thread Srinath Perera
If the Admin client say deployment succsessful but the service has not deployed (have not added to the server-config.wsdd) file the reson may be the class given by the wsdd is not in the classpath. (copy the class in to the Axis before you try deployment.) try and let us know :). If that is the

RE: Classpaths for WSDD

2004-08-01 Thread Anand Natrajan
is telling : me that the web service has been deployed its not appearing as a deployed : web service. If you have any joy finding out what the problem is let me : know... : : >From: "Suzy Fynes" <[EMAIL PROTECTED]> : >Reply-To: [EMAIL PROTECTED] : >To: <[EMAIL PROTECTED]

RE: Classpaths for WSDD

2004-07-30 Thread rory galvin
y-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: Classpaths for WSDD >Date: Fri, 30 Jul 2004 15:28:57 +0100 > >Hi, > >I'm trying to deploy my wsdd file and have been having trouble. I can >view the current list of deployed webservices in axis from

RE: wsdd and jws services

2004-07-30 Thread Doug Davis
Java Web Service -Dug "Somerville, Michael S" <[EMAIL PROTECTED]> 07/30/2004 11:33 AM Please respond to axis-user To [EMAIL PROTECTED] cc Subject RE: wsdd and jws services Newbie question -- does the .jws extension stand for: a) Java Web Start b) Jav

RE: wsdd and jws services

2004-07-30 Thread Somerville, Michael S
] Subject: wsdd and jws services Hi Our team has webservices in different flavors, there are some that are deployed as .jws files and a few recent ones that were generated by having custom wsdd files. I'm trying to deploy them all as different modules in one webapp under Tomcat 4.1. The ser

Classpaths for WSDD

2004-07-30 Thread Suzy Fynes
Hi,   I’m trying to deploy my wsdd file and have been having trouble. I can view the current list of deployed webservices in axis from the main page but when I tried deploying my deploy.wsdd, after running the adminclient on it, the page is just blank from “And now some web services

RE: WSDD and WSDL

2004-07-30 Thread Roy, Anthony
I am fairly new to axis and WSDL/WSDD, but there seems to me two ways to go about setting up a web service with the three technologies axis, WSDL and WSDD: 1) Create the Java classes to act as your web service. Create a WSDD to deploy the classes as a web service on Axis. Use Java2WSDL or the

RE: WSDD and WSDL

2004-07-29 Thread Chandrasegaram Jeyakumaran
regards, Jeyakumaran > That's a big help! Thanks! > Just one other thing, if I have a more complicated java class that I > wish to deploy as a web service, does that mean I use a wsdd file to > deploy it?If so where does the wsdl come from? > > -Original Message- >

Re: WSDD and WSDL

2004-07-29 Thread Chandrasegaram Jeyakumaran
rvice. That deployment is done in the wsdd file. Here wsdl plays no role with this. For jws it is an instant deployment. I think it is better to have a look at axis userguide which explains these stuffs in detail. regards, Jeyakumaran > I'm just looking for clarity as to exactly how th

wsdd and jws services

2004-07-29 Thread Makesh Rao
Hi Our team has webservices in different flavors, there are some that are deployed as .jws files and a few recent ones that were generated by having custom wsdd files. I'm trying to deploy them all as different modules in one webapp under Tomcat 4.1. The services that are .jws files

RE: WSDD and WSDL

2004-07-29 Thread Suzy Fynes
That's a big help! Thanks! Just one other thing, if I have a more complicated java class that I wish to deploy as a web service, does that mean I use a wsdd file to deploy it?If so where does the wsdl come from? -Original Message- From: Anand Natrajan [mailto:[EMAIL PROTECTED] Sen

Re: WSDD and WSDL

2004-07-29 Thread Anand Natrajan
Suzy, WSDDs are Axis artifacts - they're present just to tell Axis what service you intend deploying. Subsequent to deploying a WSDD you have a web service (running inside Axis), and can get to the service's WSDL. JWS files also are Axis artifacts, I believe (this one I not so sure

WSDD and WSDL

2004-07-29 Thread Suzy Fynes
I’m just looking for clarity as to exactly how the web service deployment descriptor works.  How is it interrelated with wsdl in axis? Do I still create the WSDL by deploying a jws file? Once tested using the AdminClient class in axis how is processed from there?   Any help would be great

Re: Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread Nathan Sowatskey
, 2004-07-28 at 17:21, karim wrote: > Nathan Sowatskey wrote: > > >Hi > > > >I am trying to use java2wsdl to create the wsdl for a set of Java > >classes. I have a complex class that needs to be serialised with the > >bean serialiser. I understand that I need to

Re: Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread karim
Nathan Sowatskey wrote: Hi I am trying to use java2wsdl to create the wsdl for a set of Java classes. I have a complex class that needs to be serialised with the bean serialiser. I understand that I need to make this association in a .wsdd file, which should look like this: http://xml.apache.org

Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread Nathan Sowatskey
Hi I am trying to use java2wsdl to create the wsdl for a set of Java classes. I have a complex class that needs to be serialised with the bean serialiser. I understand that I need to make this association in a .wsdd file, which should look like this: http://xml.apache.org/axis/wsdd/"; xmlns

wsdl2java generates wrong wsdd class name

2004-07-21 Thread Sagar Pidaparthi
Title: wsdl2java generates wrong wsdd class name Hi, When I use wsdl2java utility to generate wsdd file, it generates the file containing svcname followed by SoapBindingSkeleton, instead of just SvcName  As shown below. AccountManagerClientAgentSoapBindingSkeleton What am I doing

Java2wsdl usage to generate wsdd file

2004-07-20 Thread Sagar Pidaparthi
Hi, When I use java2wsdl utility to generate wsdd file. It generates the file containing svcname followed by SoapBindingSkeleton, instead of just SvcName As shown below. AccountManagerClientAgentSoapBindingSkeleton What am I doing wrong to generate the wrong wsdd file? How do I correct it

serialization without mentioning inside .wsdd

2004-07-15 Thread pagarwal
he.axis.message.SOAPBodyElement in registry [EMAIL PROTECTED]faultstring>   <detail />   soapenv:Fault>   soapenv:Body>   soapenv:Envelope> How do I serialize when I do not have  a  .jws registered using a .wsdd. thanks in advance, Parag ***  HSS-Unclassified   ***

RE: newbie: wsdd problem

2004-07-12 Thread Laxma Reddy Dendi
Thanks Vijai Mohan and Harald Pollak for your replies. After going through the tomcat log file carefully I found that somewhere "wsdd" files are in wrong shape. so i searched all the "wsdd" files under the axis directory and found that I messed with server-config.wsdd. I had

RE: newbie: wsdd problem

2004-07-12 Thread Vijai Mohan
972-934-7376 (fax) [EMAIL PROTECTED] www.Sensorlogic.com     -Original Message- From: Harald Pollak [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 8:45 AM To: Axis-User Subject: Re: newbie: wsdd problem   I cannot see a wrotng thing at the 1st time, so walk through following

Re: newbie: wsdd problem

2004-07-12 Thread Harald Pollak
. work other services? ( like http://localhost:8080/axis/services/Version?method=getVersion ) best reg. Harry Am Sam, den 10.07.2004 schrieb Laxma Reddy Dendi um 11:23: Hi All, I am having problems in deploying a web-service using wsdd. I have compiled the following code and put the class file

Re: newbie: wsdd problem

2004-07-10 Thread Laxma Reddy Dendi
here is the tomcat log: org.apache.axis.deployment.wsdd.WSDDException: Invalid WSDD element 'service' (wanted 'deployment') org.apache.axis.deployment.wsdd.WSDDException: Invalid WSDD element 'service' (w

newbie: wsdd problem

2004-07-10 Thread Laxma Reddy Dendi
Hi All, I am having problems in deploying a web-service using wsdd. I have compiled the following code and put the class file in tomcathome/webapps/axis and using the following wsdd file: --- public class SparePartPrice{ public SparePartPrice

Newbie - WSDD generation

2004-07-08 Thread Jason Sherman
New to AXIS - using 1.1 I want to know if it is possible to generate a wsdd from java files. I have a service class and a few custom data classes. I can't seem to generate (using WSD2Java) a wsdd without generating other java files. I would prefer to not even generate the wsdl, but

Java2WSDL importSchema - how to use in a WSDD

2004-07-08 Thread Mark D. Hansen
Is it possible for me to get the ?WSDL generated by a deployed service to include a schema (in the section) that is imported from an external file or URL? I notice that Java2WSDL has an "importSchema" option, but I can't seem to figure out how to use it in a WSDD. Thanks.

RE: Wsdd Operation question

2004-06-24 Thread Anne Thomas Manes
Title: Wsdd Operation question None of the Web services specifications (SOAP, WSDL, WS-I) discuss this area. It falls to the SOAP engine to map a WSDL to a specific method. I would expect, though, that you could map different operations to the same method.   I’m not an expert on the

RE: Wsdd Operation question

2004-06-24 Thread Anne Thomas Manes
Title: Wsdd Operation question None of the Web services specifications (SOAP, WSDL, WS-I) discuss this area. It falls to the SOAP engine to map a WSDL to a specific method. I would expect, though, that you could map different operations to the same method.   I’m not an expert on the

Wsdd Operation question

2004-06-23 Thread Leena Janardanan
Title: Wsdd Operation question All,     I have a question regarding the tag in the wsdd, and well, probably an Axis limitation.     Is it possible to have two WSDL operations, say,   getBooks() and getAuthors() map to the same Java method, say execute() ? In other words, when i

Re: passing parameters to a deployed SOAP service via WSDD

2004-06-18 Thread vh
Mark D. Hansen wrote: One way to do this is passing through web.xml. Check axis doc for how to obtain the webcontext. I don't know if there's a better way. Can I pass parameters to a service (for initialization) using the WSDD file? If so how? Here is my WSDD: http://xml.apache.org

passing parameters to a deployed SOAP service via WSDD

2004-06-18 Thread Mark D. Hansen
Can I pass parameters to a service (for initialization) using the WSDD file? If so how? Here is my WSDD: http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";> /GetAddrFromPO.wsdl I'd like to pass initi

RE: purpose/usage of .wsdd file

2004-06-18 Thread Anderson Jonathan
of .wsdd file A WSDL file describes the service from the client’s point of view – it specifies the name of each operation, and the format and encoding of the message A WSDD file describes the service from the runtime server’s point of view – it provides information that the runtime server uses

RE: purpose/usage of .wsdd file

2004-06-17 Thread Anne Thomas Manes
A WSDL file describes the service from the client’s point of view – it specifies the name of each operation, and the format and encoding of the message A WSDD file describes the service from the runtime server’s point of view – it provides information that the runtime server uses to

purpose/usage of .wsdd file

2004-06-17 Thread pyounguk cho
help clarify what kind of information one needs to put in the deployment.wsdd file. For instance, I am having trouble deploying document-literal web services, whose root cause seems to have to do with lack of entries in the wsdd file, and I feel completely clueless. I am using Axis 1.2 beta

Server side - generate wsdd without default bindings

2004-06-11 Thread Matthew . Hanson
the the wsdd for the SOAP message deployment.  Is there a way to notify wsdl2java of an existing service method implementation so that, for server side wsdl2java, the binding implementation is not generated and, consequently, deploy.wsdd creates a className for our existing implementation rather

Re: generating WSDL: Java2WSDD that uses WSDD?

2004-05-31 Thread Nelson Minar
Context - I'm trying to get Axis to generate WSDL without running a servlet container. >>One option would be to use Java2WSDL. But I found that it doesn't read >>the WSDD: instead you have to pass all the namespace configuration, >Java2WSDL should contain command line

Re: question on providers in WSDD

2004-05-31 Thread Sanjay Dahiya
|yes, it is operation provider only but its not typo - this is the right syntax. regards Sanjay | samir_chouthai wrote: Sanjay, I think that there is a typo in the wsdd ... it should be operationProviders instead of providers it then makes sense. - Samir Chouthai. */Sanjay Dahiya

Re: question on providers in WSDD

2004-05-28 Thread samir_chouthai
Sanjay, I think that there is a typo in the wsdd ... it should be operationProviders instead of providers it then makes sense.   - Samir Chouthai.Sanjay Dahiya <[EMAIL PROTECTED]> wrote: |Thanks Bioernthe second example is from globus (http://www.globus.org), which is based on Axis.

Re: question on providers in WSDD

2004-05-28 Thread Sanjay Dahiya
ation/subscription_manager_service.wsdl Here handlerClass is given right but additionally more providers are specified. regards Sanjay| Biörn Biörnstad wrote: Hi Sanjay > 1. In a wsdd file when we give > what does it mean, When using the 'Handler' provider type

Re: question on providers in WSDD

2004-05-28 Thread Biörn Biörnstad
Hi Sanjay > 1. In a wsdd file when we give > what does it mean, When using the 'Handler' provider type use the 'handlerClass' parameter to specify the class to be used. The specified class must implement the o.a.axis.Handler interface. Your handler gets called wi

Re: generating WSDL: Java2WSDD that uses WSDD?

2004-05-27 Thread Chris Haddad
HI Nelson, Java2WSDL should contain command line parameters (and ant tags) for all relevant configuration information. For example, one can specify mappings between java classes and xml namespaces. What particular wsdd capability do you find missing? /Chris -- Original Message

question on providers in WSDD

2004-05-27 Thread Sanjay Dahiya
|Hi I looked at documentation and mailing lists but its not yet clear to me. 1. In a wsdd file when we give what does it mean, Since a provider is a pivot handler in Axis, I understand use of provider="java:RPC". but in this case which handler class would the message be passed to aft

generating WSDL: Java2WSDD that uses WSDD?

2004-05-24 Thread Nelson Minar
Right now I'm generating my WSDL by starting up a server and fetching the ?wsdl URLs via HTTP. I'd like to switch that to something that doesn't require a running servlet container. One option would be to use Java2WSDL. But I found that it doesn't read the WSDD: instead you

multple client wsdd configuration files?

2004-05-18 Thread Callahan, Paul
Title: multple client wsdd configuration files? I am trying to determine if it is possible to have multiple client configuration wsdd files (client-config.wsdd) in one client application that consumes multiples services.  Thanks in advance for any info! -pc

RE: WSDD class deployment and Interface/Implementation deployment

2004-04-27 Thread Galbreath, Mark A
I agree 110%. -Original Message- From: Yakulis, Ross (Ross) [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 27, 2004 11:29 AM ... the current deployment scheme should be considered a bug. You should be able to deploy a service with only a .war file. <>

Axis 1.2b: extraClasses option for wsdd?

2004-04-27 Thread Banck, Arent-Jan
Title: Message Is there something similar to the Java2WSDL extraClasss for wsdd deployment?   In Axis 1.1, all mappings defined in the wsdd appear as definitions in the wsdl generated with ...?wsdl. This behavoir is changed in Axis 1.2b. In 1.2b the WSLD only contains definitions for

  1   2   3   4   >