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
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 some sort of state, such as whether the user is logged in for example. Thanks, Abdullah --- "Brown, Mike" <[EMAIL PROTECTED]> wrot

Re: Can't invoke method with multiple arguments

2005-02-10 Thread Anne Thomas Manes
Here's a reprise of a previous posting I made about WSDD styles: One thing that causes a lot of confusion for Axis users is the overloaded use of the term "style". This term refers to both the message encoding style and the programming style. It's important to distinguish these terms. You specify

RE: Can't invoke method with multiple arguments

2005-02-10 Thread Ioan Berbece
This is an excerpt from WS-I Basic Profile clarifying the issue: "For document-literal bindings, the Profile requires that at most one part, abstractly defined with the element attribute, be serialized into the soap:Body element." But the SOAP specification allows for multiple children under the "

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/servlet/Axis

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? Thanks. --

Re: Can't invoke method with multiple arguments

2005-02-10 Thread Linus Kamb
I confess to being perpetually befuddled by the seeming inconsistencies between axis wsdd "style" terminology versus web-service / SOAP "style". So how does the below requirement fit with the axis "Message style" service (which I thought of as some sort of "pure" doc/lit) which allows the

Re: calling MessageService sample with .NET client

2005-02-10 Thread Anne Thomas Manes
For easiest interoperability with .NET, I suggest you use the "wrapped" style. .NET does allow you to send raw XML, but to do so you have to use a low-level API. In other words, you can't invoke the service using a WebReference. To do that you should use "wrapped" style. -Anne On Thu, 10 Feb 20

RE: Can't invoke method with multiple arguments

2005-02-10 Thread David Werner
Ah, ok! It works indeed with the wrapped style. Thanks, Dave > -Original Message- > From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 10, 2005 9:36 PM > To: [EMAIL PROTECTED] > Subject: Re: Can't invoke method with multiple arguments > > > This is not a bug -- t

Re: Can't invoke method with multiple arguments

2005-02-10 Thread Anne Thomas Manes
This is not a bug -- this is a requirement of SOAP. The child element of the SOAP body indicates to the SOAP processor how to handle the request. This child element must provide a unique signature so that the SOAP processor can figure it out. The SOAP specification doesn't specify how to process mo

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

2005-02-10 Thread Toshiyuki Kimura
To: $B3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!0JA0!"[EMAIL PROTECTED]:$$$F$$$?!VK]Lu$7$J$$(Bkey$B0lMw!W$H(B $B!VL$;HMQ(Bkey$B0lMw!W$r:o=|$7$?%j%=!<%9%U%!%$%k$r%3%_%C%H$7$^$7$?!#(B (B (Bhttp://www.home.isp.ne.jp/~s-kodama/ite-way/index.php?Apache%20Axis-Ja (B $BK\F|$NM $B!!$3$l$r $B$H;

RE: Axis & workflow based services

2005-02-10 Thread Brown, Mike
Abdullah, What precisely is your business layer? You have a few options...One you can use a delegate between your impl class and the business layer that knows how to access the business layer and make the appropriate calls. Two, you can have the impl access the business layer directly (I prefer

How to set path for native code libraries?

2005-02-10 Thread Dave Hoffer
I have an Axis web service that makes JNI calls to native methods. I get an UnsatisfiedLinkError because my native code is not found in java.library.path. How do I set this? My native code exists in Axis's lib folder. -dh

Handlers in Axis

2005-02-10 Thread Robert Gombotz
Hi!     For my application I need to include custom header elements my SOAP messages. It has proven very simple to include a custom header element into the SOAP request on the client side. my problem now is to "read" that element on the server side, and include it unchanged into the SOAP res

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: [Announce] Internationalization progress of Axis (fwd)

2005-02-10 Thread Toshiyuki Kimura
To: [EMAIL PROTECTED]"3'$5$s!"(B (B $B!!LZB<$G$9!#(B (B (BOn Mon, 7 Feb 2005, Toshiyuki Kimura wrote: (B (B>> $B!!([EMAIL PROTECTED]<0HG$N%j%j!<%9;[EMAIL PROTECTED],4V$K9g$($P$h$$$G$9$M!#(B (B> (B> $B!!;d$+$i6aF|Cf$KOCBj$r=P$7$?$$$H9M$($F$$$^$9!#(B (B> (B> $B!!$"$H!">/$7N.$l$,[EM

Re: calling MessageService sample with .NET client

2005-02-10 Thread Praveen Peddi
I just deployed the sample MessageService that came with Axis and tried to access it from .NET client. My service name is GoogleAccessConnector. But for now I only have the method that was provided by message sample of Axis. Here is the WSDL anyway. It is generated by Axis. I am new Message sty

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.tempuri.org/pricesEnv.xsd"/> A

RE: Available Web Servies not generated correctly

2005-02-10 Thread Dave Hoffer
James, My wsdd file is formatted to deploy all public methods, like this: I did try changing this to specify all three methods, but that didn't help. Now, I am assuming that AdminClient looks for my *.class files in the classes folder. After I update the java code this is where I put them. T

Re: calling MessageService sample with .NET client

2005-02-10 Thread Paul Callahan
Praveen, This really depends on how you have structured your wsdl for the service. If you are using message style services, then in most cases, you are providing your own XML Schema to define the types that are passed via the method you expose as a "message-based" service. Whether you use JAXB,

RE: Returning arrays to .Net (again)

2005-02-10 Thread Jandhyala, Ajay
  Where can I find more information on the fixes made by Eric ?   Thanks, Ajay. -Original Message-From: Praveen Peddi [mailto:[EMAIL PROTECTED]Sent: Thursday, February 10, 2005 11:37 AMTo: [EMAIL PROTECTED]Subject: Re: Returning arrays to .Net (again) If Eric's patch fixe

Re: Returning arrays to .Net (again)

2005-02-10 Thread Praveen Peddi
If Eric's patch fixes so many array related issues, why can't this be rolled into CVS? I am sure there must be some reason why it was not done till now but looks like this is an important patch to support array of custom beans support.   Praveen - Original Message - From: Bil

Re: Available Web Servies not generated correctly

2005-02-10 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dave Hoffer wrote: | Using Tomcat 4.1.31 | | Using Axis I deployed a java web service with 2 public methods. I used | the AdminClient to deploy, this worked well, I was able to see the wsdl | of the 2 methods. I then undeployed the web service, again

Available Web Servies not generated correctly

2005-02-10 Thread Dave Hoffer
Using Tomcat 4.1.31 Using Axis I deployed a java web service with 2 public methods. I used the AdminClient to deploy, this worked well, I was able to see the wsdl of the 2 methods. I then undeployed the web service, again this worked well as the web service was removed. I then add another publi

calling MessageService sample with .NET client

2005-02-10 Thread Praveen Peddi
I have looked at the MessageService sample (both server and the client). It passes Element[] as the argument and also returns the same. This is fine for java based clients. But if I want to invoke it using non java clients like .NET, how does it work? Are Axis's "message-style" services inte

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 (B> (B> [EMAIL PROTECTED]"1Q

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

2005-02-10 Thread Toshiyuki Kimura
To: [EMAIL PROTECTED]"3'MM!"(B (B $B!!LZB<$G$9!#(B (B (BOn Wed, 9 Feb 2005, Toshiyuki Kimura wrote: (B (B> $B!!4{$K!"M-;[EMAIL PROTECTED],$46(NOD:$1$k$H$N;v$G$9$N$G!"(B (B> $B$R$H$^$:K\([EMAIL PROTECTED];W$rB>$N3+H/ $B%"%5%$%s>pJs$rEPO?$7$F$*$-$?$$$H;W$$$^$9!#(B (B $B!!;d<+?H$K%"%5

Re: Error "Unable to load schema with target namespace" in XMLSpy.

2005-02-10 Thread Anne Thomas Manes
The WSDL is valid. xmlspy should be able to load an inline-defined namespace. On Mon, 07 Feb 2005 14:53:57 +0100, THIBAULT Joseph <[EMAIL PROTECTED]> wrote: > And this is the generated wsdl : > > > targetNamespace="http://sr.services.accesservicessipsr"; > xmlns:impl="http://sr.services.access

RE: RE : Jar files in EAR root.

2005-02-10 Thread Brown, Mike
Title: Message Jai,     The problem is one that pops up a LOT with Websphere and should find it's way into axis' documentation. Websphere includes a (very outdated in version 4.0) copy of saaj.jar. By default it is this copy that gets loaded by your webapp classloader. There is an option whe

RE: RE : WS Authentication & Authorization

2005-02-10 Thread Brown, Mike
Title: Message Christian,     Because your SOAP requests are coming over HTTP, they support everything that a normal HTTP request supports, including Basic-Auth. You can get to the basic-auth headers through the request (which you can get at using the MessageContext). On the client side, both

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

dynamic invocation and stubs

2005-02-10 Thread Pavan Kumar Choukhada
hi friends when we call a web service via Dynamic Invocation Interface. we don't need stub or any artifacts (generated by WSDL2Java tool). then why do we create subs and service locator etc. files , why do we go via static way and have all these trouble. we just create new service element in serve

RE : WS Authentication & Authorization

2005-02-10 Thread Faucher, Christian
Title: Message Hi,   Thanks for the links.     Another question:  the Axis's Call javadoc mentions a bunch of JAX-RPC properties, among others USERNAME_PROPERTY and PASSWORD_PROPERTY.  Are they shortcuts to SOAP Headers?   Cheers!   Christian Faucher -Message d'origine-De