Sorry the exception that i get is
org.apache.axis.ConfigurationException: java.lang.ClassNotFoundException: No
ClassLoaders found for: EchoService.authenticator.MyAuthenticationHandler
the classes.EchoService.authenticator.MyAuthenticatonHandler in the prev
mail was incorrect
> -Original M
Hi,
Has anyone used JBoss app server and deployed Axis in it in the All
configuration.
Firstly there is already a context by the name Axis so i had to use context
ttaxis for my deployment.
Then all runs well until i deploy the StringEcho(sample service that returns
a string that is passes) servi
Are you deploying two copies of Axis as separate Web applications? If so,
each will get its own classloader, so if the class that contains your static
files is loaded by the Web app's class loader, you'll have two copies of the
static variable.
One way around this is deploy the relevant class in t
>I have in the back of my end that some of the root certificates
>distributed with old Java builds have expired.
Back of my *mind*. mind.
ouchy typo,
Nelson
> [java] faultString: java.io.IOException: Write Channel Closed, possible SSL
> handshaking
> or trust failure
Well, that error looks like it has nothing to do with Axis itself. It
looks like your SSL setup is failing. Does the problem go away if you
don't use https:// URLs?
I have in the b
Well, its a bug I've never encountered in the months that I've been using
1.1... I've had to do very little date fiddling, and where I have, its been
due to .NET either not sending timezone information, or not handling null
dates properly.
Joe
> -Original Message-
> From: Zach Hensley [ma
I generated webservices client using axis. However, this client works in java 1.4 but
does not work in 1.3.1. In our production system we have java 1.3.1. Does anybody know
what is the difference or is there anything i need to differently to make it work in
1.3.1.
Here is the error i get when i
Can anyone point me to a good description of how Axis peforms [de]serialization
between Java instances and XML?
I have some custom [de]serialization tools that I'd like to plug into Axis, but my
head is spinning trying to figure out how this is accomplished.
TIA!
-- Mark
I am having an issue with attributes defined within a complex type and the
serialization of these attributes. An example below how I define the
attributes within our complex type.
.
Hi all
I am trying to run sample application "getQuote" from
browser(http://'something'/services/urn:xmltoday-delayed-quotes?method=test)
. It ask me to enter user name and password. I entered 'user1' and 'pass1'.
It send me to the page wher I see the error :
- http://schemas.xmlsoap.org/soap/e
All,
I found some examples pertaining to attachments in the "samples" provided with
Axis. But
these use RPC style communication. I guess we could modify our code accordingly, but
atleast
to satisfy my curiosity, I would appreciate if someone would post an example where an
entire
SOAPMessags i
Also, could someone please post a simple example of a "client-server" that uses
Document/Literal communication. Thank you.
sincerely,
Ramesh
> -Original Message-
> From: Mantri, Mr. Ramesh (Contractor)
> Sent: Thursday, April 29, 2004 10:12 AM
> To: '[EMAIL PROTECTED]'
> Subje
All,
the term "legacy webapp" might sound paradoxical. We wrote a server implemented as
a collection of
JAXMServlets. Everything was sort of alright until we were told we would have to stick
a few Axis Handlers
in front of the server.
My experience with Axis is about two weeks. I am aware tha
Please send us your WSDL file.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 29, 2004 11:40 AM
To: [EMAIL PROTECTED]
Subject: Axis :: Input parameter namespace ! ['Watchdog': checked]
['Watchdog': Virus checked]
Hi All,
I am using Axis 1
Please send us your WSDL file.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 29, 2004 11:40 AM
To: [EMAIL PROTECTED]
Subject: Axis :: Input parameter namespace ! ['Watchdog': checked]
['Watchdog': Virus checked]
Hi All,
I am using Axis 1
Kevin,
The message you are sending is an RPC/encoded message. The service is
expecting a document/literal message.
Key differences:
- your message is using SOAP encoding
- your message puts the element in no namespace
- your message include xsi:type information
- the service expects the elemen
Kevin,
The message you are sending is an RPC/encoded message. The service is
expecting a document/literal message.
Key differences:
- your message is using SOAP encoding
- your message puts the element in no namespace
- your message include xsi:type information
- the service expects the elemen
Dear axis users,
I could install axis1.1 on tomcat4.1.30 (debian unstable). The
happyaxis.jsp is OK, as well as the view of the deployed services and their
respective wsdl.
However, I still have problems with the endpoints and the calculator
example. None of the solutions I could find on the
How do I get the axis servlet to log
to the ServletContext provided by the servlet container? I want the axis
logging to (and the webservices below it) to be redirected so they neatly
appear in the same log and intersect with other events going on in the
web container.
1) Should I inherit from A
Hi All,
I am using Axis 1.2 beta, I facing a strange problem now:
What I have done:
1. Created all the complex types in a separate XML Schema ( Created all the
related java beans as well)
2. Created another xml schema, which defines the elements of type described
in Step 1.
3. Wrote a WSDL
vikram wrote:
Hello,
I was hoping that you could help me out with the following issue
Concerning suspected incompatibilities between Java files generated by
WSDL2Java tool of Axis 1.1 and 1.2a.
We had an older client generated by WSDL2Java of Axis 1.1 which produced
the following method sig
Hello,
I was hoping that you could help me out with the following issue
Concerning suspected incompatibilities between Java files generated by
WSDL2Java tool of Axis 1.1 and 1.2a.
We had an older client generated by WSDL2Java of Axis 1.1 which produced
the following method signature for a t
I've got a web service that returns a List. Sometimes it returns an
instance of ArrayList and somtimes it returns an instance of my own class
ClassifiedList, which extends ArrayList. I've written my own
serializer/deserializer (and factories) to serialize ClassifiedList, but I
can't get Axis to c
Thank you for your help
I will try this and let you know the results
but right now i am working on a diffrerent lead
-Original Message-
From: Stefano Sambi [mailto:[EMAIL PROTECTED]
Sent: Thu 4/29/2004 7:30 PM
To: [EMAIL PROTECTED]
Cc:
Sorry for my late reply.
Here is what I added to my wsdl to manage session:
1)Add this namespace declaration in root element of wsdl file (in
):
xmlns:session=http://xml.apache.org/axis/session
2)Add this schema definition to :
http://xml.apache.org/axis/session";
xmlns="http://www.w3.o
If the following service is generated by j2wsdl and wsdl2j:
/* The Service */
public class MigrationServiceSoapBindingImpl implements Migration {
public A getA() throws RemoteException {
return new A();
}
}
/* Class to return */
public class A implements java.io.Se
If the following service is generated by j2wsdl and wsdl2j:
/* The Service */
public class MigrationServiceSoapBindingImpl implements Migration {
public A getA() throws RemoteException {
return new A();
}
}
/* Class to return */
public class A implements java.io.Se
Title: Security
Hi
What do I need do configure to use the SimpleSecurityProvider?
Thx
Pascal Auderset
28 matches
Mail list logo