You mean method overloading.
I think, in general, this should work; it may well be a bug in Axis.
-- Oliver
Jim Hazen wrote:
>
> I have a simple class (listed below). I would expect it to be a trivial
> case to determine which method to call. After all the signature is
> nothing alike (eithe
Axis Beta 2 seems to have a problem if a jws file is located in a
subdirectory off of the axis webapp dir. So:
/webapps/axis/Tester/test.jws will generate a class in
/webapps/axis/WEB-INFjwsClasses/Tester/Tester/test.class
notice the duplicate Tester dir. This causes a problem and breaks the
I have a simple class (listed below). I would expect it to be a trivial
case to determine which method to call. After all the signature is
nothing alike (either type wise nor number of args wise).
Axis Beta 2 is able to generate WSDL for this class without error.
However the stubs generated by
I have installed Axis in Tomcat sucessfully and would like to install
the Axis engine in the J2EE SDK 1.3.1 development server. Has anyone
been able to install the Axis engine as a webapp using the deploytool of
the J2EE SDK1.3.1? What directory is the equiavlent to webapps directory
found in
Hi Sylvain,
Look at http://www.pankaj-k.net/WSOverSSL/WSOverSSL-HOWTO.html for some info
on this.
/Pankaj
> -Original Message-
> From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 2:26 PM
> To: Axis-User (E-mail)
> Subject: SSL Tomcat and Axis
>
>
> I h
yup... unfortunately, I haven't found anyone who has referred to the
problems I am experiencing with Sun's JAX-RPC RI.
***
Kyle Lomelí
Software Developer
Deitel & Associates, Inc.
www.deitel.com
Register now for the DEITEL BUZZ e-mail news
I have followed the instructions @
http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html
Although I can see the request coming out and back in (using tcpmon) the
process never seems to terminate.
Anyone successfully achieved this?
--
Sylvain
This message may contain privileged and/o
Kyle,
Have you tried searching the archives at the following URL?
http://marc.theaimsgroup.com/?l=axis-user&r=1&w=2
I've noticed that JAX-RPC is a frequent topic of discussion on this mail
list.
Dan
- Original Message -
From: "Kyle Lomeli" <[EMAIL PROTECTED]>
To: "axis user group" <[E
- Original Message -
From: "Simon McClenahan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 1:28 PM
Subject: RE: [ANN] Ant 1.5 Beta 1
>Is this in the Ant beta or the Axis beta? How do you use it?
>
>cheers,
>Simon
It is in the ant beta cos it is nothing to do w
This was recently fixed - try tonight's nightly, or grab the current CVS.
--Glen
> -Original Message-
> From: Bob Cotton [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 12:39 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Java2WSDL breaks for me beta1 -> beta2
>
>
>
> The change i
Is this in the Ant beta or the Axis beta? How do you use it?
cheers,
Simon
> -Original Message-
> From: Steve Loughran [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 12:31 PM
> To: axis-user
> Subject: [ANN] Ant 1.5 Beta 1
>
>
> The first beta for Ant 1.5 has been rel
I posted a question earlier to which no one replied... :(... hopefully
someone will respond to this paraphrased question:
Does anyone know if there are any incompatibilities when trying to invoke an
Axis-deployed Web service using Sun's JAX-RPC RI (JWSDP EA2)?
***
Try using =>
(String)headerElement.getValueAsType(QName(Constants.URI_2001_SCHEMA_XSD,
"string"));
Srinivas
__
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com
Narve,
I have a fix for this that ignores final fields in JavaBeans when constructing the
BeanPropertyDescriptors. I believe this will prevent the fields from getting
serialized in the first place, so Axis will not attempt to Deserialize them.
Please try out either the latest CVS build or Mo
Till,
yup, that does the job. Thank you!
Andrew
At 07:25 PM 5/3/2002 +0200, you wrote:
>I had this question long time ago, I cannot remember the complete answer,
>but you should use
>
>String foo = (String)xxx.getObjectValue()
>
>Hope this helps...
>
>Till
>
>
> > -Ursprüngliche Nachricht
The first beta for Ant 1.5 has been released. It is available for download
from the Jakarta web site at
http://jakarta.apache.org/builds/jakarta-ant/release/v1.5Beta1/
You may submit bug reports using Bugzilla
http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Ant
or send an email to the Ant
I had this question long time ago, I cannot remember the complete answer, but you
should use
String foo = (String)xxx.getObjectValue()
Hope this helps...
Till
> -Ursprüngliche Nachricht-
> Von: Andrew Vardeman [mailto:[EMAIL PROTECTED]]
> Gesendet: Freitag, 3. Mai 2002 19:16
> An: [E
Hi.
Anyone understand the getValue() method of a SOAPHeaderElement?
I have a SOAPHeaderElement whose toString() method returns this:
http://www.w3.org/2001/XMLSchema-instance";>2
and when I run getValue() on it, I seem to be getting null. Can getValue()
not handle the namespace stuff, or do
We can't seem to get Axis to work with this
configuration. I have a few questions:
a) has anyone got it to work on Weblogic
5.x?
b) what is the required JVM for Axis?
1.2, 1.3, or both?
c) what version of Xerces is to be used with
Axis?
d) to do WSDL, it appears that tools.jar is
Hello, I am a newbie to axis. I am trying to
interoperate axis
java server and soap::lite client. At this point, I already
tested the
interoperability of simple datatypes (it works) and now I
want to pass
complex datat
The change in Java2WSDL that is wreaking havoc is that Java2WSDL is
now picking up non-public methods on the target class, by default.
Even if I specify the list of methods to use on the command line, if I
have an overloaded method, one private and one public they BOTH get
picked up. Then we run
It seems the BeanDeserializer does not take into account that fields may
be final (you get a java.lang.IllegalAccessException when you try to set
the value). I see that several people (well, at least two) have asked
about this in the user mailing list.
An easy fix is to add
} ca
> "kevin" == kevin d <[EMAIL PROTECTED]> writes:
kevin> I'm a bit fuzzy about whether WSDL2Java is supposed to
kevin> support overloaded methods. I'm trying to generate proxies
kevin> for a Microsoft .Net web service that has overloaded method
kevin> signatures. In the .Net mo
I try to use a complex type in the
wsdl-document.
The schema of the complex type is:
The element "document" is another complex type. So
I think it can
be used to define the following:
...
...
...
But when I use the wsdl2java-Tool to create
Hi,
Can any one suggest how to expose a SOAP Service as a
RMI Service aswell. I know there could be plenty of
ideas among us, however I am looking for the one that
would make the whole deployment process very easy.
thanks
Srinivas
__
Do You
Got it
Thanks
- Original Message -
From: "Vidyanand Murunikkara" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 02, 2002 4:50 PM
Subject: RE: Calling an EJB service
> Hi
>
> As long as u have the WSDD correct u dont have to change the way u
> invoke an EJB web servic
Hoa,
It depends on your application. For example, if you have a B2B application
and you want to submit a purchase order to a vendor, then you would want to
pass your PO as a message. On the other hand, if you just wanted to invoke
a method, then you would use RPC.
You might want to provide a d
Hi,
Been trying to find out what is preferable to choose SOAP-RPC or SOAP-Message.
Can anyone help me to clarify this?
Best Regards
Hoa
If you need an internal UDDI repository I tried the one bundled with the IBM
WebService toolkit and it was quite neat.
Sylvain.
-Original Message-
From: Vinit Kumar [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 03, 2002 7:29 AM
To: [EMAIL PROTECTED]
Subject: UDDI Issues
Hi All
does axis
"Ulf Paulsson (QPK)" wrote:
>
> Hi all!!!
>
> When using Axis I believe that a SAX parser is used ( I may be wrong).
> How do I make Axis use A DOM parser instead?
Um, why do you want to do this?
Tmo
Hi all!!!
When using Axis I believe that a SAX parser is used ( I may be wrong).
How do I make Axis use A DOM parser instead?
Best Regards
Ulf Paulsson
Title: Recall: Session full web service with ejb provider and JAAS security
Jean-Claude Mamou would like to recall the message, "Session full web service with ejb provider and JAAS security".
Title: Session full web service with ejb provider and JAAS security
I
asked you to continue working hard. Not necessarily until
3:30am...
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Sent: Friday, May 03,
2002 3:33 AMTo: [EMAIL PROTECTED]Subject: Sess
Hi all!!!
When using Axis I believe that a SAX parser is used ( I may be wrong).
How do I make Axis use A DOM parser instead?
Best Regards
Ulf Paulsson
When I call
call.registerTypeMapping(cls, qName, sf, df,false);
from my axis
generated client stub there is no problem . But when I call the same code
from my webapp context , I get a
RemoteException Failure trying to get
the Call object
the package
structure and code is
Try putting the jar files that axis uses in your java sdk's jre/lib/ext
folder. If your on a windows based system it will be something like
c:\jdk1.3\jre\lib\ext. Copy or move the libraries(jar files) that Axis
needs(they are listed in theInstallation Guide for Axis) there. To run
the examples
Whoa!
Thanks!!! that was it. I defined my header in the same message element.
Greetings,
Till
> -Ursprüngliche Nachricht-
> Von: Kolodziej, Erik [mailto:[EMAIL PROTECTED]]
> Gesendet: Freitag, 3. Mai 2002 13:03
> An: '[EMAIL PROTECTED]'
> Betreff: AW: Header definition in wsdl
>
>
> H
Hi,
I have an own message element with exactly one part element for my header.
Only in the binding/operation element I declare with an input/header
element, that there have to be a header in the soap message.
I believe you put your header as a part element to the message element of
your operati
Ok...
but what I do now is:
1)Generate a wsdl file from an interface.
2)Add my header definition as a message part and in the appropriate binding element.
-->
Now I have following situation when I run WSDL2Java:
- I get the error message "java.io.IOException: Emitter failure. All input parts m
Hi All
does axis or any of the apache product has UDDI implementation???
If there is any,can we expose the services created from Axis into
UDDI registry
if there is any such support,plz let me know
Any info on UDDI support is welcome
Thanks
Kumar Vinit
Hi,
no, the error isn´t ok. My WSDL contains a header definition and WSDL2Java
runs without an error. It just ignores the definition.
So, there have to be some other problems in your WSDL.
-Ursprüngliche Nachricht-
Von: Wörner Till [mailto:[EMAIL PROTECTED]]
Gesendet am: Freitag, 3. Mai
Thanks,
but if I have a header definition in my wsdl, schouldn't the WSDL2Java tool just
ignore it, or is it ok that I get an error message when I try to create the stubs?
Greetings,
Till
> -Ursprüngliche Nachricht-
> Von: Kolodziej, Erik [mailto:[EMAIL PROTECTED]]
> Gesendet: Freitag,
yesterday I solved a similar problem, see
http://xml.apache.org/axis/faq.html#faq5
I used beta2, I never had beta1
best wishes Kristian
Hui Deng wrote:
>
> I struggled on this for long hours, I quit and look
> for help here.
> After upgrading to beta2 (beta1 runs perfectly), when
> I run a
I struggled on this for long hours, I quit and look
for help here.
After upgrading to beta2 (beta1 runs perfectly), when
I run any service like this one (or any ones working
on beta 1):
java samples.stock.GetQuote
-lhttp://localhost:8080/axis/servlet/AxisServlet
-uuser1 -wpass1 XXX
I got error:
Title: Session full web service with ejb provider and JAAS security
I have been playing with axis beta1, jboss2.4.4 with tomcat4.0.1 bundled together in order to create a web service with an ejb implementation.
It is working quite well. By doing a stateful ejb, I also played with the request
Hi,
headers are not supported by WSDL2Java, I believe.
You have to add the header element manually.
Bye,
Erik
-Ursprüngliche Nachricht-
Von: Till Woerner [mailto:[EMAIL PROTECTED]]
Gesendet am: Freitag, 3. Mai 2002 00:27
An: [EMAIL PROTECTED]
Betreff: Header definition in wsdl
Hi,
I'm
46 matches
Mail list logo