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). Systinet is able to

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
Not sure if this fits your requirements, but if you want to use HTTP Basic Authentication **without** having the servlet container manage it for you, try using: org.apache.axis.handlers.http.HttpAuthHandler This class strips out the user name and password from the HTTP Headers and sets the userna

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]
There are couple of approaches you can take, but here's what I would do.    - Implement an Authentication handler and Authorization handler extending BasicHandler    These handlers would directly invoke your authentication/authorization methods and validate credentials.   - Set authenticat

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   

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

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 >

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

RE: Axis & workflow based services

2005-02-11 Thread Brown, Mike
ROTECTED] Sent: Thursday, February 10, 2005 10:13 PM To: [EMAIL PROTECTED] Subject: RE: Axis & workflow based services Thanks Mike, Are there any recommended approaches for this 'delegate' you mention... it seems to be basically a request processor right? I want it to be able to have

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

RE: Axis & workflow based services

2005-02-10 Thread Abdullah Jibaly
s to delegate > who returns to axis who returns to web layer. > > Hope that helps, > > Michael > > -Original Message- > From: Abdullah Jibaly [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 10, 2005 1:49 PM > To: [EMAIL PROTECTED] > Subject: Re:

Re: Axis problem

2005-02-10 Thread Carlos Hurtado Ramírez
hanks. -- Mensaje original --- De : [EMAIL PROTECTED] Para : [EMAIL PROTECTED], [EMAIL PROTECTED] Fecha : Wed, 9 Feb 2005 11:15:00 +0530 Asunto : Re: Axis problem >Hi Carlos, > We also faced similar problems. I think problem is with the Tomcat. It is >not a good HTTP server. Our

RE: Axis & workflow based services

2005-02-10 Thread Brown, Mike
Message- From: Abdullah Jibaly [mailto:[EMAIL PROTECTED] Sent: Thursday, February 10, 2005 1:49 PM To: [EMAIL PROTECTED] Subject: Re: Axis & workflow based services Bill, Thanks for the input. However, my presentation layer is going to be Laszlo, and I want to communicate with the business l

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]> wrote: > Abdullah Jib

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: 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: 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
$BF#ED$5$s!"(B (B $B!!LZB<$G$9!#(B (B (BOn Thu, 10 Feb 2005, Shu Fujita wrote: (B (B> $B?oJ,[EMAIL PROTECTED]:[EMAIL PROTECTED]&$G$9!"$9$_$^$;$s$G$7$?!#(B (B> (B> $B%5%s%W%k(B(Math)$B$KBP$9$k([EMAIL PROTECTED]@.8y$7$F$*$j$^$9!#(B (B $B!!$=$&$G$7$?$+!#$H!"$$$&;v$OF#ED$5$s$N%5%s%W

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$

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Toshiyuki Kimura
$BF#ED$5$s!"(B (B $B!!LZB<$G$9!#(B (B (BOn Thu, 10 Feb 2005, Shu Fujita wrote: (B (B> $BCQ$:$+$7$J$,$i!"(BWrapped$B$H$$$&%9%?%$%k$,$"$k$3$H$rCN$j$^$;$s$G$7$?!#(B (B> .NET$B$G$O!"$3$NJ}<0$G(BSOAP$B%a%C%;!<%8$,Aw $B$H$$$&$3$H$G$7$g$&$+!)(B (B $B!!(B"Wrapped"$B$O!"$"$/$^$G(BAx

Re: Axis with WindowsForms (document/literal)

2005-02-09 Thread Shu Fujita
27; $B$r(B $B%$%s%]!<%H$G$-$^$;$s!#(B targetNamespace='http://service.test.ws' $B$r;}$D(B $B%9%-!<%^$N9=J8$,L58z$G$9!#(B 'name' [EMAIL PROTECTED],L58z$G$9(B : ':' $BJ8;z!"(B16 $B?J?tCM(B (B0x3A $B$r(B $BL>A0$K4^$`$3$H$O$G$-$^$;$s!#!#(B (B@@@

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 issue is listed in:   http://

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

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$$$H;W$$$^$9!#(B (B $B!!D:BW$7$?>[EMAIL PROTECTED]"$A

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 Informa

Re: Axis exception while deploying a WAR

2005-02-07 Thread Davanum Srinivas
please try latest CVS/Nightly. -- dims On Mon, 7 Feb 2005 09:55:58 -, Arijit Mukherjee <[EMAIL PROTECTED]> wrote: > Hi All > > I have a doc style WS, with some custom types, which I deploy as a WAR > file. If I turn on the DEBUG option for Axis in the log4j.properties, I > can see the follo

Re: Axis Application scope and MBean

2005-02-03 Thread tom chen
I have problem with scope and object state. It seems to me that the object never keep its state. why? please let me know if you get answer.   Thank you.A Szena <[EMAIL PROTECTED]> wrote: Hi All,I am creating a web service from an existing MBean that I run underJBoss 4.0. When JBoss starts up, it in

RE: Axis and xsd validation

2005-02-03 Thread Bharadwaj, Jyotsna
[mailto:[EMAIL PROTECTED]Sent: Thursday, February 03, 2005 1:51 PMTo: [EMAIL PROTECTED]Subject: Re: Axis and xsd validation Hi I am using axis-1_2RC2 .I want to validate my webservice against the xsd in the wsdl.But axis does not seem to support that . Is that true?I think

RE: Axis and xsd validation

2005-02-03 Thread Tysnes Are Thobias
Title: Message Hello   Castor is not supporting nillable as far as I know (In original post he wanted to validate nillable)   Cheers, Are T. Tysnes -Original Message-From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: 3. februar 2005 09:21To: [EMAIL PROTECTED]Subject: Re

Re: Axis and xsd validation

2005-02-03 Thread Bill Keese
Title: Axis and xsd validation Hi I am using axis-1_2RC2 .I want to validate my webservice against the xsd in the wsdl.But axis does not seem to support that . Is that true? I think so.  I have the same wish.  I am going to try using Castor.  This article is pretty convin

Re: AXIS Stubs Problem and unable to consume EJB web service

2005-02-02 Thread babloosony
Hi Tom and Jeff, Thank you for your prompt response and making me realize my mistake. It is a problem with the jndi lookup conf. in wsdd file. However I am struck now with new error. Can you please suggest Is the error screaming about a problem in my wsdl file ? Connecting to service at http

Re: AXIS Stubs Problem and unable to consume EJB web service

2005-02-02 Thread Jeff Greif
Apparently, whatever web service was invoked has returned an unexpected type or there is an incorrect type mapping in the client deployment descriptor. Possibly the wrong web service was invoked, or there is some problem on the server side.The client is expecting to end up with a DCPlanListWSH

RE: AXIS Stubs Problem and unable to consume EJB web service

2005-02-02 Thread Tom Jordahl
Does the class com.ram.engine.ejb._DCSummaryWSHome_Stub Implement the interface com.ram.engine.ejb.DCPlanListWSHome That is all the EJBProvider is trying to do. If not, then your configuration isn't specifying the right class. Disclaimer: I don't know much about EJBs. I do think I am the o

RE: Axis Gurus - Please help .. Urgent .... Issue with Document c lass ???

2005-02-01 Thread Brown, Mike
] Sent: Tuesday, February 01, 2005 3:47 AM To: Brown, Mike Cc: [EMAIL PROTECTED] Subject: Re: Axis Gurus - Please help .. Urgent Issue with Document c lass ??? Mike- I tried your appraoch in my WSAD but it does not work. Only combination that successfully run AXIS WEB MODULE is EAR CLASSLOADER

Re: Axis Gurus - Please help .. Urgent .... Issue with Document c lass ???

2005-02-01 Thread babloosony
Mike- I tried your appraoch in my WSAD but it does not work. Only combination that successfully run AXIS WEB MODULE is EAR CLASSLOADER MODE: PARENT_FIRST EAR WAR CLASSLOADER POLICY: APPLICATION WAR CLASSLOADER MODE: MODULE Please suggest

RE: Axis Gurus - Please help .. Urgent .... Issue with Document c lass ???

2005-01-31 Thread Brown, Mike
Okay, I've been here several times before. Essentially Websphere Server provides its own SOAP implementation based on SAAJ 1.1 Axis 1.2RC2 uses SAAJ 1.2. One of the jars that the Websphere container loads is SAAJ1.1.jar When your axis.war gets loaded by default SAAJ1.1.jar is the first place WS l

Re: [axis-user-ja digest] started on axis-user (in English)

2005-01-22 Thread Toshiyuki Kimura
$B!!LZB<$G$9!#(B (B $B!!$=$N8e$N>p67$K$D$$$F$4Js9p$5$;$FD:$-$^$9!#(B (B $B!!$"$l$+$i!";d$N$[$&$G%P%04IM}%7%9%F%`$KEPO?$7!"860x(B (B[EMAIL PROTECTED]<[EMAIL PROTECTED] $B%U%i%s%98lBP1~$G$N%Q%C%AE,MQ$N7k2L!":G?7%S%k%I$G$O!"(B $BIT6q9g$,2r>C$7$F$$$k$3$H$,[EMAIL PROTECTED](B (B $B!!(B'se

Re: [axis-user-ja digest] started on axis-user (in English)

2005-01-19 Thread Toshiyuki Kimura
To: $BF|K\8l(BAxis$B%3%_%e%K%F%#$N3'$5$s!"(B (B $B!!LZB<$G$9!#(B (B $B!!:rF|$4Js9p$7$?I=5-%l%]!<%H$K4X$9$kB3Js$G$9!#(B (B $B!!>/$7$OM=A[$7$F$$$?$N$G$9$,!"(Bdims$B;a$+$i!X(BAxis$B$N%P%0$J$N$G$O!)!Y(B $B$H$$$&;XE&$,$"$j$^$7$?!#(B (B $B!!$=$l$KBP$7$F!"2<5-$NMM$K2sEz$7$^$7$?!#(B 

Re: [axis-user-ja digest] xml error when boot up Tomcat

2005-01-19 Thread Toshiyuki Kimura
dims, (B (B True, the primary cause of the exception is a potential bug of Axis (Bbut it's too hard to find out an ultimate solution for non-ASCII env. (BBecause, it's not an issue only for Axis. I mean we have to dive into (Ba number of application server configurations also. (B (B This t

Re: [axis-user-ja digest] xml error when boot up Tomcat

2005-01-19 Thread Davanum Srinivas
Toshi, You need to figure this one out :) or ask ias/jongjin for help :) :) As always, start with a JIRA bug report. -- dims PS: i have no idea how to start fixing this one. On Tue, 18 Jan 2005 21:36:27 -0800 (PST), Toshiyuki Kimura <[EMAIL PROTECTED]> wrote: > Hi folks, > > This is a diges

Re: AXIS and JAXB

2005-01-17 Thread Paul Callahan
i would encourage you to take a look at the following article for a comparison involving Castor and JAXB. It does end up looking like an ad for Jibx, however... http://www-106.ibm.com/developerworks/xml/library/x-databdopt2/ XMLBeans and XStream are a couple of other possibilities you might want

Re: AXIS and JAXB

2005-01-16 Thread Senaka Suriyaarachchi
Hi Paul, Can you give us some idea about the performance. Comparing Castor and JAXB approaches. We decided to go with JAXB because if some familiarities with us but we don't know about the performance comparing Castor. BR Senaka --- Paul Callahan <[EMAIL PROTECTED]> wrote: > Hi Roger, > >

Re: Axis memory leak

2005-01-15 Thread Davanum Srinivas
Great job guys -- dims On Fri, 14 Jan 2005 17:01:25 -0800, Lyndon Tiu <[EMAIL PROTECTED]> wrote: > V D wrote: > > > > > I reported it at: > > > > http://issues.apache.org/jira/browse/AXIS-1765 > > > Please give credit where credit is due. > > I found this issue but it was my colleagu

Re: Axis memory leak

2005-01-14 Thread Lyndon Tiu
V D wrote: I reported it at: http://issues.apache.org/jira/browse/AXIS-1765 Please give credit where credit is due. I found this issue but it was my colleague Malcolm Walker of Latitude Geographics Group Ltd. who found the fix. If there is anywhere in the bug report to put this, please do so. He

Re: Axis memory leak

2005-01-14 Thread V D
I reported it at: http://issues.apache.org/jira/browse/AXIS-1765 Tim K. (Gmane) wrote: Can you please file a bug for this at:

Re: Axis memory leak

2005-01-14 Thread Tim K. (Gmane)
Can you please file a bug for this at: http://issues.apache.org/jira/ for project Axis Thanks. Tim Vy Ho wrote: That does it. The memory no longer go up. The way I do it is inside the generated stub, I wrap the call with a try/catch/finally, and in that, I put your code below. I am not sure if

Re: Axis memory leak

2005-01-14 Thread Vy Ho
That does it. The memory no longer go up. The way I do it is inside the generated stub, I wrap the call with a try/catch/finally, and in that, I put your code below. I am not sure if this is the best way of doing it. However, I am just testing. I won't use this code though. In client-side s

Re: Axis memory leak

2005-01-14 Thread Vy Ho
WAJSBERG Julien RD-BIZZ wrote: Vy Ho a écrit : In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very seri

Re: Axis memory leak

2005-01-14 Thread WAJSBERG Julien RD-BIZZ
Vy Ho a écrit : In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very serious problem with the generated

Re: Axis memory leak

2005-01-14 Thread Vy Ho
In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very serious problem with the generated stub I believe.

Re: AXIS and JAXB

2005-01-14 Thread Paul Callahan
Hi Roger, There are a couple of ways that you can integrate the two (or Axis and any XML serializing mechanism for that matter). One way is discussed in this article by IBM... They are using Castor, but the underlying theme is the same. http://www-106.ibm.com/developerworks/webservices/library/

Re: axis 1.1 and call.setTimeout not having desired effect

2005-01-14 Thread Stuart Barlow
I have discovered the issue. Because the WSDL2Java tools do not work with the DataHandler class I had to write some custom client code to make the calls. So this code was getting bypassed completely. Stuart Barlow wrote: I am using AXIS 1.1 and the WSDL2Java to generate the client bindings. Upon ge

Re: Axis or SOAP...

2005-01-13 Thread Bill Keese
Axis supercedes the soap project, as written on both the Axis home page and the SOAP home page. (Actually, it says that Axis is the "follow-on" project to SOAP) Jim wrote: I was interested in evaluating for use Apache Java class libraries for SOAP/WSDL. My questions are the following: o Sho

Re: Axis memory leak

2005-01-13 Thread Lyndon Tiu
Vy Ho wrote: When setting the scope of my service to application, the client side will run out of memory after 5-10 thousand hits. The service object on the server side is thread safe and works with both application and request scope. The server does not have any leak. The reason I change it t

RE: Axis running out of Memory?

2005-01-12 Thread Suzy Fynes
PROTECTED] Subject: Re: Axis running out of Memory? I'm sure there is probably better doco somewhere on this, but I generally experience this from redeploying a resource in Tomcat several times (thru the manager) without restarting. I believe that when you undeploy, the memory is not dealloc'd

Re: Axis running out of Memory?

2005-01-12 Thread Paul Callahan
I'm sure there is probably better doco somewhere on this, but I generally experience this from redeploying a resource in Tomcat several times (thru the manager) without restarting. I believe that when you undeploy, the memory is not dealloc'd--so hence the memory leak. Day to day, I redeploy unti

Re: Axis and .Net client

2005-01-11 Thread Bill Keese
ed that to “Wrapped”. I see that it lets empty method names only in “document” style encoding.   Thanks, Vishu   From: Bill Keese [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 11, 2005 10:31 PM To: [EMAIL PROTECTED] Subject: Re: Axis and .Net client   It depends wh

RE: Axis and .Net client

2005-01-11 Thread Vishu
: Re: Axis and .Net client   It depends what binding style and encoding your AXIS server is running with.  If it's in rpc/encoded or wrapped/literal it's expecting at least the method name inside the soap body.    The default for AXIS is RPC/Encoded. http://www-128.ibm.com/deve

Re: Axis and .Net client

2005-01-11 Thread Bill Keese
It depends what binding style and encoding your AXIS server is running with.  If it's in rpc/encoded or wrapped/literal it's expecting at least the method name inside the soap body.    The default for AXIS is RPC/Encoded. http://www-128.ibm.com/developerworks/webservices/library/ws-whichw

Re: Axis Wiki ?? Where did it go??

2005-01-11 Thread Toshiyuki Kimura
Kimura" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, January 06, 2005 7:32 PM Subject: Re: Axis Wiki ?? Where did it go?? ... So, we've just changed the Wiki site to the new one. "http://wiki.apache.org/ws/FrontPage/Axis";. Note

RE: AXIS for Tandem OSS

2005-01-11 Thread Ayers, Sam
Title: AXIS for Tandem OSS Claude, I've implemented Axis on HP NonStop (Tandem).  There is a presentation posted on the ITUG Java SIG home page (see link below)     http://www.itug.org/sigs/java.cfm   Scroll down to the "Document downloads" section.  The presentation is entitled "Practical

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Ooops, Thank you, Sorry about this everyone Marika -Original Message- From: Papadakis, Elliot [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 16:06 To: '[EMAIL PROTECTED]' Subject: RE: Axis installation - WSDL2Java It looks like the path to commons-discovery.jar is wron

RE: Axis installation - WSDL2Java

2005-01-11 Thread Papadakis, Elliot
rom: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 15:30 To: [EMAIL PROTECTED] Subject: RE: Axis installation - WSDL2Java Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
PROTECTED] Sent: 11 January 2005 15:30 To: [EMAIL PROTECTED] Subject: RE: Axis installation - WSDL2Java Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:45 AM >>> Thank you all, I am

Re: AXIS for Tandem OSS

2005-01-11 Thread Thomas B Winans
Out of curiosity, have you considered connecting with HP/Compaq? Not sure who, but Compaq folks should be accessible to you if your company has a Tandem. Second thought: is it possible for you to get the source distribution of Axis and build it on Tandem? Does Tandem support the Java jdk that is

RE: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:45 AM >>> Thank you all, I am using JBOSS and I do have all of the jars in the class path Exception in thread "main" java.lang.NoClassDefFoundErro

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Thank you all, I am using JBOSS and I do have all of the jars in the class path   Marika   From: sunil [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 11:39 To: [EMAIL PROTECTED] Subject: Re: Axis installation - WSDL2Java   Hi,  You need to include the following

Re: Axis installation - WSDL2Java

2005-01-11 Thread sunil
Hi,  You need to include the following .jar files in your classpath. I am using Axis 1.1. running under Tomcat 5.0.27.    think you should download tomcat 5.0.x and use the jars provided by tomcat in the  bin directory.   My classpath has the following jar files. C:\axis\axis-1_1\lib\axis.ja

RE: Axis - .Net Interop Problems

2005-01-11 Thread John Deviney
Thanks Brian. Looking through your wsdl and comparing it to mine put me in the right direction. I put together a smaller prototype where business object getters/setters return only typed arrays for 1 - m relationships. .Net wsdl.exe had no problems with the Axis generated wsdl. .Net did not lik

Re: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Better yet- look at the WSDL2Java batch file, it has all the dependencies in it. >>> [EMAIL PROTECTED] 01/11/05 6:05 AM >>> Marika Ludmann wrote: > *I am new to Axis and Web services development. I have however done > web development (JSP, Servlets). I also done some web service > development i

Re: Axis installation - WSDL2Java

2005-01-11 Thread karim
Marika Ludmann wrote: *I am new to Axis and Web services development. I have however done web development (JSP, Servlets). I also done some web service development in .NET.* * * * * *I need to create a web service and client and service using Java and I am trying to (need to) use Axis.* *I am

RE: axis performance in multithreading env

2005-01-11 Thread Patrick Martin
Just some thoughts, Patrick -Original Message- From: Vy Ho [mailto:[EMAIL PROTECTED] Sent: 10 January 2005 21:55 To: [EMAIL PROTECTED] Subject: Re: axis performance in multithreading env This is a problem for me. I use Netbeans and the JFluid supports 1.4, not Jdk1.5. My apps run under 1.5.

Re: axis performance in multithreading env

2005-01-10 Thread Vy Ho
This is a problem for me. I use Netbeans and the JFluid supports 1.4, not Jdk1.5. My apps run under 1.5. It would take some effort on my part to make these apps run elsewhere. I am currently tied up at a moment, so I have to put this off for now. I am sorry about this. If time permit, I'

RE: axis performance in multithreading env

2005-01-10 Thread Patrick Martin
Vy Ho [mailto:[EMAIL PROTECTED] Sent: 10 January 2005 17:39 To: [EMAIL PROTECTED] Subject: Re: axis performance in multithreading env Using the latest source code (ant build from today's source download) (will be called "New code") and the Axis 1.2 RC2 (will be called "Old co

Re: axis performance in multithreading env

2005-01-10 Thread Vy Ho
Using the latest source code (ant build from today's source download) (will be called "New code") and the Axis 1.2 RC2 (will be called "Old code"), I run the test with different parameters. The client side is 1 application with 1 or more threads. Each thread makes a number of requests to the

Re: axis performance in multithreading env

2005-01-10 Thread Sebastien . Bocq
The benchmark I ran does not require any client or server, and focuses purely on serialization and deserialization without unnecessary overhead (network, server, ...). What I used extensively are the DeserializationContext and SerializationContext classes and applied respectively their parse()

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
ne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 5:36 PM To: [EMAIL PROTECTED] Subject: Re: Axis - .Net Interop Problems Brian, In XML Schema, in order to reference an element or type from another schema, you must first import the namespace into the schema. You need to add the f

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
ne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 5:36 PM To: [EMAIL PROTECTED] Subject: Re: Axis - .Net Interop Problems Brian, In XML Schema, in order to reference an element or type from another schema, you must first import the namespace into the schema. You need to add the f

Re: Axis - .Net Interop Problems

2005-01-07 Thread Anne Thomas Manes
Brian, In XML Schema, in order to reference an element or type from another schema, you must first import the namespace into the schema. You need to add the following import statement to the second schema: http://valueobject.util.app.willyloman.com"/> And this import statement to the third sche

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
ervices"/> http://schemas.xmlsoap.org/soap/encoding/"; namespace="http://www.willyloman.com/webservices"/> http://localhost:8080/wl/services/ContactExchange"/> Brian Davis Software Developer JMM

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
ervices"/> http://schemas.xmlsoap.org/soap/encoding/"; namespace="http://www.willyloman.com/webservices"/> http://localhost:8080/wl/services/ContactExchange"/> Brian Davis Software Developer JMM

RE: Axis - .Net Interop Problems

2005-01-07 Thread John Deviney
I am using the same tool, wsdl.exe, from .Net 1.1. Do you have complex array types and are you using soap rpc encoding with Axis 1.1? --- Brian Davis <[EMAIL PROTECTED]> wrote: > What tool are you using in .Net? I use the command > line tool wsdl.exe and it > seems to work flawlessly with WSDL

Re: axis performance in multithreading env

2005-01-07 Thread Vy Ho
I tried the nightly build, but I didn't notice any difference. When you said multi-thread, what did you mean by that? Do you have multiple threads workin on the clients using a same Call object? Do you mean multi-thread on the server? I have an Axis client with mutliple threads. Each thread

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
What tool are you using in .Net? I use the command line tool wsdl.exe and it seems to work flawlessly with WSDL generated by Axis. Brian Davis Software Developer JMM Ventures -Original Message- From: John Deviney [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 6:35 PM To: [EMA

RE: Axis - .Net Interop Problems

2005-01-07 Thread Brian Davis
What tool are you using in .Net? I use the command line tool wsdl.exe and it seems to work flawlessly with WSDL generated by Axis. Brian Davis Software Developer JMM Ventures -Original Message- From: John Deviney [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 6:35 PM To: [EMA

RE: Axis - .Net Interop Problems

2005-01-07 Thread John Deviney
Thanks for the reply. What version Axis are your working with? I understand doc literal is the way to go but I was also under the impression that some people had this working with soap rpc encoding. My goal is to get this working with as little effort as possible. That's why I started with soap

RE: Axis - .Net Interop Problems

2005-01-07 Thread James Richardson
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 06 January 2005 23:35 > To: [EMAIL PROTECTED] > Subject: Axis - .Net Interop Problems > > Problem: > > The .Net 1.1 wsdl tool does not like the wsdl > generated by Axis 1.1. The datatype 'Array' is

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Toshiyuki Kimura
Jeff, Note that most (but not all) of the links on this page are broken. Yes, thanks. Need to take of it. -- Toshi <[EMAIL PROTECTED]>

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Jeff Greif
- Original Message - From: "Toshiyuki Kimura" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, January 06, 2005 7:32 PM Subject: Re: Axis Wiki ?? Where did it go?? ... > So, we've just changed the Wiki site to the n

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Toshiyuki Kimura
Peter and Bill, Additional information... The old Wiki was hosted in a server - 'nagoya.apache.org'. But, a new Wiki server 'wiki.apache.org' took over from the old server more recently. The 'http://wiki.apache.org/old/AxisProjectPages' was the temporal site in the transition. 'Kellogg, Richard'

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Davanum Srinivas
Yep that's the one...Rick created it from the old one :) -- dims On Fri, 07 Jan 2005 11:28:01 +0900, Bill Keese <[EMAIL PROTECTED]> wrote: > Huh? I thought the wiki was http://wiki.apache.org/ws/FrontPage/Axis ? > What's the deal? > > > Davanum Srinivas wrote: > it's not clean yet. but

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Bill Keese
Huh?  I thought the wiki was http://wiki.apache.org/ws/FrontPage/Axis  ?  What's the deal? Davanum Srinivas wrote: it's not clean yet. but the contents are there - http://wiki.apache.org/old/AxisProjectPages On Thu, 23 Dec 2004 12:30:20 +1100, Peter Smith <[EMAIL PROTECTED]> wrote:

Re: Axis with HTTPS : What do I have to make ?

2005-01-06 Thread Lyndon Tiu
Petese Fabienne (CSE) wrote: Hello, I want to install a WebService on a HTTPS Server. I don't want client authentification. I just want to use the SSL encryption. What do I have to make ? Need I special .jars ? Thanks 1) On client-side java code, add to the beginning (modify the paths a

Re: Axis with HTTPS : What do I have to make ?

2005-01-06 Thread Alex Karshakevich
No changes are needed, just configure your server for https, how to do that depends on your server. On the client just change the url from http:// to https:// and that should be it. Petese Fabienne (CSE) wrote: I want to install a WebService on a HTTPS Server. I don't want client authentific

Re: axis performance in multithreading env

2005-01-06 Thread Vy Ho
Thanks. I can't wait to get my hand on this. Well, I'll get the nightly build and try it out.

  1   2   3   4   5   6   7   8   9   10   >