RE: M$ interoperability and Arrays

2004-08-05 Thread Thomas Börkel
HI! Maybe this is related to your problem: http://nagoya.apache.org/jira/browse/AXIS-1308 Thomas > -Original Message- > From: John D'Ausilio [mailto:[EMAIL PROTECTED] > Sent: Montag, 2. August 2004 15:20 > To: [EMAIL PROTECTED] > Subject: M$ interoperability and Arrays > > > I've bee

RE: .NET Interoperability

2004-05-13 Thread Thomas Börkel
HI! You say, you are getting an array as response, but in your example, there is no array. There is a problem with Axis 1.2 beta and .NET regarding arrays: http://nagoya.apache.org/jira/browse/AXIS-1308 Thomas > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >

HowTo use an untyped primitive array as parameter (not using proxies)?

2003-09-18 Thread Thomas Börkel
HI! If I am not using a proxy and I use call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE) then Axis sends the parameters untyped like this: http://schemas.xmlsoap.org/soap/encoding/";> 1 2 3.5 Test true So far, so good. But how about arrays? If I have a primitive array as

Changes from 1.0 to 1.1

2003-03-05 Thread Thomas Börkel
HI! This section is not very detailed in the 1.1 RC1 changelog. Could this please be enhanced? Thanks! Regards, Thomas

RE: axis tutorial

2002-06-26 Thread Thomas Börkel
HI! You can either generate a proxy with the WSDL2Java tool or do it dynamically like this: service = new Service(); call = (Call)service.createCall(); call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); call.setTargetEndpointAddress(new URL(urlString)); call.setOperationNa

RE: Axis WSDL and XML Spy 4.3 SOAP debugger

2002-04-18 Thread Thomas Börkel
> > Till > > -- > Caught in our narrowminded believe... > - > Till Woerner > Berlin, Germany > EMail:[EMAIL PROTECTED] > ICQ#: 7162410 > > > -Ursprüngliche Nachricht- > > Von: Thomas Börkel [mailto:[EMAIL PROTECTED]] > &g

Axis WSDL and XML Spy 4.3 SOAP debugger

2002-04-18 Thread Thomas Börkel
HI! XML Spy 4.3 contains a very interesting SOAP debugger, that is supposed to work with .NET and Sun web services. Unfortunately, if I give it an Axis Beta 1 WSDL, it always claims that no ports are defined. Anyone any ideas? Thanks! Regards, Thomas

RE: Even dirt simple array interoperability won't work...ideas?

2002-04-03 Thread Thomas Börkel
HI!   I am using "real" arrays (not ArrayList) and this works together with a .NET client.   Regards, Thomas -Original Message-From: Edward Gemar [mailto:[EMAIL PROTECTED]]Sent: Mittwoch, 3. April 2002 01:13To: [EMAIL PROTECTED]Subject: Even dirt simple array interoperabili

RE: Performance of WSDL generation (benchmark program included)

2002-02-28 Thread Thomas Börkel
HI! You can optimize tt-bytecode by caching the BCClass in the calling method (please find attached the modified benchmark program), but still bcel is twice as fast. Regards, Thomas > -Original Message- > From: Thomas Börkel > Sent: Mittwoch, 27. Februar 2002 17:41 >

RE: Performance of WSDL generation (benchmark program included)

2002-02-27 Thread Thomas Börkel
; If you want to put together a little performance tester (i.e. > pull out the > argument name extraction code into a test class) and gather > some numbers for > BCEL vs. tt-bytecode, that would be really helpful for us and > also for the > BCEL/tt-bytecode teams, I'm su

RE: Performance of WSDL generation

2002-02-27 Thread Thomas Börkel
> argument name extraction code into a test class) and gather > some numbers for > BCEL vs. tt-bytecode, that would be really helpful for us and > also for the > BCEL/tt-bytecode teams, I'm sure. > > --Glen > > - Original Message - > From: "Thomas

Performance of WSDL generation

2002-02-26 Thread Thomas Börkel
HI! Since the switch from bcel.jar to tt-bytecode.jar for analyzing Java .class files in the WSDL generation process, performance has become unacceptable. What was 1-2 seconds is now 30 seconds with some .class files. Am I the only one experiencing this? I have attached the .class file of a cl

Mapping a Java Hashtable to a class in .NET

2002-02-20 Thread Thomas Börkel
HI! Has anyone managed to map a Java Hashtable (parameter or return value of a Java SOAP server) to a useful class in a .NET client? .NET generates 2 extra empty classes from the WSDL: Hashtable and Dictionary, where Hashtable derives from Dictionary. But that's unusable, because both classes

RE: Type mismatch when getting an int array as parameter

2002-02-20 Thread Thomas Börkel
Title: Type mismatch when getting an int array as parameter This is fixed in the latest build. Thanks! -Original Message-From: Thomas Börkel Sent: Montag, 11. Februar 2002 19:10To: Axis MailinglistSubject: Type mismatch when getting an int array as parameter HI! Using

RE: Follow-Up to the email discussion about portType name vs. service name

2002-02-18 Thread Thomas Börkel
names. > > Thanks, > > Rich Scheuerle > XML & Web Services Development > 512-838-5115 (IBM TL 678-5115) > > > > > Thomas Börkel >

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
you can use the Authentication within a Java Client ? (API-RTFM > :) ) > > > On Mon, 2002-02-18 at 11:25, Thomas Börkel wrote: > > HI! > > > > .NET does everything automatically on the client side. If > you for example deploy your service on a web server that

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
or a Java-Program with AXIS ? > > I was really surprised about AXIS - after working with Apache > SOAP (and > the ugly Descriptors) Im currently only deploying the > Services with the > jws extension - ans - it works. Also with WSDL and .NET Code - great > work. > > On

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
ious as to how you would make a handler force a 401 to > be returned. > What would be your approach to this? > > Adam > > -Original Message- > From: Thomas Börkel [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 18, 2002 9:38 AM > To: [EMAIL PROTECTED] > S

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
know at design time that the > service is > password protected. > > Cheers > > Adam > > -Original Message- > From: Thomas Börkel [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 1:04 PM > To: [EMAIL PROTECTED] > Subject: RE: Off topic .NET questio

RE: Off topic .NET question

2002-02-15 Thread Thomas Börkel
HI! This (basic HTTP authentication) works here. .NET does not send the authorization info with the first attempt, but it sends it with the second attempt if the first attempt has been refused with HTTP error 401 and the correct challenge. It does the second attempt automatically, if the first

Follow-Up to the email discussion about portType name vs. service name

2002-02-14 Thread Thomas Börkel
HI! I had an email discussion a few days ago with some of the Axis developers about the fact that I cannot set the service name to the same as the portType name. And because I cannot choose the portType name (Axis always sets it to the class name), I can never set the service name to the class

RE: How to prevent Axis from saving the configuration file?

2002-02-12 Thread Thomas Börkel
Title: RE: How to prevent Axis from saving the configuration file? HI! Great! Thanks! Regards, Thomas > -Original Message- > From: Glyn Normington [mailto:[EMAIL PROTECTED]] > Sent: Dienstag, 12. Februar 2002 14:02 > To: [EMAIL PROTECTED] > Subject: Re: How to prevent Axis

RE: Found bug in Emitter, fix provided

2002-02-12 Thread Thomas Börkel
Title: Found bug in Emitter, fix provided Apparently, this is not fixed in the 2002-02-11 build. Will this be included soon (it's a bit annoying)? -Original Message-From: Thomas Börkel Sent: Donnerstag, 7. Februar 2002 13:48To: Axis MailinglistSubject: Found bug in Em

Interop with .NET: Hashtable as parameter

2002-02-08 Thread Thomas Börkel
Title: Interop with .NET: Hashtable as parameter HI! Using the nightly build from 2002-02-06. If I have a method with a Hashtable parameter, then Axis generates a Map type and a Dictionary type in the WSDL. .NET then creates 2 extra proxy classes: Map and Dictionary, where Map derives f

RE: Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0 (bugs found and fixes provided)

2002-02-08 Thread Thomas Börkel
  I'm going to let Russell deal with your first problem, but I think Tom and I resolved the second one with our last fix.  Can you check to see if the current CVS works for you?  Thanks!   --Glen -Original Message-From: Thomas Börkel [mailto:[EMAIL PROTECTED]

Official name of the log4j jar file?

2002-02-08 Thread Thomas Börkel
Title: Official name of the log4j jar file? HI! What is the official name of the log4f jar file? In alpha3, it's log4j-core.jar and in the nightly builds, it's log4j plus the current date. Regards, Thomas

RE: Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0 (bugs found and fixes provided)

2002-02-07 Thread Thomas Börkel
ot;Service" being appended to every proxy class I generate in .NET.   Regards, Thomas     -Original Message-From: Thomas Börkel Sent: Donnerstag, 7. Februar 2002 16:47To: [EMAIL PROTECTED]Subject: RE: Changes in current build vs. alpha3 in WSDL generation: New problems with .

RE: Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0

2002-02-07 Thread Thomas Börkel
?   -Original Message-From: Thomas Börkel Sent: Mittwoch, 6. Februar 2002 21:40To: Axis MailinglistSubject: Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0 HI! Why does the current build always append "Service" at the service name? Alpha3

Found bug in Emitter, fix provided

2002-02-07 Thread Thomas Börkel
Title: Found bug in Emitter, fix provided HI! If the Emitter emits to a filename, it does not close the stream, leaving the file "in use" as long as the program runs or at least as long as no GC is being done. org.apache.axis.wsdl.fromJava.Emitter, emit(), line 284. Old:     XMLUtil

RE: Really need support

2002-02-07 Thread Thomas Börkel
Title: RE: Really need support HI! Great! :-) Regards, Thomas > -Original Message- > From: Glyn Normington [mailto:[EMAIL PROTECTED]] > Sent: Donnerstag, 7. Februar 2002 12:48 > To: [EMAIL PROTECTED] > Subject: Re: Really need support > > > Thomas, > > >How to speci

RE: How to specify the location of server-config.wsdd?

2002-02-07 Thread Thomas Börkel
complete path and filename.     -Original Message-From: Thomas Börkel Sent: Montag, 4. Februar 2002 17:13To: [EMAIL PROTECTED]Subject: RE: How to specify the location of server-config.wsdd? HI!   This did not work.   I tried:       axisServer = new AxisS

Really need support

2002-02-07 Thread Thomas Börkel
nges in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0 - Compiling the nightly build - .NET ignores methods with void returntype - How to specify the location of server-config.wsdd? Thanks in advance! Regards, Thomas Börkel AP AG

Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0

2002-02-06 Thread Thomas Börkel
Title: Changes in current build vs. alpha3 in WSDL generation: New problems with .NET 1.0 HI! Why does the current build always append "Service" at the service name? Alpha3 did not do that and that was good. Also, .NET issues an error now on the WSDL file: Unable to import binding 'Soap

RE: Current build: Emitter hangs while reading class file (bug found in Axis, fix inside)

2002-02-06 Thread Thomas Börkel
"javap"? I think, it will then hang also.   Regards, Thomas -Original Message-From: Thomas Börkel Sent: Mittwoch, 6. Februar 2002 17:46To: Axis MailinglistSubject: Current build: Emitter hangs while reading class file HI! I tried out the Emitter class from the current nightly

Compiling the nightly build

2002-02-06 Thread Thomas Börkel
Title: Compiling the nightly build HI! I wanted to try to find out why the Emitter hangs while reading a .class file and because the Axis classes don't seem to have debug information, I tried to compile the nightly build. However, something is missing: org/apache/axis/utils/compiler/Javac.

RE: AxisServer thread-safe?

2002-02-06 Thread Thomas Börkel
that would be great! :)  In any case, let us know if you run into any problems using it in a multithreaded environment.   --Glen -Original Message-From: Thomas Börkel [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 06, 2002 2:38 PMTo: [EMAIL PROTECTED]Sub

RE: AxisServer thread-safe?

2002-02-06 Thread Thomas Börkel
Title: AxisServer thread-safe?   Could anyone please answer? This is pretty important for us, regarding calling Axis from our own HTTP server. Thanks!   -Original Message-From: Thomas Börkel Sent: Montag, 4. Februar 2002 17:02To: Axis MailinglistSubject: AxisServer thread

.NET ignores methods with void returntype

2002-02-06 Thread Thomas Börkel
Title: .NET ignores methods with void returntype HI! Using Axis alpha3 and .NET 1.0. If I have a method without void returntype then .NET ignores that method and write the following comment into the generated proxy class: CODEGEN: The operation binding 'exceptionTest' from namespace 'htt

Current build: Emitter hangs while reading class file

2002-02-06 Thread Thomas Börkel
Title: Current build: Emitter hangs while reading class file HI! I tried out the Emitter class from the current nightly build and apparently, it hangs while trying to read the class file. This happens with Emitter.emit() and Emitter.getWSDL(). This does not happen with alpha3. Using JDK 1.

RE: .NET has problems with Axis complex types?

2002-02-06 Thread Thomas Börkel
-Original Message-From: Thomas Börkel [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 06, 2002 10:54 AMTo: [EMAIL PROTECTED]Subject: RE: .NET has problems with Axis complex types? This is the complex type, that Axis defines for a return type of Hashtable. I

RE: .NET has problems with Axis complex types?

2002-02-06 Thread Thomas Börkel
iginal Message-From: Thomas Börkel Sent: Mittwoch, 6. Februar 2002 15:12To: Axis MailinglistSubject: .NET has problems with Axis complex types? HI! Using Axis alpha2 and .NET final. If I have a method, which returns a Hashtable, then Axis defines this as a complex type=Map in

RE: .NET has problems with Axis complex types?

2002-02-06 Thread Thomas Börkel
Title: .NET has problems with Axis complex types? Correction: I am using alpha3, of course. ;-) -Original Message-From: Thomas Börkel Sent: Mittwoch, 6. Februar 2002 15:12To: Axis MailinglistSubject: .NET has problems with Axis complex types? HI! Using Axis alpha2 and

.NET has problems with Axis complex types?

2002-02-06 Thread Thomas Börkel
Title: .NET has problems with Axis complex types? HI! Using Axis alpha2 and .NET final. If I have a method, which returns a Hashtable, then Axis defines this as a complex type=Map in the WSDL. If I consume then this WSDL in .NET, then it does not generate a Proxy for this service. While m

RE: Bugs in WSDL-Emitter?

2002-02-06 Thread Thomas Börkel
Title: Bugs in WSDL-Emitter? Apparantly, setUseInheritedMethods(true) works only, if you also specify allowedMethods. This is in alpha3. -Original Message-From: Thomas Börkel Sent: Montag, 4. Februar 2002 14:30To: Axis MailinglistSubject: Bugs in WSDL-Emitter? HI! I have

RE: How to specify the location of server-config.wsdd?

2002-02-04 Thread Thomas Börkel
AxisServer(config);   --G -----Original Message-From: Thomas Börkel [mailto:[EMAIL PROTECTED]]Sent: Friday, February 01, 2002 6:58 AMTo: Axis MailinglistSubject: How to specify the location of server-config.wsdd? HI! The docs are talking about the WEB_INF directory. I assume,

AxisServer thread-safe?

2002-02-04 Thread Thomas Börkel
Title: AxisServer thread-safe? HI! Is the class AxisServer thread-safe or do I need one AxisServer per thread? Thanks! Regards, Thomas

Bugs in WSDL-Emitter?

2002-02-04 Thread Thomas Börkel
Title: Bugs in WSDL-Emitter? HI! I have several problems with the WSDL-Emitter in alpha3. I call emitter.setUseInheritedMethods(true) before getting the WSDL, but it still ignores the inherited methods. Also, I'd like to tell it to ignore protected and static methods. Can I do that? IMH

How to specify the location of server-config.wsdd?

2002-02-01 Thread Thomas Börkel
Title: How to specify the location of server-config.wsdd? HI! The docs are talking about the WEB_INF directory. I assume, if I have a servlet, then that's the current directory. But what if I have no servlet, but my own transport? I can't load files from the current dir, I need to have the

RE: Using Axis without deployment (totally dynamic)

2002-01-31 Thread Thomas Börkel
Title: RE: Using Axis without deployment (totally dynamic) HI! My problem is: I do not want to provide any information about the available classes at all. Not with .wsdd files, not with XML files and not at run time. Because if I had to do this, I'll have to feed info about all available

From where does Axis load the configuration files?

2002-01-31 Thread Thomas Börkel
Title: From where does Axis load the configuration files? HI! Is it possible to specify from where Axis loads the server configuration files? It looks to me like it's the current dir, but I would have to specify a certain directory. Thanks! Regards, Thomas