Re: Best way to send attachments

2005-01-07 Thread Henry Lu
You can always start with .NET to start a project in C# and create a wsdl file based upon the services you created in the project and start from there. -Henry >>> [EMAIL PROTECTED] 1/7/2005 1:21:10 PM >>> All of the reples make no sense whatsover to me. The original poster makes a very clear que

Re: Best way to send attachments

2005-01-07 Thread Henry Lu
Just sending an object as parameter including contents of file(s). -Henry >>> [EMAIL PROTECTED] 1/7/2005 11:43:05 AM >>> Hi team, I did lot of research on Axis attachments but I am still not able to figure out the best way to send attachments. We currently use DataHandler which works fine with Ja

Re: java2wsdl ant task for document/literal

2004-12-17 Thread Henry Lu
I studied Axis 1.2 since it started and java2wsdl NEVER worked for D/L. I think the problem is in both of axis.jar and wsdl4j.jar. Specially wsdl4j.jar because it does no generate correct wsdl file for D/L (WS-I compliant). I am still waiting for the Axis development group to fix the problem. -Hen

Re: Axis 1.2 RC2 released

2004-11-29 Thread Henry Lu
away. However, the client must always call the web service with a single Document as its parameter. Jeff - Original Message ----- From: "Henry Lu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, November 24, 2004 9:59 AM Subject:

Re: Axis 1.2 RC2 released

2004-11-24 Thread Henry Lu
Okay, I got some explanation finally. But I still want to use DoC/Lit. Could you send me a working version of WSDL for DOC/LIT? Do you think this is a bug in the axis? Are they going to fix when the axis 1.2 is released? I used a c# version of WSDL file, it works for MS IE server but failed on A

Axis 1.2 RC2 released

2004-11-24 Thread Henry Lu
Is there any one can help me out to testing DOC/LITTLE for the following interface? public interface echo { public String echo_double(String s1, String s2); } Please use DOC/LITTLE I always got the result like the following: call("My name is ", Henry"); returns: My name is null -Henry >>

Re: ANNOUNCE: Axis 1.2 RC2 released

2004-11-24 Thread Henry Lu
Where can we find the hightly build version for the axis/1_2RC2? It seams to me there was bug at the first rolling out. -Henry >>> [EMAIL PROTECTED] 11/17/2004 11:36:35 AM >>> Hi all: The RC2 release of Axis 1.2 (probably the last before 1.2 (finally) goes final) is now available at: http://w

Re: ANNOUNCE: Axis 1.2 RC2 released

2004-11-19 Thread Henry Lu
What I found out is that the size of new axis.jar (1.2RC2) (1368kb) is much smaler than (1.2RC1) (1449kb). Is there any mistakes? Please confirm! -Henry ** Electronic Mail is not secure, may not be read every day, and should not be used fo

Re: ANNOUNCE: Axis 1.2 RC2 released

2004-11-17 Thread Henry Lu
I tried this new version with the following example: public interface Echo extends java.rmi.Remote { public java.lang.String echoString(java.lang.String in0) throws java.rmi.RemoteException; public java.lang.String echoString_double(java.lang.String in0, java.lang.String in1) throws java.r

RE: doc-literal

2004-11-04 Thread Henry Lu
Thanks for your reply. THe problem is in the second function. With doc/lit, it never worked. Could you give it try? -Henry >>> [EMAIL PROTECTED] 11/4/2004 4:21:56 PM >>> There is an echo implementation included in the samples with the source code. -Original Message--

doc-literal

2004-11-04 Thread Henry Lu
Could someone show me a working example of following implementation of interface for both server and client with java Axis1.2rc? public interface Echo { public String echo(String s); public String echo_double(String s1, String s2); } public EchoImpl implements Echo { .. public Str

nightly built

2004-10-29 Thread Henry Lu
I downloaded most recent ws-axis from cvs and rebuilt it. It came out with axis.jar file with size 1304k. But the size of axis.jar in the RC1 release of Axis 1.2 is 1445k. So when i started comcat with axis, I got a lot errors. Is there any idae what to do? -Henry

new comments

2004-10-15 Thread Henry Lu
Jayachandra, thanks for your info and time. But I have never had lock to make things going. Here is my code: package ws.Echo; public interface Echo { public String echoString(String arg); public String echoString_double(String arg1, String arg2); } ///

Re: java2wsdl error

2004-10-12 Thread Henry Lu
n On Tue, 2004-10-12 at 18:36, Henry Lu wrote: > I gor the following errors when I ran java2wsdl command. I did include > activation.jar and mail.jar in my classpath. > > java.lang.NoClassDefFoundError: javax/activation/DataSource > .. > > Is something missing? > > -Henry >

java2wsdl error

2004-10-12 Thread Henry Lu
I gor the following errors when I ran java2wsdl command. I did include activation.jar and mail.jar in my classpath. java.lang.NoClassDefFoundError: javax/activation/DataSource .. Is something missing? -Henry

RE: WSDL2Java and Basic Profile

2004-10-11 Thread Henry Lu
Could you provide the web site for downloading "a free WSDL editor with a validator"? -Henry >>> [EMAIL PROTECTED] 10/11/2004 10:13:04 AM >>> Cap Science provides a free WSDL editor with a validator. Raul -Original Message- From: Dan Ciarniello [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: Java2WSDL help

2004-08-25 Thread Henry Lu
As far as I know, Axis 1.2 beta doesn't work with doc/lit. I tried so many times and I failed to get it going and I filed reports through the JIRA and no answer so far. I am waiting for the next release to resolve this very, very important issue. -Henry >>> [EMAIL PROTECTED] 8/25/2004 2:36:19 PM

Re: ANNOUNCE : Axis 1.2 beta 2

2004-07-14 Thread Henry Lu
Is there anyone who can tell me why the nightly build axis source code creates axis.jar file with 1285 KB size in ~/build/lib directory but the axis1.2beta2 has axis.jar file with 1589 KB? That maybe the reason I failed to bring up axis in the Tomcat by copying all jar file from the nightly built ~

Re: axis 1.2 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException

2004-07-06 Thread Henry Lu
I just download the new version from http://cvs.apache.org/snapshots/ws-axis/ of CVS code: ws-axis_20040706163423.tar.gz 06-Jul-2004 09:36 24M And I built it with no errors and copy all jar files from the build/lib to webapps/axis/WEB-INF/lib and I got the following errors when i restarted th

debug info

2004-07-06 Thread Henry Lu
How to get rid of debug/info/warn message in the Axis-1.2 beta when using ant to run java2wsdl and wsdl2java like the followings: [axis-java2wsdl] log4j:WARN No appenders could be found for logger (org.apache.a xis.i18n.ProjectResourceBundle). [axis-java2wsdl] log4j:WARN Please initialize the log4

cvs night-built

2004-07-01 Thread Henry Lu
Is thare any one who knows how to set a night-built cvs version of axis-1.2-bate version to work? I got the 404 error when i tried to copy lib to axis WEB-INF/lib. -Henry

RE: Problem deploying Service

2004-06-25 Thread Henry Lu
I have the same problem. I copied the night-built lib to the /web-inf/lib and tried to deploy a service and I got 404 error. Could someone tell me how to fix it? -Henry >>> [EMAIL PROTECTED] 6/25/2004 7:48:36 AM >>> I have the same problem. I copied the night-built lib to the /web-inf/lib and tri

RE: Problem deploying Service

2004-06-25 Thread Henry Lu
I have the same problem. I copied the night-built lib to the /web-inf/lib and tried to deploy a service and I got 404 error. Could someone tell me how to fix it? -Henry >>> [EMAIL PROTECTED] 6/24/2004 1:07:04 AM >>> Found its the AdminClient problem.. thanks! Stanly -Original Message- F

axis-1_2beta and cvs source

2004-06-22 Thread Henry Lu
I built new axis with the snapshots of latest CVS, and replace all jar files in the WEB-INF/lib with the latest lib built by me. I got the error 404 when I deploy a services to the axis server (1_2Beta). How to fix it? -Henry

Re: How crazy is it to use Axis 1.2 beta in production?

2004-06-14 Thread Henry Lu
I have experienced a lot problems with this 1.2 beta version for Doc/literal. It DID NOT work even for a very simple example I post coulple days ago (I have not got any anwser yet). I think it too early to release for production. -Henry >>> [EMAIL PROTECTED] 6/14/2004 8:35:17 AM >>> From your e

axis-2(bata) Doc-literal

2004-06-11 Thread Henry Lu
Is it a bug? It fialed to runa simple example with doc/literal style. //my interface: // public interface Echo { public String echoString(String arg); public String echoString_double(String arg1, String arg2); } //my interface: ///

java2wsdl style problem

2004-03-07 Thread Henry lu
I got the following errors when the option -yDOCUMENT -uLITERAL for java2wsdl command: AxisFault faultCode: {http://xml.apache.org/axis/}Server.generalException faultSubcode: faultString: Attempted to write duplicate schema element : {http://Calculator.w s}in0 faultActor: faultNode: faultDetail:

style and use

2004-03-06 Thread Henry lu
When I use option -yDOCUMENT -uLITERAL for java2WSDL, I got the following errs: AxisFault faultCode: {http://xml.apache.org/axis/}Server.generalException faultSubcode: faultString: Attempted to write duplicate schema element : {http://Calculator.w s}in0 faultActor: faultNode: faultDetail:

RE: axis 1.1 on RESIN

2004-03-03 Thread Henry lu
axis 1.1 on RESIN Date: Wed, 3 Mar 2004 11:38:33 -0500 Hi Henry, Yes, I do. Resin 2.1.2. Greg > -Original Message- > From: Henry lu [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 03, 2004 10:48 AM > To: [EMAIL PROTECTED] > Subject: axis 1.1 on RESIN > > Is the

axis-1.1 on resin

2004-03-03 Thread Henry lu
Is there anyone who has experience of installing axis1.1 on RESIN running on a SSL web server? _ Find things fast with the new MSN Toolbar – includes FREE pop-up blocking! http://clk.atdmt.com/AVE/go/onm00200414ave/direct/01/

axis 1.1 on RESIN

2004-03-03 Thread Henry lu
Is there anyone who has experience of install Axis-1.1 on RESIN running on a SSL web server? _ Get a FREE online computer virus scan from McAfee when you click here. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

FeatureEnabled

2003-11-07 Thread Henry lu
How do we find out how many features have been implemented in the axis1-1? There is an interface defined in the axis 1-1 called FeatureNabled but we couldn't find an concrete class implements it. _ Is your computer infected with a v

Re: Apache Axis Help - Urgent

2003-10-27 Thread Henry lu
This is exactly easy WS paied a price - performence. THere is nothing you can do about it. From: Mario Cova <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: Apache Axis Help - Urgent Date: Mon, 27 Oct 2003 13:12:25 - Hi! WHY DOES

Re: Changing Web Service address location

2003-10-27 Thread Henry lu
There is way to do so without change the "final" address. There is another "getXXX" method that lets you to specify the url. Take look at the locator file. From: Guillaume Sauthier <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Changing Web Service address lo

Re: wsdl file

2003-10-24 Thread Henry lu
<b>A web service which performs Domain Name Lookups.</b> http://localhost/HelloWorldService/HelloWorldService.asmx"; /> From: Stephen Gordon <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To:

wsdl file

2003-10-23 Thread Henry lu
I got a wsdl file generated by IE from a WS written in C#. I got the following errors when i tried wsdl2java program: java.lang.NullPointerException at org.apache.axis.wsdl.toJava.JavaWriter.writeComment(JavaWriter.java:2 44) at org.apache.axis.wsdl.toJava.JavaServiceIfaceWriter.w

Re: WebServices chaining

2003-10-23 Thread Henry lu
As a matter of fact, you don't need this kind of "mediator". It is WS-routing/WS-forwarding/WS-refering all about. -Henry From: "Rodrigo Ruiz" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: WebServices chaining Date: Mon, 13 Oct 2003 12:48:10 +0200 If you w

RE: SSL web services

2003-09-30 Thread Henry lu
owto.html for lots of good SSL client/server setup and configuration information. --Thunder -Original Message- From: Henry lu [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 12:47 PM To: [EMAIL PROTECTED] Subject: Re: SSL web services I tried and i got differe

Re: SSL web services

2003-09-30 Thread Henry lu
Re: SSL web services Date: Tue, 30 Sep 2003 16:43:09 +0200 Henry lu wrote: Thank you very much, Mr. Smith! It works! Now I have another question for you. How to deploy a web services to a ssl server? Here is what i did: C:\java_dev\web_services\ex1\srv>java org.apache.axis.client.Admin

Re: SSL web services

2003-09-29 Thread Henry lu
ion:: java.lang.NumberFormatException: For input string: "" do you know how to fix? From: Andrew Smith <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: SSL web services Date: Wed, 24 Sep 2003 12:56:07 -0400 On Tue, 2003-09-23 at 16:09, Henry lu wrote: > Is ther

RE: Axis using wrong encoding for array in Doc/literal

2003-09-26 Thread Henry lu
Could we take a look your jova code and .NET code? I think the problem is that the tools to interplate wsdl is a little bit different between AXIS java and .NET framework. From: "Mike Perham" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: Axis using wrong e

SSL web services

2003-09-23 Thread Henry lu
Is there any cliewnt code for SSL web services? What we'd like to know how to send user name, password, truststore, and trustStorePassword to server. _ Help protect your PC. Get a FREE computer virus scan online from McAfee. http:/

RE: source code

2003-09-04 Thread Henry lu
me reason, the samples only include the compiled classes. Stephanie -Original Message- From: Henry lu [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 12:13 PM To: [EMAIL PROTECTED] Subject: source code Where to find the source code for the following classes? SOAP

source code

2003-09-04 Thread Henry lu
Where to find the source code for the following classes? SOAPStructStruct.java and SOAPArrayStruct.java Both are used in the axis samples/echo examples. _ Use custom emotions -- try MSN Messenger 6.0! http://www.msnmessenger-downl

where is the source code...

2003-09-04 Thread Henry lu
Where is the source code of SoapArrayStruct.java and SOAPStructStruct.java ? _ Get a FREE computer virus scan online from McAfee. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

request envelope/message

2003-09-04 Thread Henry lu
Could someone tell me which class and method to get the request envelope/message content? The Call.getMessageContext() only get the response message. _ Try MSN Messenger 6.0 with integrated webcam functionality! http://www.msnmessen

RE: how to deploy a web services

2003-08-26 Thread Henry lu
to fix it? Thanks, From: "Mark Galbreath" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: how to deploy a web services Date: Tue, 26 Aug 2003 14:44:43 -0400 Yes, but first, check this out: http://www.catb.org/~esr/faqs/smart-questions.htm

how to deploy a web services

2003-08-26 Thread Henry lu
Could someone tell me how to deploy a java web services on a server with axis? _ MSN 8: Get 6 months for $9.95/month. http://join.msn.com/?page=dept/dialup

wsdd file

2003-08-26 Thread Henry lu
Could someone tell me how to deploy a wsdd file to a ssl server? _ Get MSN 8 and enjoy automatic e-mail virus protection. http://join.msn.com/?page=features/virus

deploy wsdd file to ssl server

2003-08-26 Thread Henry Lu
Are there someone who know how to deploy a wsdd file to a ssl server? What is the command look like? --- Henry Lu MSIS phone: (734) 615-6270 University of Michigan Medical School

deploy wsdd file on a ssl server

2003-08-26 Thread Henry Lu
I tried to deploy a web services with wsdd file to a ssl server, i got the following error: Processing file deploy.wsdd Exception:: java.lang.NumberFormatException: For input string: "" why and how to fix? ------

RE: axis with SSL server

2003-08-04 Thread Henry Lu
Yes I did. Tomcat with SSL work just fine. --- Henry Lu MSIS phone: (734) 615-6270 University of Michigan Medical Schoolfax: (734) 936-3258 On Mon, 4 Aug 2003, Sripada Das

RE: axis with SSL server

2003-08-04 Thread Henry Lu
I do use j2sd 1.4. But when i try the example in the axis, addr, i got these error with SSL. If i running the tomcat without SSL, it works just fine. Why? --- Henry Lu MSIS phone: (734

axis with SSL server

2003-08-04 Thread Henry Lu
I go the error when i deploy service to w SSL server. It said that no such protocol support. https://localhost:8443/... any idea? --- Henry Lu MSIS phone: (734) 615-6270 University

deployment error

2003-08-02 Thread Henry Lu
? --- Henry Lu MSIS phone: (734) 615-6270 University of Michigan Medical Schoolfax: (734) 936-3258