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 been

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: parameterTest soapenv:encodingStyle=http://schemas.xmlsoap.org/soap/encoding/; arg01/arg0 arg12/arg1 arg23.5/arg2 arg3Test/arg3

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));

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: Axis WSDL and XML Spy 4.3 SOAP debugger

2002-04-18 Thread Thomas Börkel
... - Till Woerner Berlin, Germany EMail:[EMAIL PROTECTED] ICQ#: 7162410 -Ursprüngliche Nachricht- Von: Thomas Börkel [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 18. April 2002 11:44 An: Axis User Mailinglist Betreff: Axis WSDL and XML Spy 4.3 SOAP debugger HI

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

RE: Performance of WSDL generation (benchmark program included)

2002-02-27 Thread Thomas Börkel
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 Börkel [EMAIL PROTECTED] To: Axis User Mailinglist [EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 4:53 AM

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

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: Off topic .NET question

2002-02-18 Thread Thomas Börkel
to this? Adam -Original Message- From: Thomas Börkel [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 9:38 AM To: [EMAIL PROTECTED] Subject: RE: Off topic .NET question HI! All proxy classes derive from WebClientProtocol in .NET. And this class has a property named

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

2002-02-18 Thread Thomas Börkel
) Thomas Börkel [EMAIL PROTECTED] To: Axis Mailinglist [EMAIL PROTECTED

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

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 from

Really need support

2002-02-07 Thread Thomas Börkel
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

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

2002-02-07 Thread Thomas Börkel
he 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 AxisServer(new

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:

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?

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