Re: [Fwd: [Fwd: Need a work-around for missing xsd:list support]]

2003-01-30 Thread Wilfred Springer
It doesn't work this way: Defines the possible valid values for AgreementType

Repost: URL as soap call parameters(within object).

2003-01-30 Thread Pengyu Wang
Title: Repost: URL as soap call parameters(within object). Any takers or my message got lost in the hay? Thanks advance. -Original Message- From: Pengyu Wang Sent: Thursday, January 30, 2003 3:58 PM To: '[EMAIL PROTECTED]' Subject: URL as soap call parameters(within object). Ho

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Steve Loughran
- Original Message - From: "Mark Mueller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 19:48 Subject: Re: Interoperative attachments (MIME types) > Steve, > > What would be the downside of mapping any MIME type to > a java.lang.Object by default (via MIME_

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
Steve, What would be the downside of mapping any MIME type to a java.lang.Object by default (via MIME_OCTETSTREAM) if there is no specific mapping? In most cases (except for multipart), a MIME type represents a file of some sort, no? Mark --- Steve Loughran <[EMAIL PROTECTED]> wrote: > > -

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Steve Loughran
- Original Message - From: "Mark Mueller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 17:19 Subject: RE: Interoperative attachments (MIME types) > I think I may have solved the problem. I think > there's a misspelling of "octet-stream" in line 702 of >

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
I think I may have solved the problem. I think there's a misspelling of "octet-stream" in line 702 of org.apache.axis.wsdl.toJava.Utils: else if ("application/octetstream".equals(mimeName)) { return Constants.MIME_OCTETSTREAM; If I use "application/octetstream" in my WSDL WSD

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
Josh, Thanks! I took your WSDL and ran it through WSDL2Java to generate the client java. To my surprise, the echoAttachment signature was: String echoAttachment( String ). Given that the MIME type of the attachment is "text/plain", it seemed that the attached file could be considered a containe

no containing element ERROR

2003-01-30 Thread Wes Devauld
Hello, I have a web service which returns a large bean object. Some of the member variables of the bean are other bean objects, the nesting goes as far deep as five in some places. When I go to http://localhost/axis/services/myTestService?WSDL I get an error: makeTypeElement() was told to

RE: how to make this WSDL work?

2003-01-30 Thread Wei Chen
Title: Message I mean no myOperation defined.   Thanks.   - Wei Chen   -Original Message- From: Wei Chen Sent: Thursday, January 30, 2003 11:49 AM To: [EMAIL PROTECTED] Subject: RE: how to make this WSDL work?   Hi, Haneef,   I am not sure I understand.   There is myOp

RE: how to make this WSDL work?

2003-01-30 Thread Wei Chen
Title: Message Hi, Haneef,   I am not sure I understand.   There is myOperation defined on the generated service (MyCompanyLocator) object.   Am I missing something?   Thanks.   - Wei Chen   -Original Message- From: ALI,HANEEF (HP-Cupertino,ex1) [mailto:[EMAIL PROTECTED

Attachment Deploy error.

2003-01-30 Thread Bathula, Vijay
Title: RE: Axis and security Hi,   I am getting the following error while sending attachments. Please help.   - Problem with servlet engine config file: /WEB-INF/server-config.wsdd- Exception:AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: f

RE: Axis and security

2003-01-30 Thread thomas . cherel
Title: RE: Axis and security If you do a little bit of research in the mailing list archive, you will find plenty of information on this subject (which is more specific to the servlet container and HTTP server that are hosting Axis than Axis itself). Thomas -Original Message- From:

RE: BeanSerializer

2003-01-30 Thread Tom Jordahl
All the data in the Bean is serialized, so all the element show up in the Schema. It's the other sides responsibility to deserialize the data in to a data type. The thing on the other end of the wire may not be Java, or may not have access to the original Java type. For instance WSDL2Java wi

RE: NULL TypeMapping

2003-01-30 Thread Tom Jordahl
Sounds like a bug. Have you tried the latest CVS? If it fails there, I would submit a bug report with a test case showing the problem. Patches for fixes (make sure ant all-tests passes!) in the bug make it even better. Tom Jordahl Macromedia Server Development -Original Message- Fr

RE: End-to-End with WSDL2Java, and Java2WSDL

2003-01-30 Thread Tom Jordahl
We call this "round tripping" and in most cases this works. In many cases the meta-data that we emit in to the Java data types will fill in info to the WSDL. But, in several places you do not get the exact WSDL you started with because the Java binding of some of the XML Schema data types ar

MIME Attachment Examples

2003-01-30 Thread Kallen McInerney
Hi all, We're working with a partner that uses MIME attachments for posting documents along with their SOAP messages. I was wondering if anyone could give me some pointers, information, discussion, anything on how to send them. Does Axis even support them? Does it support them in the manner I e

Re: Point of discussion - attempts to use non-typesafe contructsoverXML-RPC

2003-01-30 Thread Benjamin Tomasini
On Thu, 2003-01-30 at 12:46, Steve Loughran wrote: > > - Original Message - > From: "Benjamin Tomasini" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, January 30, 2003 09:13 > Subject: Point of discussion - attempts to use non-typesafe contructs > overXML-RPC > > > > In

Antw: Re: [Fwd: [Fwd: Need a work-around for missing xsd:listsupport]]

2003-01-30 Thread Markus Frommherz
I don't know about RPC-XML, but if that does not work for you, you might check the new castor support in the cvs-nightly. if that doesn't do it, (yet), you might consider a document-service+castor. Castor generates appropriate java from arbitrary complex schema and (un)marshalls xml->java and bac

Re: Point of discussion - attempts to use non-typesafe contructs overXML-RPC

2003-01-30 Thread Steve Loughran
- Original Message - From: "Benjamin Tomasini" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 09:13 Subject: Point of discussion - attempts to use non-typesafe contructs overXML-RPC > In reading this list for a while, I have noticed that a lot of people > ha

From file to java object.

2003-01-30 Thread Ilya Khasin
I recorded a request from the client to the service implemented using Axis (with TCPMonitor) and saved it to a file. This request has one huge input parameter which is deserialized using BeanDeserializer on the server side. How can I play this back bypassing the web s

Point of discussion - attempts to use non-typesafe contructs overXML-RPC

2003-01-30 Thread Benjamin Tomasini
In reading this list for a while, I have noticed that a lot of people have trouble (de)serializing things like Vectors, Lists, Maps, etc... I have found that the best way to use Axis / XML-RPC is to only use real typed objects such as arrays and concrete objects such as JavaBeans. I don't see how

Re: [Fwd: [Fwd: Need a work-around for missing xsd:list support]]

2003-01-30 Thread Benjamin Tomasini
Why not just use a typed array? Collection interfaces generally loose their meaning over an RPC call as they are dependant on implementations that are hidden from the interface. Ben On Thu, 2003-01-30 at 12:02, Wilfred Springer wrote: > > -- > __

[Fwd: [Fwd: Need a work-around for missing xsd:list support]]

2003-01-30 Thread Wilfred Springer
-- Wilfred Springer Phone : +31 (0)3 3451 5736 Java Architect Mobile : +31 (0)6 2295 7321 Sun Java CenterFax: +31 (0)3 3451 5734 Sun Microsystems Netherlands Mail : [EMAIL PROTE

Java-Class as argument for a .NET Client via an Axis .JWS-File

2003-01-30 Thread landgraf
Hello Axis-Users, i assume its a newbie problem, but i could'nt figure it out, even in the archived mailing lists nothing pointed me to a solution. So here goes my scenario: The aim of my efforts is to call my webservice from a remote .NET-Client written in C#, using webreferences. I have a

Re: Axis and security

2003-01-30 Thread Benjamin Tomasini
On the server side, It is my understanding that you can just use the SSL provided by your servlet container, or Apache. I don't know about the client side. I am curious about this as I have to implement it soon. Ben On Thu, 2003-01-30 at 11:02, Stephane Lecercle wrote: > Hello, > > I need some

Axis and security

2003-01-30 Thread Stephane Lecercle
Hello, I need some details about the way to configure SSL with Axis. Does anyone have any documentation pointers ? Many thanks Stephane.

Re: Axis + JAXB is a good solution for complex data mapping?

2003-01-30 Thread David payam
hi Dennis : Thanks for your quick reply! I will check the Castor handling in AXIS, and I will let you know if I can find something useful!   bye David  Dennis Sosnoski <[EMAIL PROTECTED]> wrote: Hi David,It sounds like you're talking about the original JAXB EA - that's the one that used DTDs. Tha

RE: Interoperative attachments

2003-01-30 Thread Josh Kropf
Mark, I have investigtated slightly this matter of MIME mention in WSDL code. Just for fun, I created a web service in BEA Weblogic that returned a DataHandler since this is the automatic method to attach files apparently. The WSDL BEA creates for this class DOES have a MIME section in the operati

BeanSerializer

2003-01-30 Thread Mark Rowell
Hi I was wondering why it was necessary for Java2WSDL generate an element in a complex type for properties of a class that are read-only? After all when deserializing an instance of a class with read-only properties how is it going to set the value of the property in the new instance? Am I wrong o

Programmatic deployment of web services

2003-01-30 Thread Antti S. Brax
I believe a few days ago there was discussion about programmatically deploying web services (I searched the archive as I just subscribed to this list). The suggested solution was to edit the server-config.wsdd file manually. I need to deploy and undeploy services programmatically. The deployment i

Re: [wsif] About complex types

2003-01-30 Thread Nirmal Mukhi
Hello, Yes, you can populate message parts with DOM elements (if the corresponding WSDL message part is typed as an element). See for example this alternative version of the client for the complexsoap sample: http://marc.theaimsgroup.com/?l=axis-user&m=104205203313952&w=2 Nirmal. "Luoh Ren

Re: custom provider deployment problem

2003-01-30 Thread Eiji Yoshida
Hi, In order to make custom provider, you can use provider handler. This is a way using an axis handler impl as a provider. Does it not meet your requirement? If you want to use provider handler, the following things must be done. - writing your custom provider class inheireting from BasicHa

custom provider deployment problem

2003-01-30 Thread Julia Tertyshnaya
Hi everybody, I'm trying to deploy a custom provider, but get the following exception: 1509431 [HttpProcessor[8080][4]] DEBUG org.apache.axis.ConfigurationException - Exception: java.lang.Exception: No provider type matches QName '{http://xml.apache.org/axis/wsdd/providers/java}diamondRPC' at o