Hi
Its
similar to deploy on Tomcat. Axis is just a web application. So follow the
weblogic deploy procedure for web applications. You would get
the
context as /axis.
Another way is to package in any other war. The lib would contain axis
jars. In this case the context would be /applicatio
YES! Just got it going. I had to call the service using the WSDL2Java
generated classes. Previously I had been using hand coded classes, but
apparently for beans within beans more elaborate mappings are required.
Thanks to you and Marc for keeping me going with new ideas and finding the
mapping
I got the connection refused exception when I tried to run the
AdminClient (for securitydeploy.wsdd first, and later just the list
option). I was able to run the simple calculator example, and Tomcat
4.1.18 seems to run just fine as a Win2K service. Did I miss something
basic? Any help would be
Hi Luis,
A similar service works fine for me running on Linux.
The one thing I do differently from you is wait for
the child process to complete. It might be worth a
try.
try {
Process child = Runtime.getRuntime().exec( cmd );
child.waitFor();
int result = child.exitValue();
System.ou
Anybody know how to get soap request as a String before invoke the call?
I want to log it on file system.
Thanks,
Zhaohua
All,
I've axis working fantastic on two boxes -- attempting to port to third box and ran
into:
org.apache.axis.deployment.wsdd.WSDDException: java.lang.Exception: Must include type
attribute for Handler deployment!
When I'm simply issuing the following wsdd:
http://xml.apache.org/axis/wsdd/";
That is exactly what I needed to know... It's not me, it's the wording
;-)
This helped me (and hopefully others) a lot!
Thanks!
Tom.
-Original Message-
From: Mike Burati [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 11:32 PM
To: '[EMAIL PROTECTED]'
Subject: RE: WSDL2java a
Yes Xerces is fine!
-Original Message-
From: Cory Wilkerson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 10:26 PM
To: [EMAIL PROTECTED]
Subject: classpath -- xerces
axis expects a jaxp compliant parser in the path, correct? ie xerces?
cory
I wrote a web service in Axis, and I am trying to port it to
Weblogic 7.0
Axis provides serializers and deserializers fro typesafe Enums (Enumerations).
org.apache.axis.encoding.ser.EnumDeserializerFactory
org.apache.axis.encoding.ser.EnumSerializerFactory
Does anyone know if the
> I was expecting java:MSG as a provider for the service.
> Can anyone help me understand why it says java:RPC?
TomD, the AXIS naming of the types of services can be fairly confusing until
you wrap your mind around it...
If you've worked with WSDL and SOAP for a while, you're probably used to
se
Hi gang!
Has anyone succesfully implemented a Serializer/Deserializer for use with Axis? I
want to have a Axis webservice generate an ADO.NET DataSet class for use by my C#
client front end. It looks possible and thought someone might have gone there before
me.
Any thoughts? Thanks.
Rick Kel
axis expects a jaxp compliant parser in the path, correct? ie xerces?
cory
Hi,
I am using Axis 1.1beta. I have a complex type element in the type definition in
wsdl(See below "patient" element). If my service is deployed as doc/lit style(for rpc
style, it works fine), I always have a problem using
http://localhost/axis/services/SingleSignOnDoclit?wsdl to view the wsdl
Does anyone have detailed directions on how to
install axis with weblogic. If so, could you please direct me to the right
place.
Praveen
All,
I'm having troubles to understand how WSDL2java translates WSDL to code
and WSDD.
This is an excerpt from my WSDL:
http://schemas.xmlsoap.org/soap/http"/>
You could use your own beans, but then you'd either have to write a custom
client-config.wsdd with your own Serializers/Deserializers for your beans or
write helper classes for your beans that have the metadata, AFAIK.
Yes, I know, it's a pain.
- Navneet
-Original Message-
From: David Gil
Hi,I have a question about wsdl files.I have a web service. I am using encryption and signature for my services which are handled before the service using handlers.how can i specify in the WSDL file that iam expecting signed and encrypted messages.Is there a way to specify it in wsdl?Can i use the
Does this mean that I have to add XML specific code to my beans for them to
work with Axis deserializing? I was hoping to use hand-coded beans that I
already have.
I'll try the code below and let you know what I get.
-Original Message-
From: Navneet Joneja [mailto:[EMAIL PROTECTED]]
Sent
Because your return type is String and you are returning an object whose
type is Element.
Please check your code, "result" is of type Element not String.
Praveen
- Original Message -
From: "Ghershony, Arie" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 11, 2003 3:13
Hi,
Can any one tell me why do I receive the following error while compling:"
Incompatible types found:
org.w3c.dom.Element
required: java.lang.String
return result
^
1 error.
This is the relevant code:
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
impo
This classloader problem is not specific to Axis, IMO. You probably
just have a problem with the webapp finding your class period.
As a test, I would add a test servlet to your jar and see if you can
invoke it. If you fix that, you will most likely fix this problem.
Ben
On Tue, 2003-02-11 at 1
Title: problem in deploying new service as a jar
Hi,
I added my service as a class file in web-inf\classes and it works but it does not when I add the same service as a jar file in \web-inf\lib. I get a ClassNotFound exception for my service class when I try to view the deployed services in
Here's your problem:
field.setXmlType(new javax.xml.namespace.QName("http://util.regisproject";,
"Product"));
typeDesc.addFieldDesc(field);
If you look at the WSDL definition of the field, it should have been
ArrayOf_tns2_Product instead of Product.
If you change that, your service should
Hi all.
I have deployed a test service, which just executes a command in the
server:
Runtime rt = Runtime.getRuntime();
String[] cmd =
{"cmd.exe","/c","C:\\winnt\\system32\\xcopy.exe","c:\a.txt","c:\\logs"};
Process proc = rt.exec(cmd);
and then returns a fixed string:
return "This is t
Hi,
I was wondering if anybody has experienced a similar problem. I am
trying to convert from a SOAPElement to a String, but i seem to be
getting empty strings when i use the getLocalName(), getURI(), etc
functions in javax.xml.soap.Name.
Right now, if i try to do the conversion from SOAPEleme
Correct. I did that way and Axis works without any
complain :)
- Original Message -
From:
Jeff
Fletcher
To: '[EMAIL PROTECTED]'
Sent: Tuesday, February 11, 2003 5:28
PM
Subject: RE: DIME & Axis (2)
Josh,
I
had that problem too, you might try putting
Yang Zhonghua (Dr) wrote:
Hi,
I have recently installed Tomcat 4.1.18 and xml-axis.
The classpath I set is:
... completely ignored. Please read the tomcat documentation here:
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html
"System - This class loader is normally init
Josh,
I had
that problem too, you might try putting the following line before the
this.Invoke(...) method call in Reference.cs
this.RequestSoapContext.Path.MustUnderstand = false;
Jeff
-Original Message-From: Josh Kropf
[mailto:[EMAIL PROTECTED]]Sent: Tuesday, February 11,
Thanks Benjamin!
Debug output jungle is gone!
|-+->
| | Benjamin Tomasini |
| | |
| | |
| | 11.02.2003 16:52 |
| | Please respond to |
|
You would need to create different appenders in your log4j.properties,
based on the package name of your application. Here is an example of
two appenders writing to the console. The "additiviy" property prevents
duplicate logging.
# Root logger
log4j.rootCategory=ERROR, R
log4j.appender.R.layou
Hi,
how can I separate the log out put from axis and my own application classes?
The log4j.properties for my app is located in /WEB-INF/classes/.
Any suggestions? Thanks,
Kristian
Title: Message
I am
hoping that some of the developers could chime in on this one. I am unable
to move forward without answering these questions.
Thanks.
Naresh
-Original Message-From: Naresh Bhatia
Sent: Monday, February 10, 2003 3:57 PMTo:
[EMAIL PROTECTED]Subject: Clarif
Maurizio,
I am assuming since
you are working with attachments in your .NET client you are using the WSE 1.0
for .NET. Have you had any issues when sending the soap request to Axis? I seem
to be having difficulties getting Axis to accept the request sent from the C#
client derived from the
"Yang Zhonghua (Dr)" wrote:
> Hi,
>
> I have recently installed Tomcat 4.1.18 and xml-axis.
>
> The classpath I set is:
>
> C:\>echo %classpath%
> %CLASSPATH%;.;G:\projects\xml-axis-10\lib\axis.jar;G:\projects\xml-axis-10\lib\j
> axrpc.jar;G:\projects\xml-axis-10\lib\saaj.jar;G:\projects\xml-axis-
James,
The reason that the JMS Connector creates and accepts BytesMessage is for
attachments support. The rationale is that the attachment encoding may not
map well into a TextMessage. However, there is nothing that says that a
simple soap message without attachments could/should not be sent as
Return Receipt
Your Problems in Installing and deploying web applications using
document xml-axis
:
Title: Excel axis call example
I do not think so. Actually, I think you
need Office XP (which can run on W2K), but the OS itself does not need to be
XP.
The nice thing about the toolkit is that
it can parse the WSDL and generate VB classes for it that you use in an Excel
macro.
You can t
Title: Excel axis call example
Thomas,
I am
running W2K. Is there a toolkit for W2K as well?
Ricardo
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Sent: 11 February 2003
15:50To: [EMAIL PROTECTED]Subject: RE: Excel axis
call example
If you a
Having a look at the SimpleJMSListener it assumes all messages
are javax.jms.BytesMessage.
> /**
> * This method is called asynchronously whenever a message arrives.
>* @param message
>*/
>public void onMessage(javax.jms.Message message)
> {
>try
> {
>//
Title: Excel axis call example
If you are on XP, download the office web
service toolkit from Microsoft, the documentation says it all.
Thomas
-Original Message-
From: Ricardo Coutinho
[mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003
5:08 AM
To: '[EMAIL PROTECT
If you are using Axis for your web
service, setting the scope to session will turn cookie handling on from the
server side point of view (Axis will use the HTTPSession features of the
servlet container). On the C# client side, you have to create the cookie
container for your service object
Hello,
I am trying to
build a web service exposing this kind of method :
public interface
MyIface {
byte[] getFileContent (String filename);
}
To generate the
WSDL, I am using the Java2WSDL tool provided by Axis. For a type byte[], it
works fine.
But, the file
content can
i wrote a RPC based service with this interface:org.w3c.dom.Element
Service(org.w3c.dom.Element e)the problem is that i can't access
to this service from an other platfom =but java-axis (i.e
.NET)probably because Element is a java specific classdo i have
to write a custom serializer for the
Yes,
thank´s a lot Oliver, it works !!!
Regards
Sven
PS.:
It´s funny, that in all the mails and examples related to the topic there is no
hint how you can solve the problem really (see above) ...
-Ursprüngliche Nachricht-Von: Oliver Adler
[mailto:[EMAIL PROTECTED]]Ge
hi,
axis does no validation !!
If you want schema validation you have to implement it, (ceate a validation handler).
Regards
Oliver
-Ursprüngliche Nachricht-
Von: Krishnakumar B [mailto:[EMAIL PROTECTED]]
Gesendet: Di 11.02.2003 11.10 Uhr
An: Axis-
hi
I have created a
message style web service. I want the request validated against a XSD Schema.
How do i do this?
The server accepts
any form of XML request i send and it is not validated against the schema in the
WSDL.
My
client
String namespace =
"http://localhost:8080/DOMSe
Title: Excel axis call example
Hi all,
I am new to Axis/Soap. Can someone please provide me with some guidelines or a simple example of a call to an Axis service from an Excel spreadsheet.
I am running Axis with Tomcat 4.01
Much appreciated.
Ricardo Coutinho
Consultant
Tel +352 26 29 7
Please help me. I really need to solve this problem soon. I've just realized
that if I try to send an attachment from C# client (DIME) the response
message has the correct content-type and everything works fine.
Bye
> Hi all.
>
> I'm trying to download a file from a Web Service written in Java. I
The antivirus system on mail.domainbank.com has detected a virus infected email
message.
From: "Oliver Adler" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: AW: sessions and client config
The message has been re
Hi Sven,
here is the extra code:
import org.apache.axis.utils.SessionUtils;
...
SessionUtils session = new SessionUtils();
call.setProperty("SimpleSession.id", session.generateSession());
For our project I changed the simple session handler. For use the handler creates the
session id.
BT
Hi,
I have recently installed Tomcat 4.1.18 and xml-axis.
The classpath I set is:
C:\>echo %classpath%
%CLASSPATH%;.;G:\projects\xml-axis-10\lib\axis.jar;G:\projects\xml-axis-10\lib\j
axrpc.jar;G:\projects\xml-axis-10\lib\saaj.jar;G:\projects\xml-axis-10\lib\commo
ns-logging.jar;G:\projects\xml
Thanks,
but
how can I do that ? A litte example which shows what extra steps are necessary
would be helpful.
Regards
Sven
-Ursprüngliche Nachricht-Von: Oliver Adler
[mailto:[EMAIL PROTECTED]]Gesendet: Montag, 10. Februar 2003
12:29An: [EMAIL PROTECTED]Betreff: AW:
52 matches
Mail list logo