NoClassDefFoundError samples/userguide/example4/Client2

2005-02-13 Thread todorov
Hello, I have a problem with example4 of the userguide. The command > java samples.userguide.example4.Client > -lhttp://localhost:8080/axis/services/LogTestService work fine. When I create a new file Client2.java in the same directory with the same content(only the name is different) I can c

Interop with Weblogic Workshop Services?

2005-02-13 Thread Ry.
I wish to use Apache Axis client to securely communicate with aWeblogic service (school project).  I want to enable SSL + dig. sig,XML encryption, and most likely some kind of WS-Security token.I read at http://ws.apache.org/ws-fx/wss4j/ that WSS4J will be"interoperable with JAX-RPC based server/cl

Initializing a web service before invoking its methods

2005-02-13 Thread Mitja Lustrek
Hello!   I want to write a web service that monitors a number of websites for changes. Upon request it sends a digest of the changes to a client. The way I intend to do it is to create a web service with scope 'application' in which a thread will run continuosly to do the monitoring. This ma

Initializing a web service before invoking its methods

2005-02-13 Thread Mitja Lustrek
Hello!   I want to write a web service that monitors a number of websites for changes. Upon request it sends a digest of the changes to a client. The way I intend to do it is to create a web service with scope 'application' in which a thread will run continuosly to do the monitoring. This ma

Re: Initializing a web service before invoking its methods

2005-02-13 Thread Bill Keese
Thread stuff in J2EE is a bit complicated; you're not supposed to just start your own thread.  Here's a quote from a mail on the Tomcat list (by Erik Weber): This is covered by JMX. For example, see javax.management.timer.Timer (which can be initialized/destroyed by a ServletContextListener). T

Re: How to automate the build process of writing web service clients

2005-02-13 Thread Bill Keese
Java2Wsdl should generate stubs for the client side. What was missing from the Java2Wsdl output? babloosony wrote: Hi All, I have one interesting doubt! Say there are lot of WSDL's exposed by some third party web service providers. I am using Apache AXIS 1.2 RC2 on client side. Are there any t

Re: Newbie Doubts on Custom Types

2005-02-13 Thread Bill Keese
Inheritance can be specfied in schemas. http://example.org " xmlns:tns="http://example.org";> ... babloosony wrote: Hi All, I have few doubts on custom types transferring b

Re: Validating a document using WSDL?

2005-02-13 Thread Bill Keese
AFAIK Axis doesn't support this but if you write in document/literal or wrapped/literal mode, and separate out your schema definition into a separate XSD file, then you can use Castor to verify schemas. Haven't tried it though. See http://www-106.ibm.com/developerworks/webservices/library/ws-c

Re: Returning arrays to .Net (again)

2005-02-13 Thread Bill Keese
Yes I agree.    Actually, releasing Axis 1.2 without document/literal array support seems somewhat meaningless.  Dims - can this be fixed for the 1.2 release? Anyway, the bug is http://issues.apache.org/jira/browse/AXIS-1547 and you can patch the code according to these instructions:   http:/

Re: Axis & workflow based services

2005-02-13 Thread Bill Keese
Never used Laszlo before but it sounds like both laszlo and struts are libraries for building your presentation layer.  Thus, you should use one of them, not both.  Why are you talking about struts? Abdullah Jibaly wrote: Bill, Thanks for the input. However, my presentation layer is going

Sending array object with Axis

2005-02-13 Thread Roberto De Shong
Ok, my problem is I'm accessing a web service with apache axis and when I try to send an array ob object to the service only the first element of the array is received. I'm using JBuilder to develop the client, and the web service is written in PHP using NuSOAP. The service is simple it just counts

Re: BeanDeserializer fails in "class" element for xsd:any type

2005-02-13 Thread KISIMOTO, Makoto
$BLZB<$5$s!"4_K\$G$9(B (B (BOn Sat, 12 Feb 2005 10:05:39 -0800 (PST) (BToshiyuki Kimura <[EMAIL PROTECTED]> wrote: (B> To: $B4_K\$5$s(B (B> Cc: [EMAIL PROTECTED]"$_$J$5$s!"(B (B> (B> $B!!LZB<$G$9!#(B (B> (B> $B!!LdBj2U=j$rFCDj$9$k$?$a!"[EMAIL PROTECTED]<%9$r(B (B> $B3NG'$7$F$$

Re: BeanDeserializer fails in "class" element for xsd:any type

2005-02-13 Thread Toshiyuki Kimura
To: $B4_K\$5$s(B (B $B!!LZB<$G$9!#(B (B $B!!%5%s%W%k$N3NG'!"$"$j$,$H$&$4$6$$$^$7$?!#(B $B$H$$$&$3$H$G!"%P%0$NJ}$O0lC6%/%m!<%:$5$;$FD:$-$?$$(B $B$H;W$$$^$9!#I,MW$,$"$l$P!"$b$&0lEY%*!<%W%s$9$k$3$H(B $B$b2DG=$G$9!#(B (B $B59$7$/$*4j$$$7$^$9!#(B (B--- (BToshi <[EMAIL PROTECTED]> (B

Re: [Announce] Internationalization progress of Axis (fwd)

2005-02-13 Thread Toshiyuki Kimura
To: $B3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!$$$h$$$h!"(B1.2 RC3$B$NDs6!$,:9$7Gw$C$F$-$F$$$^$9!#(B $B!(B $B!!2?$bBP1~$7$J$$8B$j!"4pK\E*$K2<5-$N(BURL$B$K$"$k%U%!%$%k$,(B $B$=$N$^$^%j%j!<%9HG$H$7$FDs6!$5$l$k7A$K$J$j$^$9$N$G!"$4(B $B3NG'$*4j$?$7$^$9!#(B (B $B!!(Bdims$B;a$O!"!X:[

Re: How to automate the build process of writing web service clients

2005-02-13 Thread babloosony
Bill- I am talking about the actual client java programs that used the stubs created by AXIS Java2WSDL ? On Mon, 14 Feb 2005 09:31:00 +0900, Bill Keese <[EMAIL PROTECTED]> wrote: > Java2Wsdl should generate stubs for the client side. What was missing > from the Java2Wsdl output? > > babloosony

Re: How to automate the build process of writing web service clients

2005-02-13 Thread Bill Keese
I don't think there's any tool to automatically generate a client program that uses the stubs generated by Java2Wsdl.    But I'm not sure what you would want such a program to do; are you looking for a program that automatically generates JSP pages, or automatically generates a swing applicatio

Re: How to automate the build process of writing web service clients

2005-02-13 Thread babloosony
Bill- You are right ! I am looking programs similiar to jsp/swing On Mon, 14 Feb 2005 13:16:16 +0900, Bill Keese <[EMAIL PROTECTED]> wrote: > I don't think there's any tool to automatically generate a client program > that uses the stubs generated by Java2Wsdl.But I'm not sure what you >

Re: Axis & workflow based services

2005-02-13 Thread Abdullah Jibaly
That's true, Laszlo is only a presentation layer. I wasn't necessarily meaning struts itself, just any controller layer that would be able to validate I'm logged in with a session, validate the data input, the business flow, etc. Here's an example I have in mind: Laszlo presentation layer calls U

Re: How to automate the build process of writing web service clients

2005-02-13 Thread Bill Keese
Hmm, I see.  Sorry, I don't know any programs that do that. babloosony wrote: Bill- You are right ! I am looking programs similiar to jsp/swing On Mon, 14 Feb 2005 13:16:16 +0900, Bill Keese <[EMAIL PROTECTED]> wrote: I don't think there's any tool to automatically generate

Re: Axis & workflow based services

2005-02-13 Thread Bill Keese
So, maybe you would have Laszlo and Struts controlling the web interface (page display and page flow control), and then the web service handles stuff like database access. I'd suggest that you check whether or not the user is logged in before calling the web service. If the user isn't logged i

RE: How to automate the build process of writing web service clients

2005-02-13 Thread Rob Crusoe
Oh boy! You know what, i do have exactly such product !!   It does everything - just touch your mouse with your right palm, and it generates all - JSPs, colorful swing apps, EJBs and submits your project completion reports too!!   Just send two roubles to this address to get ur copy: Rob, Crusoe Is