Re: How see Exceptions

2003-04-04 Thread Steve Loughran
DESMOULINS Charles OCISI wrote: A correction : my Exception problem happens with the Axis 1.1 RC2, not with Axis 1.0 (I'm just trying it). Charles. do you mean you just want to see them printed server side? Look at reference.html to see how to configure the log to print out more stuff

Re: java.util.List and 1.1.RC2

2003-04-03 Thread Steve Loughran
Keith Hatton wrote: For fromArray(), you mean this? java.util.Arrays.asList(Object[]) -Original Message- If you go return (Foo)list.toArray(new Foo[0]); You can turn a list to an array in a snap. A fromArray() would be nice to match it. you learn something new every day. Thanks

Re: Stateful web services.

2003-04-03 Thread Steve Loughran
Tom Jordahl wrote: Clay, This is great. Do you think you could check out the current Axis HTML docs and see if you can put together a patch that would integrate this in to it? Your code could just be new files in the samples directory. what about adding it to the wiki? http://nagoya.apache.org/

Re: Turning off ?wsdl feature

2003-04-02 Thread Steve Loughran
- Original Message - From: "Mike Burati" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 13:44 Subject: RE: Turning off ?wsdl feature > You lost me - not sure why you'd want it to be /axis*?wsdl... > > The article describes how in the WSDD deployment descripto

Re: Turning off ?wsdl feature

2003-04-02 Thread Steve Loughran
I've thought of (in the axis 1.2 timeframe) letting you specify a WsdlGenerator, a class that generates wsdl for an endpoint. The base impls. would be 'return a resource' and 'make one from introspection', but I'd envisage smarter things like running the resource through velocity to expand template

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Brain, Jim wrote: I know, and I thought of that. Unfortunately, I need to expose 296 service classes, containing 5000 references to List, and I have a program that is creating web service wrappers for all the classes (the original classes combined data and access logic, which had to split in half

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Mitch Gitman wrote: Right, refer to the "Forgive me..." message which I sent out five minutes later when I realized this. yeah, I caught that I'm still wondering about the apparent existing support for java.util.List and the like. It seems to me that Java2WSDL should generate an exception when it

Re: [java.util.List and 1.1.RC2]

2003-04-02 Thread Steve Loughran
Mitch Gitman wrote: Jim, There seem to be two separate issues here. The one (which bug 8435 addresses) is how to emulate an enumeration type, which of course is not natively supported in Java. I could have sworn recently I saw (maybe on this list) a roundabout example how to code a Java class tha

Re: java.util.List and 1.1.RC2

2003-04-02 Thread Steve Loughran
Brain, Jim wrote: Does anyone know if: Bugzilla Bug 8435 [xsd:list] WSDL2Java doesn't handle schema enumerations if its open, its probably open; you can always write a test to make sure. Note that is the special case of a list enum, not a simple list. The way .NET serialises a bitfield enu

Re: java.net.ConnectException: Connection refused: connect

2003-04-01 Thread Steve Loughran
you should be using forward / in urls and things; the backslash is a windows only hack. Hans Russo resowe wrote: Maybe you are right but the file Zeitansageservislocator was generated by WSDL2Java. Indeed there was a problem: WSDL2Java was not able to write the string Zeitansage_Service_address ,

Re: Error 503 service unavailable

2003-03-30 Thread Steve Loughran
sometimes the app server can generate things like this if hasnt fully init'ed a webapp yet. After deploying i spin waiting for a timestamped property file being visible before hitting deployment urls - Original Message - From: "Sochea Meas (LMC)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

Re: which parser should we use?

2003-03-27 Thread Steve Loughran
Jue (Jacky) Shu wrote: hi all, there are 3 xml parsers. one is from jdk1.4.1 rt.jar, that's 'crimson' another two are xercesImpl.jar and xmlParserAPIs.jar. that's xerces; one jar is the interface, the other the implementation which parser should we use in axis? xerces

Re: proxied and non-proxied web services

2003-03-27 Thread Steve Loughran
Anuj Agrawal wrote: Also, should i be including the System.setProperty("proxySet", "true"); line? I've found that without this line, things still appear to work. that's for java1.x only, so not an issue for Axis.

Re: Axis 1.1 and WS-Interoperability

2003-03-26 Thread Steve Loughran
Vincent Carpentier (LMC) wrote: Axis 1.1 and WS-Interoperability Hi everybody, Just had a quick question. Will Axis 1.1 respect WS-I basic profile? only if it respects us :) Axis 1.1 will *not* respect the profile, and you cannot expect it to as it is (a) a draft and (b) not an official stan

Re: How to return HTTP 204 on Document perform()?

2003-03-25 Thread Steve Loughran
Toshiyuki Kimura wrote: Hi Steve, [Steve Loughran] wrote; | I have a misconfigured app that causes axis to generate a 204, but the axis | client doesnt handle it (filed bugrep). I dont know what the WS-I stance is | on it, as the basic profile says nothing on the subject. The HTTP 204 (OK) is

Re: newbie..error when trying to run happyaxis.jsp

2003-03-24 Thread Steve Loughran
Ravi. you have clashing XML parsers. find the one you dont need, and delete, take it of your classpath, or whatever. Larry wrote: I also have axis running on a Win2000 machine. I just loaded the windows binary release from Jakarta and had no issues at all. Larry --- On Mon 03/24, ravi chandra

Re: Axis Supporting different parsers?

2003-03-24 Thread Steve Loughran
Sochea Meas (LMC) wrote: Axis Supporting different parsers? Hi all! Is Axis capable of supporting different parsers beside to Xerces? (eg. Xalan, SAX, Cocoon). 1. Xalan isnt an XML parser, its an XSLT engine 2. SAX isnt an XML parser, its an XML API (that axis uses) 3. Cocoon is an XM

Re: How to return HTTP 204 on Document perform()?

2003-03-20 Thread Steve Loughran
(B- Original Message - (BFrom: "Toshiyuki Kimura" <[EMAIL PROTECTED]> (BTo: <[EMAIL PROTECTED]> (BSent: Wednesday, March 19, 2003 20:47 (BSubject: Re: How to return HTTP 204 on Document perform()? (B (B (B> | In some cases I need to return HTTP 204 (OK) with no message body. (B> 

Re: ArrayOutOfBoundsException with 1.1RC2??

2003-03-19 Thread Steve Loughran
Jinesh Varia wrote: I am using Axis 1.1RC2. generated the client files using Wsdl2java. and then using a jsp as testclient I was getting this no deserializer defined for Array type error And gurus suggest me to use the nightly fix. That was out. but now I am getting java.lang.ArrayIndexOutOfBoun

Re: Caching

2003-03-18 Thread Steve Loughran
Toshiyuki Kimura wrote: > Hi Narayanan and Steve, > > [Steve Loughran] wrote in the 'Re: axis and caching'; > | Axis does not specify caching on the results of a POSTed SOAP request, > |because POST requests are not cacheable or idempotent, according to the > |HTTP

Re: Catching Exceptions from incorrect proxy setting

2003-03-17 Thread Steve Loughran
- Original Message - From: "Tim C." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 13:38 Subject: Catching Exceptions from incorrect proxy setting > > I keep returning to the same problem of trying to find a way of allowing a > user on the client side to determi

Re: Axis light for client

2003-03-17 Thread Steve Loughran
- Original Message - From: "Chris Forbis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 13:35 Subject: RE: Axis light for client > Hey, > > Now not that I have used either of these two there are many posts in t his > group saying that for a client app to try th

Re: Callbacks in SOAP application

2003-03-17 Thread Steve Loughran
- Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 09:47 Subject: Re: Callbacks in SOAP application > But what if there are M registered clients, the server need to establish M > HTTP/TCP connections to call

Re: Intranet Hosting of SOAP specification

2003-03-17 Thread Steve Loughran
- Original Message - From: "John Svazic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 07:35 Subject: Intranet Hosting of SOAP specification > Hi, > > Has anyone approached the problem of how to handle SOAP requests via Axis on > an intranet with no external ac

Re: Callbacks in SOAP application

2003-03-17 Thread Steve Loughran
- Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, March 16, 2003 23:40 Subject: Re: Callbacks in SOAP application > > > 4)Scope : The scope of the multicasting will be inside the private > > network

Re: Probs with installation of AXIS

2003-03-13 Thread Steve Loughran
- Original Message - From: "Sean Leblanc" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 14:38 Subject: Probs with installation of AXIS > Hi all, > > I've been trying to get Axis installed into my Tomcat. I'm up to the point > where the Axis > Happiness page s

Re: xerces.jar vs. xercesImpl.jar

2003-03-13 Thread Steve Loughran
- Original Message - From: "Pascale, Peter H." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 11:16 Subject: xerces.jar vs. xercesImpl.jar > I am surprised to find that axis seems to require a specific parser - > xerces, and will not accept xercesImpl. I thoug

Re: Web Services book

2003-03-12 Thread Steve Loughran
- Original Message - From: "Paris Apostolopoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 16:35 Subject: RE: Web Services book Dear Steve! >I want to comment on your facts about the Ant book! I agree with your >process , but we can not compare a book

Re: Web Services book

2003-03-12 Thread Steve Loughran
- Original Message - From: "Michael Yuan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 16:26 Subject: Re: Web Services book >> I wrote a book on Ant with Erik Hatcher last year (product placement:java >> development with ant, http://manning.com/antbook). Y

Re: Web Services book

2003-03-12 Thread Steve Loughran
- Original Message - From: "Paris Apostolopoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 13:05 Subject: RE: Web Services book >I should point out that some of the Irani and Bashar is wrong, because those bits in Axis havent ever worked. Example: Glob

Re: How to preconfigure web service

2003-03-12 Thread Steve Loughran
- Original Message - From: "Brian Ko" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 11:47 Subject: How to preconfigure web service > Hi, > > I posted this question before. I guess it was lost somehow. Here is my > question. > > I am developing web service us

Re: Web Services book

2003-03-12 Thread Steve Loughran
- Original Message - From: "Paris Apostolopoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 11:00 Subject: RE: Web Services book > I definetely agree woth Jason!Using this book I managed to make some > great progress when it comes understanding AXIS , al

Re: Need help with SOAP/Axis

2003-03-12 Thread Steve Loughran
- Original Message - From: "Jindal, Ashwini" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 19:51 Subject: Need help with SOAP/Axis > Hello All, > > I am just beginning to learn SOAP and its use, which means I am very > new to SOAP. > > I have the following

Re: Nested Classes for Java Beans not Allowed?

2003-03-11 Thread Steve Loughran
ass? > I am a Java newbie... > > -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 11, 2003 11:25 AM > To: [EMAIL PROTECTED] > Subject: Re: Nested Classes for Java Beans not Allowed? > > Make it a static nested class, not a non-s

Re: Nested Classes for Java Beans not Allowed?

2003-03-11 Thread Steve Loughran
- Original Message - From: "Doug Haigh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 19:05 Subject: Nested Classes for Java Beans not Allowed? > I have a class that does all soap that includes a nested JavaBean used for > serialization/deserialization. It look

Re: Simple little trick for easing (de)serialization issues

2003-03-10 Thread Steve Loughran
- Original Message - From: "Bill Pfeiffer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 15:22 Subject: Re: Simple little trick for easing (de)serialization issues > Steve, > > I have bought into the interop thing because there's an extremely good > chance that

Re: Simple little trick for easing (de)serialization issues

2003-03-10 Thread Steve Loughran
- Original Message - From: "Milind Gadre" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 14:44 Subject: Re: Simple little trick for easing (de)serialization issues > > Claude, good point. I am new to using Web Services and wanted to get > some feedback. I will k

Re: How to hot redeploy business classes?

2003-03-10 Thread Steve Loughran
that is a feature left to the app server -axis is a webapp after all. Tomcat has a management API that they document; you can GET various URLs to do the right thing, and they provide ant tasks to hide the details - Original Message - From: "Brian Miller" <[EMAIL PROTECTED]> To: <[EMAIL PRO

Re: Simple little trick for easing (de)serialization issues

2003-03-10 Thread Steve Loughran
- Original Message - From: "Milind Gadre" <[EMAIL PROTECTED]> To: "Paul Andrews" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 14:24 Subject: Re: Simple little trick for easing (de)serialization issues > > Agreed ... but consider situations (posted by several u

Re: How do I work with exceptions?

2003-03-06 Thread Steve Loughran
- Original Message - From: "Sonja Pieper" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 23:49 Subject: Re: How do I work with exceptions? > And > how do I get myself a stacktrace? I am guessing I won't, oh well. Look at reference.html to see some configura

Re: wsdl and documentation

2003-03-05 Thread Steve Loughran
- Original Message - From: "Nicholas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 15:18 Subject: Re: wsdl and documentation > > i never thought it'd be simple :(. And like I said > > before: xdoclet. Though I > > still think you should write the WSDL and g

Re: wsdl and documentation

2003-03-05 Thread Steve Loughran
from it, as if it was just another IDL syntax. > Peter > > -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 25, 2003 10:37 AM > To: [EMAIL PROTECTED] > Subject: Re: wsdl and documentation > > > - Original

Re: Performance

2003-03-05 Thread Steve Loughran
- Original Message - From: "Anecito, Anthony (HQP)" <[EMAIL PROTECTED]> To: "'Steve Loughran'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 12:21 Subject: RE: Performance > Hi Steve, > > Your answers

Re: Performance

2003-03-05 Thread Steve Loughran
- Original Message - From: "Anecito, Anthony (HQP)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 10:30 Subject: RE: Performance > On the server side I would use worker thread pattern. I have not tried this > myself yet but have hopes i

Re: DIME attachment size limit

2003-03-05 Thread Steve Loughran
t: Re: DIME attachment size limit > Hi Steve, > > Can you elaborate on this, please? I have been trying to get to the > filename of attachments for a while now. I must admit, I haven't see the > Axis1.1 code, yet. > > TIA, > Sharmila. > > On 4/3/03 7:30 pm,

Re: Trouble with logging in axis

2003-03-04 Thread Steve Loughran
- Original Message - From: "Hugh Ferguson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 14:50 Subject: Trouble with logging in axis > I borrowed from numerous examples, and use the LogFactory to get a class. > I've removed the log4j.properties file from the

Re: DIME attachment size limit

2003-03-04 Thread Steve Loughran
- Original Message - From: "Betsy Frey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 11:22 Subject: RE: DIME attachment size limit > Hi Steve, > > We have a version management system that's being extended to use an Axis > server. Our customers can store anyt

Re: DIME attachment size limit

2003-03-04 Thread Steve Loughran
- Original Message - From: "Betsy Frey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 07:11 Subject: DIME attachment size limit > I cannot send a file as a DIME attachment if the file size is more than the > DIME single-attachment limit of 2^32-1 bytes. The c

Re: Re: Fear of Attachments

2003-03-03 Thread Steve Loughran
not tried that; that is what GET is for (i.e. I return URLs to retrieve stuff). Have a look at what the echo sample does - Original Message - From: "Mount, Dave" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 03, 2003 10:22 Subject: RE: Re: Fear of Attachments Steve, I

Re: happyaxis error

2003-03-02 Thread Steve Loughran
- Original Message - From: "Jeff Greif" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, March 02, 2003 08:17 Subject: Re: happyaxis error > You probably followed the Axis instructions and installed your own copy of > xerces jars. This doesn't work because Tomcat already has it

Re: AXIS support of SOAP 1.1 vs 1.2

2003-02-28 Thread Steve Loughran
- Original Message - From: "Steve Pannier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 27, 2003 15:44 Subject: RE: AXIS support of SOAP 1.1 vs 1.2 > > OK, so it sounds like a handler is needed to process headers. > > Let's forget about the different AXIS versions

Re: client logging SOAP messages

2003-02-27 Thread Steve Loughran
- Original Message - From: "Pascale, Peter H." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 27, 2003 13:49 Subject: client logging SOAP messages > I have the following requirement for an Axis client app: > > The application must support logging of SOAP messages. R

Re: configurable endpoints

2003-02-27 Thread Steve Loughran
- Original Message - From: "Pascale, Peter H." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 27, 2003 11:01 Subject: configurable endpoints > As part of developing a WS client with axis for SOAP-RPC calls, I would like > the ability to configure the HTTP service lo

Re: Accessing the XML in the SOAP message body directly

2003-02-26 Thread Steve Loughran
- Original Message - From: "Naresh Bhatia" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 26, 2003 10:45 Subject: RE: Accessing the XML in the SOAP message body directly Issues -- >1) I am disappointed by SOAP's (or Axis'?) serialization/deserialization >mech

Re: help with proxy

2003-02-26 Thread Steve Loughran
- Original Message - From: "Nicola Muratori" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 26, 2003 02:57 Subject: Re: help with proxy > > many articles written in JavaWorld are in wrong!! please > send feedback to this article: > http://www.javaworld.com/javaworld

Re: Struts and Axis! why not?

2003-02-26 Thread Steve Loughran
look at it differently. Why wouldn't Axis handle arabic unicode? It's just characters, and Java handles that; XML is unicode ready. Mybe you can just experiment. On the subject of documentation, you get what you write. Nobody gets paid to write it, if you find areas that are lacking, you can and

Re: Struts and Axis! why not?

2003-02-26 Thread Steve Loughran
look at it differently. Why wouldn't Axis handle arabic unicode? It's just characters, and Java handles that; XML is unicode ready. Mybe you can just experiment. On the subject of documentation, you get what you write. Nobody gets paid to write it, if you find areas that are lacking, you can and

Re: wsdl and documentation

2003-02-25 Thread Steve Loughran
- Original Message - From: "Pascale, Peter H." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 07:49 Subject: RE: wsdl and documentation > This is an interesting thought - it doesn't seem like it would be that hard. > Is anyone doing this, or interested in pa

Re: Axis and Logging

2003-02-24 Thread Steve Loughran
Commons-logging is not a log framework, it bridges to multiple log frameworks, including log4j *and* Java1.4 logging. So you can drop log4j and still log. Look at jakarta.apache.org/commons for details on configuring it -there are some preferences and things that can control where axis logs. -

Re: Authorization Unauthorized: POST vs. GET

2003-02-24 Thread Steve Loughran
- Original Message - From: "Michael Konietzka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 24, 2003 08:41 Subject: Authorization Unauthorized: POST vs. GET > Hi > I deployed a webservice und Axis1.1beta with the following configuration: > > Apache 1.3.x -> via mod_

Re: Attachment Problem

2003-02-21 Thread Steve Loughran
you need them client side too: mail.jar and activation.jar - Original Message - From: "Jue (Jacky) Shu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 08:23 Subject: Re: Attachment Problem > Make sure u have the DataHandler in happyaxis. > > Found Activation

Re: Attachment Problem

2003-02-21 Thread Steve Loughran
- Original Message - From: "Bathula, Vijay" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 07:53 Subject: Attachment Problem > I am getting the Java.io.exception error while trying to send attachments > from client to server and vice versa. > java.io.IOExce

Re: Newbie question about FAULTs (again) and tomcat printing the stack trace!

2003-02-20 Thread Steve Loughran
- Original Message - From: "Apostolopoulos Paris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 20, 2003 11:30 Subject: RE: Newbie question about FAULTs (again) and tomcat printing the stack trace! > Thanks for your reply Steve! > > Yes its true I am using AXIS 1.0

Re: Newbie question about FAULTs (again) and tomcat printing the stack trace!

2003-02-20 Thread Steve Loughran
- Original Message - From: "Apostolopoulos Paris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 20, 2003 08:44 Subject: Newbie question about FAULTs (again) and tomcat printing the stack trace! > Hi again! > > Is there a way of doing something better? How can I sti

Re: HTTPProxyTunnel

2003-02-20 Thread Steve Loughran
- Original Message - From: "Ricky Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 20, 2003 07:48 Subject: HTTPProxyTunnel > In fact, I need HTTP level tracing but not TCP level tracing. If there is > another tool that works like a HTTP Proxy which can examine th

Re: (GETTING CLOSER- bug?) Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 13:18 Subject: (GETTING CLOSER- bug?) Re: Determining if a service is deployed (wrapped in my own webapp) > Okay, I removed the server-config.wsdd from my project so it wouldn't > au

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 12:13 Subject: Re: Determining if a service is deployed (wrapped in my own webapp) > Thanks, > I tried http://149.98.242.166:8080/GMPServer/services/GMP?WSDL > but recieved a http

Re: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 10:34 Subject: RE: Determining if a service is deployed (wrapped in my own webapp) > Thanks, > but I've wrapped it in my own webapp. I tried this: > http://149.98.242.166:8080/GMPS

Re: soapmonitor service

2003-02-19 Thread Steve Loughran
yes, read security.html - Original Message - From: "Cory Wilkerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 07:44 Subject: soapmonitor service Hrmmm. I don't particularly care for how myhost.com/services shows all the available services. Is there

Re: security - AdminService

2003-02-19 Thread Steve Loughran
RC1 has a document on security...it should answer your questions. AdminService only accepts calls from the local host, and it already has a default password..you can change it if you want - Original Message - From: "Gianluca Del buono" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wedn

Re: Nulll Pointer Exception with java2wsdl

2003-02-18 Thread Steve Loughran
this has been fixed a while back. you need to be working with Axis1.1RC1, - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 18, 2003 12:37 Subject: Nulll Pointer Exception with java2wsdl > Hello, > I am guessing that I am probably doing somet

Re: HowTo change Transport type from HTTP/1.0 to HTTP/1.1

2003-02-18 Thread Steve Loughran
you need to wait for http1.1 support in axis, including persistent connections. Which means you either need to wait for java.net to fix its http1.1 support, or Axis to incorporate the Jakarta project's HttpClient 2.0 library to provide working htpt1.1. code. - Original Message - From: "Ka

Re: WSDL, Java source and javadoc

2003-02-16 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 16, 2003 03:38 Subject: RE: WSDL, Java source and javadoc > Any suggestions for implementing the other way around, add comments to the > WSDL? > Should the wsdd support inserting documentation t

Re: WSDL, Java source and javadoc

2003-02-14 Thread Steve Loughran
this is an open bug report. Feel free to fix it. - Original Message - From: "Elmar Fasel" <[EMAIL PROTECTED]> To: "axis mailing list" <[EMAIL PROTECTED]> Sent: Friday, February 14, 2003 08:18 Subject: WSDL, Java source and javadoc > Hi, > > is there a possibility to generate java stubs

Re: Is there a chance of having a Forum of discussion ( something more flexible )

2003-02-13 Thread Steve Loughran
- Original Message - From: "Apostolopoulos Paris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 16:59 Subject: RE: Is there a chance of having a Forum of discussion ( something more flexible ) > Well a database driven forum is also searchable and much bett

Re: Is there a chance of having a Forum of discussion ( something more flexible )

2003-02-13 Thread Steve Loughran
- Original Message - From: "Apostolopoulos Paris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 15:56 Subject: RE: Is there a chance of having a Forum of discussion ( something more flexible ) > Well it was just a proposal..the main thing is to get the res

Re: AxisServletBase.getEngine - startup performance

2003-02-10 Thread Steve Loughran
- Original Message - From: "Andreas Siegers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 10, 2003 07:06 Subject: AxisServletBase.getEngine - startup performance Hi all. >The first call to the AxisServletBase.getEngine method takes about 6-7 seconds for >me, which

Re: Axis TaskDef

2003-02-09 Thread Steve Loughran
- Original Message - From: "Mitch Gitman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 08, 2003 22:33 Subject: RE: Axis TaskDef > To run the Axis-specific Ant task axis-java2wsdl, I too had to set the > classpath via the command line to include axis.jar, axis-ant.

Re: adding new services

2003-02-06 Thread Steve Loughran
- Original Message - From: "Suleyman Yalinbas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 06, 2003 10:32 Subject: Re: adding new services > > 1) axis.jar is under > /usr/local/tomcat/webapps/axis/WEB-INF/lib > > 2) sorry for mistyping; the version is 3.2.4 > ok

Re: Failure notices

2003-02-06 Thread Steve Loughran
try [EMAIL PROTECTED] - Original Message - From: "Antti S. Brax" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 06, 2003 02:42 Subject: Failure notices > Are the mailing list management e-mail addresses broken? I get > failure notices from both <[EMAIL PROTECTED]>

Re: adding new services

2003-02-06 Thread Steve Loughran
- Original Message - From: "Suleyman Yalinbas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 05, 2003 21:45 Subject: adding new services > > I have two question > 1) axis service deployment doc says dropping off > those classes into lib/ or classes/ is enough

Re: Scalability, Multiple Threads/Objects?

2003-02-05 Thread Steve Loughran
the scalability is really defined by the app server; it is the one that creates the threads and the servlet instance to handle it. But your endpoint can be in an object created per message (The default), per session, or a singleton; the latter may scale better if you code for re-entrancy - Ori

Re: attachment temporary files

2003-02-05 Thread Steve Loughran
(B- Original Message - (BFrom: "Eiji Yoshida" <[EMAIL PROTECTED]> (BTo: <[EMAIL PROTECTED]> (BSent: Tuesday, February 04, 2003 19:31 (BSubject: attachment temporary files (B (B (B> Hi, everyone (B> (B> I have a question about attachment temporary files. (B> When SOAP message wti

Re: Re: set and get methods from the browser

2003-02-04 Thread Steve Loughran
Formally, GET requests are only a part of SOAP1.2. But (a) Axis1.1 has some soap1.2 bits in there and (b) Axis has long had a simple and informal way to make requests with GET, it just gets better with time :) try: http://localhost:8080/axis/EchoHeaders.jws?method=echo¶m=test nb, looks like each

Re: calling SOAP with attachments from non java application

2003-02-04 Thread Steve Loughran
- Original Message - From: "Josh Kropf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 07:29 Subject: RE: calling SOAP with attachments from non java application > Beware, Microsuks .NET Framework (Enhancment 1.0) ONLY supports DIME encoded > messages that

Re: set and get methods from the browser

2003-02-04 Thread Steve Loughran
- Original Message - From: "Zafar T Minhas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 23:56 Subject: set and get methods from the browser Hi I have made a web service, a very simple jws file. This is the code: >private java.lang.String sGr

Re: Fear of Attachments

2003-02-03 Thread Steve Loughran
- Original Message - From: "Mark Mueller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 14:32 Subject: Re: Fear of Attachments > Hi Steve, > > Thanks for the paper, it is helpful. I gather that it > makes sense to support both MIME and DIME attachments > in

Re: standalone vs. servlet

2003-02-03 Thread Steve Loughran
- Original Message - From: "Dennis Sosnoski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 10:44 Subject: Re: standalone vs. servlet > Just in passing, one particular area that I suspect causes performance > problems is the SAX event stream buffering that ge

Fear of Attachments

2003-02-03 Thread Steve Loughran
For all those people who want to do attachments, here is an early draft of something I'm writing to look at attachments properly, including for .NET and other platforms. Here is the Axis coverage; the code was working against the CVS version of Axis this weekend; there have been changes in attachme

Re: Out of Memory problem

2003-02-03 Thread Steve Loughran
- Original Message - From: "Brian Ewins" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 09:48 Subject: Re: Out of Memory problem > Steve Loughran wrote: > > send it as an attachment. That works for files that size. base64 encod

Re: Out of Memory problem

2003-02-03 Thread Steve Loughran
send it as an attachment. That works for files that size. base64 encoding is very slow as well as being inefficient; XML parsers dont like strings that size. - Original Message - From: "Doss Markus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 08:14 Subject:

Re: Make beanMapping default

2003-02-03 Thread Steve Loughran
- Original Message - From: "Glen Daniels" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 07:30 Subject: RE: Make beanMapping default > > Hi Joel! > > There is some unfinished support in Axis for "autoTyping", which sounds like what you want. AutoTyping, when

Re: standalone vs. servlet

2003-02-02 Thread Steve Loughran
- Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 02, 2003 14:13 Subject: RE: standalone vs. servlet > I suspect that the use of reflection has a lot to do with the issue. Java > platforms use reflection to enable a bunch of

Re: standalone vs. servlet

2003-02-02 Thread Steve Loughran
- Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 02, 2003 11:46 Subject: RE: standalone vs. servlet > Dennis, > > I absolutely agree with you regarding application code. Using well-optimized > code and a good application se

Re: Antw: Asynchronous interface

2003-01-31 Thread Steve Loughran
- Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 31, 2003 06:30 Subject: RE: Antw: Asynchronous interface > There's a difference between an asynchronous API and an asynchronous > transport. You should be able to make asynchr

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 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: 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

Re: Can't find service-- PUT vs GET problem?

2003-01-29 Thread Steve Loughran
maybe its a bug in tomcat... - Original Message - From: "Roy Wood" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 12:15 Subject: Re: Can't find service-- PUT vs GET problem? >Use POST? I *am* using POST when I do the actual transaction. When I calculat

Re: user-defined Exceptions

2003-01-29 Thread Steve Loughran
- Original Message - From: "Olivier Gauwin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 00:56 Subject: Re: user-defined Exceptions > > > Thanks, Steve, but I still have a problem... > > I've tried this (with Axis CVS) : > AxisFault af = new Ax

  1   2   3   4   >