Re: java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-09-05 Thread Martin Grotzke
erializer.writeSchema and the ElementDesc.minOccurs. But i do not see the location where the parameter would be introduced. Do you have some suggestions? Thanx, Martin > > Anne > > On 8/31/05, Martin Grotzke <[EMAIL PROTECTED]> wrote: > On Wed, 2005

Re: java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-09-02 Thread Martin Grotzke
On Fri, 2005-09-02 at 08:54 -0400, Anne Thomas Manes wrote: > I suggest that you file a feature enhancement request to add a > parameter to generate minOccurs="0". good idea, just submitted. cheers, martin > > Anne > > On 8/31/05, Martin Grotzke <[EMAIL PROT

Re: java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-08-31 Thread Martin Grotzke
On Wed, 2005-08-31 at 10:57 -0400, Mike Woinoski wrote: > Martin Grotzke wrote: > > Btw, the concrete problem that we had has to do with C# / .NET 1.1: > > if you send an empty xml-element (as you showed below) for > > some primitive C#-type (e.g. int, long), then the .NET >

Re: java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-08-30 Thread Martin Grotzke
ble="true" allows an XML element to > have > a value equivalent to a Java null reference: > <... xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> > > > This is different than a plain empty element: > > which is

java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-08-29 Thread Martin Grotzke
Hello, when creating the wsdl from java classes, is there's any way to change the default behavior from generating nillable="true" to minOccurs="0" (for interop with .net)? thanx in advance, martin signature.asc Description: This is a digitally signed message part

wsdl/schema generation and custom type mapping not using wsdd

2005-08-07 Thread Martin Grotzke
hello, is it possible to programatically specify a global type mapping, that is used by serializers (BeanSerializer) when writing the wsdl/schema? i don't know if this question in short is the right question, so some more words to describe what i want to do... what i have is the following: co

Java-.net element names: lcase vs ucase [WAS Re: axis-.net array handling]

2005-07-21 Thread Martin Grotzke
rty in c# is implemented like this: private DateTime _maxModificationDate; public DateTime MaxModificationDate { get { return _maxModificationDate; } set { _maxModificationDate = value; } } Is there a solution for this problem? Thanx for your help, cheers, Martin >

axis-.net array handling

2005-07-21 Thread Martin Grotzke
hi, i'm currently trying to write a webservice in java as temporary replacement for a .net-webservice. the ws-client (using wsdl2java-stubs) shall be run against one or the other webservice, without any redeployment. now i have the problem, that wsdl2java produces different stubs for arrays in .n

Re: Dynamic ServiceLocator

2005-07-20 Thread Martin Grotzke
On Wed, 2005-07-20 at 08:28 +0200, Mathieu Larchet wrote: > Martin Grotzke wrote: > > Hi Mathieu, > > > > On Tue, 2005-07-19 at 15:39 +0200, Mathieu Larchet wrote: > > > > > Hello, > > > > > > I'am using wsdl2java to generat

Re: Dynamic ServiceLocator

2005-07-19 Thread Martin Grotzke
Hi Mathieu, On Tue, 2005-07-19 at 15:39 +0200, Mathieu Larchet wrote: > Hello, > > I'am using wsdl2java to generate client classes for my service. > wsdl2java generate a ServiceLocator.java class which > contains direct references to my service endpoint (something like > http://server.mydomain.co