Axis client logging

2005-02-18 Thread Halsema, Aillil I
I've got a simple Axis client running on Windows XP, but every time I start it the messages "log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle).""log4j:WARN Please initialize the log4j system properly."   appear on the

Axis 1.2 on J2EE 1.2 - is it possible?

2005-02-18 Thread Kenneth Stephen
Hi, I'm attempting to get Axis 1.2 (RC2) to work on Websphere 4 - which is a J2EE 1.2 container. The first thing that I came across is the following item in the web.xml : org.apache.axis.transport.http.AxisHTTPSessionListener ...which is not permitted in a J2E

RE: basic question about axis

2005-02-18 Thread Vikas Phonsa
services. But I wanted to understand how things are working as I want to try to deploy axis on other servers than tomcat. So does the server-config.wsdd file have any dependency on the server in which the app is being deployed? If the web.xml and the wsdd file is just copied from an app deployed

RE: basic question about axis

2005-02-18 Thread Brown, Mike
The core of Axis is the AxisServlet. It gets created and init() is called by the container. Axis uses init to load the WSDD and all that good stuff. The request is sent to the AxisServlet in the doPost() method. From there Axis inspects the soap envelope and using the configuration it pulled from

AXIS Life Cycle log messages

2005-02-18 Thread babloosony
Hi All, I am using Apache AXIS 1.2 RC2, Custom AXIS Handlers for (De)Serialilizing, Security etc. Now my question is it possible to capture all(informative, debug, fatal) log messages spitted by AXIS and that tell me at what stages my custom handlers are called. Basically I want to rely on the

Re: basic question about axis

2005-02-17 Thread Bill Keese
AxisServlet /services/* So every request with "/services/*" would be passed to the AxisServlet, right? Right Now how would the AxisServlet find the service / class that needs to be invoked? JWS files are found automatically; you don't have to do anything. For services that are wri

RE: basic question about axis

2005-02-17 Thread Vikas Phonsa
Bill, In the web.xml for one of the axis sample apps, I have AxisServlet /services/* So every request with "/services/*" would be passed to the AxisServlet, right? Now how would the AxisServlet find the service / class that needs to be invoked? Thanks Vikas ---

Re: basic question about axis

2005-02-17 Thread Bill Keese
I'm not sure what you are asking exactly. Tomcat routes incoming requests based on the path and extension type, as specified in web.xml. For example, any requests for jws files are routed to Axis: AxisServlet *.jws You can look at the web.xml in the sample app released with

Re: Axis sends weird SOAP requests

2005-02-17 Thread Anne Thomas Manes
It's true that, based on the WSDL definition for the getAll Products operation, Axis should send an empty body: . I would call this a bug. But, it's also true that this WSDL is not WS-I compliant becuase you have multiple operations with the same wire signature (an empty body). Systin

basic question about axis

2005-02-17 Thread Vikas Phonsa
Hi Everybody, I have a very basic question about how axis intercepts calls to the deployed services. An axis based web services application is not much different than a regular web application deployed with the war structure except that we load a bunch of axis servlets on startup and we have a

Re: axis on-the-fly wsdl generation problem

2005-02-17 Thread Michael Thome
Final followup, FYI. In the end, the problem turned out to be java2wsdl of wsdl2java of the following type of xsd fragment:                 It appears that it cannot handle the anonymous complexType when referenced by a subelement.  For instance, the approximate equi

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread aveitas
s. > > - Set authenticated user context in servlet request/context if your business > components need it. > > - Defile these handlers in wsdd request flow inside your service section. > e.g. > > > > > > - Client should supply credentials in messa

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread THOMAS, JAI [AG-Contractor/1000]
17, 2005 10:48 AMTo: [EMAIL PROTECTED]Subject: RE: Axis security, when web-app can't use Basic Web Authentication I like that solution, especially because of the ease of a client supplying credentials (call.setUsername()). But is there an interoperable solution that would work

RE: Axis security, when web-app can't use Basic Web Authentication

2005-02-17 Thread Sharam Fouladgar-Mercer
, February 17, 2005 11:22 AMTo: '[EMAIL PROTECTED]'Subject: RE: Axis security, when web-app can't use Basic Web Authentication There are couple of approaches you can take, but here's what I would do.    - Implement an Authentication handler and Authorization handler extending B

RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread THOMAS, JAI [AG-Contractor/1000]
- Set authenticated user context in servlet request/context if your business components need it.   - Defile these handlers in wsdd request flow inside your service section.  e.g.             - Client should supply credentials in message header. In the case of Axis clients, it would be something

Re: Error generating WSDL with xsd:string attribute in AXIS 1.2RC2

2005-02-17 Thread thomas willomitzer
Hello. I've found a workaround to the problem stated below. Tracing through the Axis code i found out that the WSDL Emitter gets confused with namespaces. I've removed all simpleType's like

Axis sends weird SOAP requests

2005-02-17 Thread [EMAIL PROTECTED]
Hi all, I'm investigating how good/bad Axis and Systinet work together. And I think I found a fault at Axis' side. When I send a request with no parameters, Axis generates the following SOAP message: POST /WholeSalerService HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: a

Axis security, when web-app can't use Basic Web Authentication

2005-02-17 Thread sol myr
Hi ,   I'd greatly appreciate advice on the following. In short: what do you do when a web-service requires clients to login (supplying user + password), *but* the server/web-app can't be configured to use basic web authentication ?   We have an Axis web service, which requires log

Flickr API with axis

2005-02-17 Thread [EMAIL PROTECTED]
Hi I am investigating using the Flickr API with axis SOAP and am still at an early stage. My first block is this The flickr API asks for a different version of the soap-envelope to that generated by Axis, but generates correct Schema and Schema instance. Is this my problem? Am I doing this the

Re: Doubt on AXIS Handlers

2005-02-16 Thread Bill Keese
Wow, mail transport... the world's slowest RPC?  :-) And if that is still too fast, try: org.apache.axis.transport.postalmail Bill [EMAIL PROTECTED] wrote: Hi Kumar, Other than the HTTP Transport, Axis also provides a JMS Transport and a Mail Transport. See the following package

apache AXIS session timeout

2005-02-16 Thread moritz
Hey there, I'm looking for a solution to the following problem. I'm trying to develop a rather simple Webservice with Axis 1_1 and want to use axis's built-in session-support. When a user logs in (e.g calls login method) user will be marked as online, so that user of the same web

Re: axis on-the-fly wsdl generation problem

2005-02-16 Thread Michael Thome
As an in-progress followup, the lack of a stack dump is due to java bug 4872096 (see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4872096 ) which can be worked around by adding -Xint to the vm arguments. I'm currently getting (with the middle cut out): java.lang.StackOverflowError   

Error generating WSDL with xsd:string attribute in AXIS 1.2RC2

2005-02-16 Thread thomas willomitzer
Hi There! I have seen a couple of people with the same problem but there seems to be no answer so far: The problem relates to WSDL generation of deployed services in Axis 1.2RC2 . The error is: BEGIN AXIS error Sorry

RE: axis on-the-fly wsdl generation problem

2005-02-16 Thread Jay Glanville
> I've got a deployed service which is perfectly functional, > but for which > the ?wsdl option fails with a simple "Exception - > java.lang.StackOverflowError" message (without a stack dump > or any other > information). The tomcat/catalina logs are similarly > unhelpful. Also > interesti

axis on-the-fly wsdl generation problem

2005-02-16 Thread Michael Thome
"?wsdl" is doing that is different than java2wsdl? Thanks much, Michael Thome [EMAIL PROTECTED] PS. Versions: axis 1.2rc2 tomcat 5.0.28 jdk 1.4.2_06 (all standard releases, unmodified, with vanilla installations) [Ob disclaimer: Perhaps this is a well known problem and I've

RE: RE : problems invoking axis soap from an applet

2005-02-16 Thread Brown, Mike
The problem is that the Applet is trying to read (not write) the log level. We have to find a way to give it that knowledge. Doing a quick google. I found this page. http://www.geocities.com/dcblaha/articles/Soap/SoapSetup.htm It gives a recommendation on how to get Axis working in an applet. In

RE: Parameterized constructors through Axis?

2005-02-16 Thread THOMAS, JAI [AG-Contractor/1000]
Yes, provided you implement a custom serializer for that object. Jai -Original Message- From: Morten Egelund Rasmussen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 6:32 AM To: [EMAIL PROTECTED] Subject: Parameterized constructors through Axis? Hi all! Simple question

Re: Minimal production environment for Axis application

2005-02-16 Thread Paul Callahan
you could look at Jetty--little more lightweight than Tomcat. -pc On Wed, 16 Feb 2005 10:21:28 +0300, Eugene Prokopiev <[EMAIL PROTECTED]> wrote: > Hi, > > I need minimal production environment for Axis application. For > org.apache.axis.transport.http.SimpleAxisServer I read

Parameterized constructors through Axis?

2005-02-16 Thread Morten Egelund Rasmussen
Hi all! Simple question: Can I expose an object through an Axis Webservice with a paramerized constructor? I.e. something like this: public class MyObject { MyObject(String test) { // Constructor code goes here } } Thanks, ~Morten :-)

Re: IoC for Axis services

2005-02-15 Thread Eugene Prokopiev
How can I use any IoC framework (Spring?) with Axis for storing service configuration? Parameters for handlers is not quite. They are not support complex types and not work with services. http://opensource.atlassian.com/projects/spring/browse/SPR-371

Minimal production environment for Axis application

2005-02-15 Thread Eugene Prokopiev
Hi, I need minimal production environment for Axis application. For org.apache.axis.transport.http.SimpleAxisServer I read in javadoc: "This is not intended for production use. Its intended uses are for demos, debugging, and performance profiling". Tomcat is complex environment with

Re: RE : problems invoking axis soap from an applet

2005-02-15 Thread Philip Baruc
Is there no alternative to signing the applet? Have there been any bugs posted on axis to take care of this problem? p --- "Faucher, Christian" <[EMAIL PROTECTED]> wrote: > I am guessing you see this in applet log file. > > Axis (client) tries to write its log file.

RE: Axis/.Net interop

2005-02-15 Thread Dino Chiesa
ROTECTED] Subject: Re: Axis/.Net interop Use SByte, Java uses signed bytes, .NET's byte is unsigned. - -Jerome

Re: Axis/.Net interop

2005-02-15 Thread Jerome Gagner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian Gladish wrote: > In searching the archives I found the following e-mail, but there does > not seem to be a resolution. > > > > http://marc.theaimsgroup.com/?l=axis-user&m=106917131020548&w=2 > <http://marc

Axis/.Net interop

2005-02-15 Thread Brian Gladish
In searching the archives I found the following e-mail, but there does not seem to be a resolution.   http://marc.theaimsgroup.com/?l=axis-user&m=106917131020548&w=2   I am running into exactly the same situation.  After deployment Axis presents a WSDL which has xsd:byte[][] fo

Re: Doubt on AXIS Handlers

2005-02-15 Thread aveitas
Hi Kumar, Other than the HTTP Transport, Axis also provides a JMS Transport and a Mail Transport. See the following packages for details: org.apache.axis.transport.mail org.apache.axis.transport.jms So instead of communicating SOAP over HTTP, you would communicate SOAP over JMS or SMTP/POP3

RE : problems invoking axis soap from an applet

2005-02-15 Thread Faucher, Christian
Title: Message I am guessing you see this in applet log file.   Axis (client) tries to write its log file.  Since you are running in an applet, it tries to write on the client station.  Since it is not possible to write to the local disk from an applet sandbox, then you get this exception

problems invoking axis soap from an applet

2005-02-15 Thread Philip Baruc
I've seen acouple of post similiar to this one. I'm trying to invoke axis soap from an applet and i keep getting this error. Caused by: java.security.AccessControlException: access denied \ (java.util.PropertyPermission org.apache.commons.discovery.log.level read) I've seen ac

Doubt on AXIS Handlers

2005-02-15 Thread babloosony
Hi, What exactly is a transport handler in AXIS and can anyone please give one real world example of when shall we go for implementing our own transport handlers in AXIS ? Thanks & Regards, Kumar.

[axis-user digest] Can't invoke method with multiple arguments

2005-02-15 Thread Youhei Kawada
?;~$O$^$@;d$OLdBj$NA4$F$rG'<1$7$F$$$^$;$s$G$7$?!#e$N0z?t$G$$$+$J$k%a%=%C%I(B (B $B$b8F$V$3$H$,$G$-$^$;$s!#:[EMAIL PROTECTED],%G%7%j%"%i%$%:$5$l$k$?(B (B $B$a!"(Bjava.lang.IllegalArgumentException $B$,Ej$2$i$l$^$9!#(B (B (B "$B%a%=%C%I(B (B java.lang.String tes

IoC for Axis services

2005-02-14 Thread Eugene Prokopiev
Hi, How can I use any IoC framework (Spring?) with Axis for storing service configuration? Parameters for handlers is not quite. They are not support complex types and not work with services.

axis problem registering a handler-Unable to create handler

2005-02-14 Thread Pablo Lanza Moreno
Hello,   I'm trying register a client handler at runtime, the register process seems work fine but when I invoke to the service method I get the following exception:   java.xml.rpc.JAXRPCException: Unable to create handler of type com.test.handler.EchoHandler   I'm sure that is not a problem of

Re: Axis & workflow based services

2005-02-13 Thread Bill Keese
the input. However, my presentation layeris going to be Laszlo, and I want to communicate withthe business layer using axis. That's why I can't getto struts, axis will be processing the request first.Thanks,Abdullah --- Bill Keese <[EMAIL PROTECTED]> wrote: Abdullah Jibal

Re: Axis & workflow based services

2005-02-13 Thread Abdullah Jibaly
Bill,Thanks for the input. However, my presentation layeris going to be Laszlo, and I want to communicate withthe business layer using axis. That's why I can't getto struts, axis will be processing the request first.Thanks,Abdullah --- Bill Keese <[EMAIL PROTECTED]> wrote: A

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

2005-02-13 Thread Toshiyuki Kimura
7$?$3$H$r(B (B> $B (B> $B!V(B1.2_RC2$B!W$+$i!V(B1.2_RC3$B!W$KJQ99$5$l$F$$$^$9!#(B (B> (B> $B!!3+H/:G?7HG$N%U%!%$%k$b!"[EMAIL PROTECTED],;2>H$5$l$F$$$kMM(B (B> $B$K!"2<5-(BURL [EMAIL PROTECTED]/[EMAIL PROTECTED](B> $B3'MM(B (B> (B&g

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 simp

Re: Axis & workflow based services

2005-02-13 Thread Bill Keese
to be Laszlo, and I want to communicate with the business layer using axis. That's why I can't get to struts, axis will be processing the request first. Thanks, Abdullah --- Bill Keese <[EMAIL PROTECTED]> wrote: Abdullah Jibaly wrote: I want

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

2005-02-12 Thread Toshiyuki Kimura
G?7HG$N%U%!%$%k$b!"[EMAIL PROTECTED],;2>H$5$l$F$$$kMM(B $B$K!"2<5-(BURL [EMAIL PROTECTED]/[EMAIL PROTECTED](B> $B3'MM(B (B (B> (http://cvs.apache.org/dist/axis/nightly/axis-bin-1_2RC3.zip) (B $B$h$m$7$/$*4j$$$7$^$9!#(B (B--- (BToshi <[EMAIL PROTECTED]&g

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

2005-02-12 Thread Shouhei Kodama
[EMAIL PROTECTED](B $BO"MmCY$/$J$j$^$7$?!#(B (B (B $B0J2<$N%j%=!<%9$K$D$$$F$6$C$H3NG'$7$^$7$?!#(B (B(http://cvs.apache.org/dist/axis/nightly/axis-bin-1_2RC3.zip) (B $B!!!&(Bindex.jsp(WEB-INF/classes/i18n_ja.properties) $B!!!&(Bhappyaxis.jsp(WEB-INF/classes/i18n_

Re: [News] ANNOUNCEMENT : Axis C++ 1.5 alpha final Released

2005-02-11 Thread Toshiyuki Kimura
To: $B3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!%j%j!<%9%N!<%HIt$bF|K\8l2=$7$F!"%5%$%H$K7G:\$7$^$7$?!#(B $B8m;zC&;z!&8mLu$J$I$,$"$l$P!"$4O"Mm$*4j$$$7$^$9!#(B (B<http://ws.apache.org/axis/ja/cpp/index.html> (B $B59$7$/$*4j$$$7$^$9!#(B (B--- (

RE: Threads under axis

2005-02-11 Thread Parley, Thunder Jon
rom: Brown, Mike [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 2:34 PM To: '[EMAIL PROTECTED]' Subject: RE: Threads under axis This isn't an axis problem. The servlet spec does not support threads being spawned by code running in the container. It also does not support openi

RE: Threads under axis

2005-02-11 Thread Brown, Mike
This isn't an axis problem. The servlet spec does not support threads being spawned by code running in the container. It also does not support opening ports or several other no-nos. -Original Message- From: Ian Wootten [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 8:28

RE: Axis & workflow based services

2005-02-11 Thread Brown, Mike
provide a class that knows how to perform the business logic (or how to get the class that does) but is separate from the impl class that Axis generates (I use this because I overwrite my impl everytime I make changes to my service). I haven't really touched on maintaining state between calls

Threads under axis

2005-02-11 Thread Ian Wootten
run differently under axis? Thanks, Ian

Need info on Axis and Custom (De)Serializers

2005-02-11 Thread babloosony
Hi, Are there any good tutorials,links,blogs etc. on writing custom (de)serializers with axis. Any information on at what phases of soap request/response cycle in axis, these (de)serializers will be called and with hands-on examples will be very helpful. Please suggest ? Thanks & Reg

Re: axis 1.2, (/axis/servlet/AxisServlet) is not available.

2005-02-10 Thread Venkat Reddy
See http://ws.apache.org/axis/java/building-axis.html#BuildingWithServlets You need to keep servlet.jar in classpath while running ant to get AxisServlet class. No need of commenting stuff in web.xml. -- venkat On Thu, 10 Feb 2005 15:16:14 -0800 (PST), pushkar bhatia <[EMAIL PROTECTED]>

RE: Axis & workflow based services

2005-02-10 Thread Abdullah Jibaly
u > can have the impl access the business layer directly > (I prefer to separate > the code myself, but the choice is yours). > > So basically, web layer makes call to Axis, Axis > uses delegate to access the > business layer, business layer performs its magic > and return

axis 1.2, (/axis/servlet/AxisServlet) is not available.

2005-02-10 Thread pushkar bhatia
Hi All, I am new to AXIS and tomacat,right now i am working on axis 1.2,and trying to install it on my tomcat,.I am following the installation guide steps.I am through till happyaxis.jsp,but when trying to see the list of deployed Web services,i am getting the follwoing error. "(/axis/se

Re: Axis problem

2005-02-10 Thread Carlos Hurtado Ramírez
Thanks for your answer, i\'m going to test my web services in other application server... I have another doubt, is posible to make the axis web services logic execution in sequential way instead of a parallel way, that i think is the default, is a configuration parameter? T

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

2005-02-10 Thread Toshiyuki Kimura
$B!!$3$l$r $B$H;W$$$^$9!#BP1~2DG=$JJ}$O!"$<$R3+H/Cf$N:G?7HG$r2<5-(BURL $B$+$i(B (B> [EMAIL PROTECTED]&%s%m!<%I$7!"F|K\8l%a%C%;!<%8$rCf?4$H$9$kF0:n3NG'$KBP$7$F(B (B> $B$46(NOD:$1$l$P$H;W$$$^$9!#(B (B> (B> http://cvs.apache.org/dist/axis/nig

RE: Axis & workflow based services

2005-02-10 Thread Brown, Mike
to separate the code myself, but the choice is yours). So basically, web layer makes call to Axis, Axis uses delegate to access the business layer, business layer performs its magic and returns to delegate who returns to axis who returns to web layer. Hope that helps, Michael -Original

Handlers in Axis

2005-02-10 Thread Robert Gombotz
s the preferred way in axis to add custom header elements into a SOAP message. On the client side I simply cast the generated Stub (generated by WSDL2Java) to an org.apache.axis.client.Stub. I cannot use that same strategy inside my Handler. I have looked into the javadocs that come with the Ax

Re: Axis & workflow based services

2005-02-10 Thread Abdullah Jibaly
Bill, Thanks for the input. However, my presentation layer is going to be Laszlo, and I want to communicate with the business layer using axis. That's why I can't get to struts, axis will be processing the request first. Thanks, Abdullah --- Bill Keese <[EMAIL PROTECTED]> wr

Re: Axis & workflow based services

2005-02-10 Thread Abdullah Jibaly
Hi Paul, I have been looking closely at Beehive, however I don't think it is suitable right now since its workflows are designed for the web layer, not for web services. Thanks, Abdullah --- Paul Callahan <[EMAIL PROTECTED]> wrote: > You might want to take a look at Apache Beehive... > It is

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

2005-02-10 Thread Toshiyuki Kimura
DK 5.0)$B$NBP1~$J$I!"%$%s%Q%/%H$N$"$kBP1~9`L\$b$"$k(B (B> $B$N$G!"$=$&$$$&%9%F%C%W$K$J$j$=$&$G$9!#(B (B $B!!8=:_!"6aF|Cf$K(BRC3$B$rDs6!$9$k$?$a$N=`Hw$KC$9$k$N$rBT$C$F$$$k(B $B$H$N;v$G$7$?!#(B (B $B!!$3$l$rhttp://

Newbie Axis mapping problem

2005-02-10 Thread Ralph Scheuer
Hello everybody, I am just getting started with axis and I have run into a strange issue. In the BizTalk server's WSDL there is an imported schema for a "priceEnv" entity. In the "GetPrice" method definition, I get the following declaration: http://www.

Re: [News] ANNOUNCEMENT : Axis C++ 1.5 alpha final Released

2005-02-10 Thread Toshiyuki Kimura
To: $B3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!(BAxis C++ 1.5 Alpha$B$NDs6!0FFb$rF|K\8l%5%$%H$+$i$b(B (B[EMAIL PROTECTED]&[EMAIL PROTECTED](B (B (BOn Wed, 9 Feb 2005, Toshiyuki Kimura wrote: (B (B> $B!!(BAxis C++$B <http://ws.apache.org/axis/cpp/index.html> (B&g

Re: Axis & workflow based services

2005-02-10 Thread Paul Callahan
You might want to take a look at Apache Beehive... It is more oriented toward service-based presentation layers. http://incubator.apache.org/beehive/ -pc On Wed, 9 Feb 2005 14:06:36 -0800 (PST), Abdullah Jibaly <[EMAIL PROTECTED]> wrote: > Hi all, > > Is there a recommended way to implement w

Re: beanMapping tag in wsdd with Axis 1.2

2005-02-09 Thread Bill Keese
Sounds like a bug, so you should file a bug report.  I don't know any workaround to your problem, other than handwriting the WSDL (rather than auto-generating it).  Many people recommend writing the WSDL manually anyway. Praveen Peddi wrote: This is a re-send with simplified explai

Re: jax=-rpc and axis

2005-02-09 Thread Rajdeep Dua
axis implements JAX-RPC and SAAJ spcifications. --- Pavan Kumar Choukhada <[EMAIL PROTECTED]> wrote: > hi friends > can any body tell me chemistry between axis and > jax-rpc. > i mean similarities and differences.how they are > related how are > the bind to

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Toshiyuki Kimura
$B!!LZB<$G$9!#(B (B (B# $BA0%a!<%k$G=q$-$b$l$,$"$C$?$N$G!"DI5-$7$^$9!#(B (B (BOn Thu, 10 Feb 2005, Shu Fujita wrote: (B (B> $B$=$NJU$j$N5-=R$r%I%-%e%a%s%H$+$i8+$D$1$k$3$H$,$G$-$J$+$C$?$b$N$G!#(B (B $B!!%*!<%W%s%=!<%9$N>l9g$O!"%I%-%e%a%s%H$,ITB-$7$F$$$k$3$H$,$h$/$"$j(B $B$^$9$M!#(B(

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Toshiyuki Kimura
$+!#$H!"$$$&;v$OF#ED$5$s$N%5%s%W%k$G$b$-$A$s$HF0:n(B $B$7$=$&$G$9$M!#3NG'$,$H$l$^$7$?$i!"$^$?$4Js9p$*4j$$$7$^$9!#(B (B (B> $B%1!<%9$H$7$F$OMM!9$+$H$O;W$$$^$9$,!";d$N?H6a$J$H$3$m$G9T$o$l$F$$$?(B (B> $B;v$G$"$C$?$?$a!"B>$N3'$5$s$O$I

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Shu Fujita
$B$3$s$K$A$O!"F#ED$G$9!#(B $B?oJ,[EMAIL PROTECTED]:[EMAIL PROTECTED]&$G$9!"$9$_$^$;$s$G$7$?!#(B (B $B%5%s%W%k(B(Math)$B$KBP$9$k([EMAIL PROTECTED]@.8y$7$F$*$j$^$9!#(B (B $B;d$N%F%9%H%b%8%e!<%k!J(BOrderWS$B!K$O(BWSDD$B$K(Boperation$BMWAG$H(Bparameter$BMWAG$,(B $B$-$A$s$H5-=R$7$

jax=-rpc and axis

2005-02-09 Thread Pavan Kumar Choukhada
hi friends can any body tell me chemistry between axis and jax-rpc. i mean similarities and differences.how they are related how are the bind to each otherwell give some doc or link. i would be grateful to you. thanks with regards Pavan Kumar

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Toshiyuki Kimura
EMAIL PROTECTED]>o$K(BAxis-.NET$B4V$GF0:n$7$^$7$?!#(B (B> (B> WSDD$B$N;XDj$,$^$A$,$C$F$$$k$N$G$7$g$&$+!)(B (B $B!!%5%s%W%k$O!"MxMQJ}K!$r4V0c$o$J$$$?$a$N;29MNc$H$7$FMQ0U$7$F(B (B[EMAIL PROTECTED]"MxMQNc$K=>$C$F$NF0:n3NG'$r$*4j$$$7$^$9!#(B (B $B!!$A$J$_$K

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Shu Fujita
$+$o$+$k$h$&$G$7$?$i!"$465Z$O$b$H$h$j!"(B $B!V(BWSDL$B$ro$K5?Ld$r46$8$F$7$^$$$^$9!#(B $B$b$C$H4JC1$K(BWeb$B%5!<%S%9$re!#(B (B (B--- (Bshu. (B (B (B@ .NET$BB&@[EMAIL (BPROTECTED]<%k%(%i!<%a%C%;!<%8!!(B $B%+%9%?%`(B $B%D

Re: Axis 1.2 generating WSDL with same attribute name when having multiple arrays

2005-02-09 Thread Bill Keese
Nothing wrong with using "item" for elements of different types of arrays.  I think your WSDL is OK but AXIS' output is wrong.  You probably need Eric Chijoke's famous Axis array patch to the bug http://issues.apache.org/jira/browse/AXIS-1547 Eric's patch to this is

Re: Axis & workflow based services

2005-02-09 Thread Bill Keese
Abdullah Jibaly wrote: I want my view layer to communicate with the business layer using web services ... I can't use a standard MVC framework like struts since the request is sent to AxisServlet, right? As far as I understand, people usually talk about separating the "presentation layer" and t

Axis & workflow based services

2005-02-09 Thread Abdullah Jibaly
Hi all, Is there a recommended way to implement workflow based web services? I want my view layer to communicate with the business layer using web services and was wondering what the best way to approach this is. I can't use a standard MVC framework like struts since the request is sent to AxisSer

Axis 1.2 generating WSDL with same attribute name when having multiple arrays

2005-02-09 Thread Praveen Peddi
I have a service that references 2 bean arrays. One is Object[] and another is String[]. Looks like WSDL generated by Axis is slightly incorrect. Well .NET complains about it.   Here is the snippet of WSDL:     <complexType name="ArrayOf_xsd_string">     <sequence>

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Toshiyuki Kimura
$BF#ED$5$s!"(B (B $B!!$3$s$P$s$O!#LZB<$G$9!#(B (B $B!!0J2<$G5s$2$i$l$F$$$kG'<1<+BN$K$O!"Bg$-$J4V0c$$$O$J$$$H(B $B;W$$$^$9$,!"(B.NET$B$H(BJava(Axis)$B$NO"7H$O$=$lDx%7%s%W%k$G4JC1(B (B[EMAIL PROTECTED]($J$$!"$H$$$&B&LL$bH]Dj$G$-$J$$

beanMapping tag in wsdd with Axis 1.2

2005-02-09 Thread Praveen Peddi
This is a re-send with simplified explaination. Just want to try my luck again.   While I am in the process of migrating from Axis1.1 to 1.2, I have noticed something wierd in WSDL generation.   I have a method: public Object[] method1() {     ComplexType1 type1 = new ComplexType1();     Com

[News] ANNOUNCEMENT : Axis C++ 1.5 alpha final Released

2005-02-09 Thread Toshiyuki Kimura
To: $B3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!(BAxis C++$Bhttp://ws.apache.org/axis/cpp/index.html> (B (B[EMAIL PROTECTED]"1Q8l%5%$%H$K$7$+>pJs$,$"$j$^$;$s$N$G!"[EMAIL PROTECTED]|$K(B $B$G$bF|K\8l%5%$%H$N>pJs$r%"%C%W%G!<%H$7$?$$!"$H9M$($F(B

Possible? Axis Client to "Pass On" Soap Request

2005-02-09 Thread Ry.
Hi, I want to pass a fully formed SOAP message over a wireless network to a Web service client, and get the client to invoke the web service with it. I have seen examples of Axis taking parameters and using them to create the call the web service, however can anyone explain how to use Axis to

Re: tcpmon and soap monitor using with non axis clients

2005-02-09 Thread Sunil Kothari
Hi Eugene, We have used both TCPMon and SOAPMonitor with non-Axis clients and has worked. SOAPMonitor sometimes behave weird so we use TCPMon mostly. I think TCPMon is disconnected from your server and SOAPMonitor is integrated with the server. For SOAPMonitor to work properly ensure that you

tcpmon and soap monitor using with non axis clients

2005-02-09 Thread Eugene Prokopiev
Hi, I need to debug soap messages with tcpmon and soap monitor. For example, I run tcpmon in such way: My soap calls from Mozilla works (them not works without tcpmon because soap client connect to port 8079), but tcpmon not show them. Tcpmon show only axis client calls. Soap

Axis with WindowsForms (document/literal)

2005-02-09 Thread Shu Fujita
$B$3$s$K$A$O!"F#ED$H?=$7$^$9!#(B (B $B8=:_!"(BAxis$B$G:[EMAIL (BPROTECTED](BWeb$B%5!<%S%9$KBP$7$F(B.NET$B%/%i%$%"%s%H(B(WindowsForms)$B$G(B $B%"%/%;%9$9$k$H$$$&J}K!$r8!>Z$7$F$$$k$N$G$9$,!"$I$&$b$&$^$/$$$-$^$;$s!#(B (B $B;d$O0J2<$N$h$&$JG'<1$r;}$C$F$$$k$N$G$9$,!"8m$C$F$$$k$G$7$g$&

Re: Using Axis in own web application

2005-02-08 Thread Eugene Prokopiev
What's wrong? minimal wsdd file must looks like: http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

Re: Axis problem

2005-02-08 Thread Sunil Kothari
Hi Carlos, We also faced similar problems. I think problem is with the Tomcat. It is not a good HTTP server. Our configuration was Axis 1.1 running under Tomcat 5.0.27. Stopping and starting Tomcat again will get you over this problem. I hope that helps. Sunil Kothari DISCLAIMER: Any

Re: "JRE 1.5 "enum" is a Reserved Word" Does Axis Comply withthis rule?

2005-02-08 Thread Davanum Srinivas
pick up the code from CVS or take the nightly build -- dims On Tue, 8 Feb 2005 20:06:58 -0800, Jayaraman, Venkatesh <[EMAIL PROTECTED]> wrote: > Dims > > Any idea where/how we can get these changes related to JRE/J2sdk1.5 > I am using axis 1.1 jar file. > > All code

RE: "JRE 1.5 "enum" is a Reserved Word" Does Axis Comply withthis rule?

2005-02-08 Thread Jayaraman, Venkatesh
Dims Any idea where/how we can get these changes related to JRE/J2sdk1.5 I am using axis 1.1 jar file. All code that was generated using wsdl2java, I modified all occurrence "eum" with "enums". Does that help? -Venky -Original Message- From: Davanum Sri

adding complex type to the wsdd file not working with axis 1.2

2005-02-08 Thread Praveen Peddi
tag for both complex type beans in the soap service. I generate WSDL and I don't see the bean definition in the WSDL. It used work fine in Axis 1.1. Should I change anything in order for the WSDL to define the complextype. Even though method signature doesn't have complex type

Axis problem

2005-02-08 Thread Carlos Hurtado Ramírez
Hi, i\'m having a problem with the Axis engine, i have developed a web service class that works fine, the first 6 or 7 time is invoked for a consumer, in the next invocation i\'m having a java.net.ConnectException: Connection timed out. What\'s wrong, do i need to configure a p

Can Axis Parse Non-SOAP requests?

2005-02-08 Thread Sharam Fouladgar-Mercer
Does anyone know if Axis can process requests that are not wrapped in SOAP?   -Sharam

working of apache axis web sesrvice

2005-02-08 Thread Pavan Kumar Choukhada
hi please any body can send me a link or detail about whole working of apache axis web service well i have created some web services and deployed it successfully. and i am able to invoke and get result back. but i want to know the working behind it. how stub works here. how invocation happen. the

MINOR CODE PROBLEM WITH AXIS,EJB,WSAD,WEBSPHERE - Please suggest ...

2005-02-08 Thread babloosony
Hi All, I am using below environment client side ANT + Sun 1.4.2 JRE JIBX (DE)SERIALIZERS, JIBX BINDING AXIS 1.2 RC2 STUBS server side --- JIBX (DE)SERIALIZERS, JIBX BINDING AXIS 1.2 RC2 JIBX BETA 3D WSAD 5.1.2 WEBSPHERE 5.0 Test Environment Basically I used WSAD 5.1.2

Axis and xsd validation

2005-02-07 Thread Bharadwaj, Jyotsna
Title: Axis and xsd validation Any idea if xerces Validates "NILLABLE".I have observed that it does not .   -Original Message-From: Bill Keese [mailto:[EMAIL PROTECTED]Sent: Friday, February 04, 2005 5:35 AMTo: Bharadwaj, JyotsnaSubject: Re: Axis and xsd valida

Re: "JRE 1.5 "enum" is a Reserved Word" Does Axis Comply withthis rule?

2005-02-07 Thread Davanum Srinivas
completely agree, that's why i forwarded the email to axis-dev@ http://marc.theaimsgroup.com/?l=axis-dev&m=110754113124229&w=2 -- dims On Mon, 7 Feb 2005 15:42:57 -0800, Simon Fell <[EMAIL PROTECTED]> wrote: > The main thrust of my comment is that backward compat is

RE: "JRE 1.5 "enum" is a Reserved Word" Does Axis Comply withthis rule?

2005-02-07 Thread Simon Fell
D] > Subject: Re: "JRE 1.5 "enum" is a Reserved Word" Does Axis > Comply withthis rule? > > If you want a switch for the old behavior of classes, please help... > > thanks, > dims > > > On Mon, 7 Feb 2005 18:37:48 -0500, Davanum Srinivas >

Re: "JRE 1.5 "enum" is a Reserved Word" Does Axis Comply withthis rule?

2005-02-07 Thread Davanum Srinivas
t; On Mon, 7 Feb 2005 13:11:56 -0800, Simon Fell <[EMAIL PROTECTED]> wrote: > > Did so months ago. > > http://issues.apache.org/jira/browse/AXIS-1454 > > > > > -Original Message- > > > From: Davanum Srinivas [mailto:[EMAIL PROTECTED] > > >

  1   2   3   4   5   6   7   8   9   10   >