hi
i think ur wsdl has the targetname space uri
'http://axis.test.soap' as in following wsdl target namespace uri "http://soap.bookshop.com.
usually WSDL2Java tool generate the class package
structure according to this targetname space uri and i think this uri
remains in response.
regard
The init-param tag doesn't look like the one U are using !
Real one :
Param_name
Param_Value
Do not use tag with attributes ! The XML you produced is
not DTD conformant.
Regards
Guillaume
Uli Magsaam wrote:
>
> Hi,
>
> I try to write a little web service using AXIS. Everything works fine
Hi !
I am getting this error when i run HappyAxis even though file size and
classpath is set correctly. Please help .
could not find class org.apache.log4j.Layout from file log4j-1.2.8.jar
Rgds
Vineet Arora
Development Manager
DID - 68673244
Hello,
does anybody knows about a mailing list about ssl
thanks
Mohammed
Hi,
I'm attempting to setup Axis 1.1 in the iPlanet Web Server (v6.0 on Windows)
J2EE Container (Servlet 2.2 compliant).
I package the axis web-app as a WAR (/webapps/axis) and use the wdeploy
utility to deploy it:
$IWS_SERVER_HOME/bin/https/httpadmin/bin/wdeploy.bat deploy -u /axis -i
michael.ja
Greetings.
In order to have a service exposed both as an EJB and a web service, I have
succesfully deployes a stateless session bean through Axis. The methods
were mapped correctly, although I will probably have to write a WSDL by
hand -- parameter names were not exported, and there seems to be n
Hi,
When i start my server and try to deploy the Axis AdminServlet in WebSphere, I get an error like this:
Servlet Error-[AdminServlet]: Failed to load servlet: java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException
Hi,
When i start my server and try to deploy the Axis AdminServlet in WebSphere, I get an error like this:
Servlet Error-[AdminServlet]: Failed to load servlet: java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException
Vineetarora,
Make sure you have log4j-1.2.8.jar in your classpath, maybe put it in the
lib directory of your webapp.
Matt Hamburger
Bank One Corporate Internet Group
[EMAIL PROTECTED]
614.244.5009
VINEETARORA <[EMAIL PROTECTED]> on 10/01/2003 04:49:33 AM
Please respond to [EMAIL PROTECTE
Hi.
I am having some trouble with Axis' autogenerated WSDL - it seems to always
invent a wrong namespace for the response message. It dos that for all
services deployed.
For example, the Version service that comes with Axis expects a request
message (SOAP body) in the "http://axis.apache.org"; na
I´m a newbie, but I give you my javascript client code, my be it could help.
function enviar(){
var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.4.0");
xmlhttp.open("POST",
"http://127.0.0.1:8080/axis/Calculator.jws",tru
Wermus,
It sounds like you need to turn this xml file into a java class, and make
this class the argument. If this class is a bean, then you can serialize
the class and pass it back and forth.
Adhamh
On 9/30/03 1:30 PM, "Wermus Fernando" <[EMAIL PROTECTED]> wrote:
> I have a method that it has
I mean I have an xml as argument and I have a schema for the validation. How
can I make a class that accept these types of arguments.
-Mensaje original-
De: Adhamh Findlay [mailto:[EMAIL PROTECTED]
Enviado el: miércoles, 01 de octubre de 2003 9:14
Para: [EMAIL PROTECTED]
Asunto: Re: about
Thank You Anne for your reply.
After this I tried out defining the array in the wsdl in the same way as
axis is sending the response on wire and the web service worked with .NET
But now axis generates wrong client stubs from the wsdl
My java Class is
-
How large a message can Axis/Tomcat cope with? I'm returning a user-defined
type which includes an array of another user-defined type and which can get
quite large. It works great for, say, 1000 or 2000 elements, but I get an
Axis
Fault with "500 Internal Server Error" for large numbers of elemen
hi all,
I´m having problems on serializing/deserializing
beans and don´t know what´s happening. The thing is that I have a
service which returns an arrayList of beans. The client´s code that invokes
the services is:
QName qn = new
QName("urn:ReportService","Bioentity");call.registerTypeM
Hello all,
I'm having problems bypassing the servlet and deserializing an XML string using
the axis libraries. I was able to serialize the data, but the deserialization
posed more of a problem.
In the code snippet below I'm able to serialize the object into an XML string.
I am then unable t
Hi
I'm trying to use my
own custom serializer for array data type (array of int) in
AXIS.
For this I'm
defining the typeMapping in wsdd file as follows:
---
xmlns:ns="http://DefaultNamespace"
qname="ns:ArrayOfint"
type="java:int[]"
serializer="myArrSer.ArraySer
Is there a way to specify soapAction in the wsdd?
I was thinking in idenfying my client with two methods
String login(String
user, String pass)
bool logOut(String id)
And I need the id in the
whole messages. I know that this "session id" should be in the soap:header.
I 've
read this in msdn but, I don't know how to do
this.
Title: Message
It looks like your
actual service is returning a
{ServiceController}Bioentity
rather than
a
{urn:ServiceController}Bioentity
HTH,
Gary
-Original Message-From:
Tania Durán [mailto:[EMAIL PROTECTED] Sent: Wednesday, October
01, 2003 8:09 AMTo: [EMAI
Title: ComplexType Array
All,
I feel I am asking a repeated question so I apologize.
How do I return an array of my custom complex type? I always get a null pointer exception.
I have read that I need to write my own custom serializer/deserializer class. Is this the case? I can not find a
You should just be able to pass the XML and DTD in as Files through the
arg and have your xml parse do the validation on the other side. It has
been a long time since I had to do this, but this is the route I would
take.
You could send the xml files through the web service as attachments. Or
even
Hi, is there a way to dynamically pass a backend implementation in to a
skeleton class generated by wsdl2java? In wsdd file, only the skeleton name
can be specified in the class attribute, but how do I use the second
skeleton constructor that takes a backend implementation. Thanks,
Jeff
Hi,
If you want to pass the XML document or valid XML element as the argument
to the web services then the part type for the message can be of xsd:any or
xsd:anyType in WSDL file.
And for implmentation the argument type of the service has to be
org.apache.axis.types.Schema
e.g. void myService(or
Hi,
If you use the array of uer defined complex types in your web service then
you will have to specify the typemapping for the complex type as well as
for array of the complex type.
The sample type mapping for using array of user defined types can be as
shoen below.
http://schemas.xmlsoap.org
The following information might be of some help:
http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SunOne
-Original Message-
From: Michael Joseph [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 01, 2003 6:21 AM
To: [EMAIL PROTECTED]
Subject: iPlanet Web Server Installatio
Hi,
There are two ways you can do the authentication. You can use HTTP headers
to send user name/passWord or you can send it in a SOAP header.
You can use whatever you prefer.
1) When it comes to HTTP you can set these HTTP-headers with a comand on
client side as
call.setUserName(user)
call
ComplexType ArrayTim
Check out this bug;
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15384
Regards,
Dimuthu.
- Original Message -
From: Cobble, Tim
To: [EMAIL PROTECTED]
Sent: Thursday, October 02, 2003 12:23 AM
Subject: ComplexType Array
All,
I feel I am asking a repeated quest
29 matches
Mail list logo