Hi to all,
I'm trying to write a Webservice wich has to send
complex object/java types over thw wire. Although I already wrote custom (de)serializer
factories wich should filter the javaTypes I don’t need do serialize, I
still get a SAXException.
While I’m watching at tcpmon, SOAPMo
I'm using the default axis webapp installation, so log4j-1.2.8.jar is in the
right place:
axis/WEB-INF/lib:
. axis-ant.jar commons-discovery.jar jaxrpc.jar saaj.jar
xerces-2.0.2.jar
.. axis.jar commons-logging.jarlog4j-1.2.8.jar wsdl4j.jar
xml-apis-2.0.2.jar
Also, the only cha
Hello,
I read some time ago that after setting some
properties for your call, these are not sent over the wire. Is there any way to
send some properties to the server apart from the service
parameters?
Thanks.
Can someone tell me how to catch an AxisFault subclass at the clientside.
Regards
Jakob
Hello Axis-Users,
I am currently having two services: One returns a stirng and the other
service returns a custom type.
I am aslo using handlers for encryption/decryption of the request and
response for both services.
Everything works okay for the service returns a string and all the
security is do
Hi,
How do I turn off multirefs for my client? The server seems to have
problems with them. Axis makes these kind of references down to
individual text/number fields (seems odd).
I've read in the docs about *.wsdd files. The problem is I don't have
one! The only server-config.wsdd and client-
Hi,
Do we know if keep-Alive issue has been fixed ?
org.apache.axis.transport.http.HTTPSender.java
monitoring the connections , each request open a new socket connection.
Thanks,
Jose
Visit our website at http://www.ubs.com
This message contains confidential information and is intended o
Return Receipt
Your Keep-Alive
document
:
Return Receipt
Your Keep-Alive
document
:
Hi
I just downloaded AXIS 1.1 and tried to configure it in Bea Weblogic 7
SP4 on my XP laptop.
When I deploy it in exploded format (i.e. I copy/paste the directory) it
works.
When I create a WAR with the same structure (actually I create the WAR
on the same directory used for the copy/paste...)
I am getting similar error when I am trying to access
my service (with wsdl defined; complex types specified
in schema;) with style as "document" use="literal"
with provider as "java:MSG". I did not define any
serializer/deserializer beans/factories as my
service/client itself is taking care of it.
Go to http://ws.apache.org/axis/index.html, select Installation from the
list on the left, and read Step 5.
And after you've read that, consider this sentence (from that section):
"After adding new classes or libraries to the Axis webapp, you must restart
the webapp. This can be done by restartin
Hi Michael,
If you have a permanent deployment in place.
(you need to use the admin username/password to access this, by default)
Automated URL
http://yourhost:port/manager/html/reload?path=/axis (or whatever deployment
context you use for the axis engine) This only bounces an entire webapp and
n
>Go to http://ws.apache.org/axis/index.html, select Installation from
the
>list on the left, and read Step 5.
Since I got a problem in step 4, I didn't read step 5...
>And after you've read that, consider this sentence (from that section):
>
>"After adding new classes or libraries to the Axis we
Anders,
In the createCall method of SoapBindingStub.java code created
by wsdl2java add the following:
_call.setOption(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, new
Boolean(false));
Good luck,
mike
Michael Ser
Netweave Integrated Solutions, Inc.
-Original Message-
From: An
Thanks!
I just figured out that I could do
((org.apache.axis.client.Service)
this.service).getEngine().setOption(AxisEngine.PROP_DOMULTIREFS,
Boolean.FALSE);
in the *BindingStub constructor. Is that equivalent to your suggestion?
(Axis contains a myriad of *Engines, *Services, *Clients and
*
BTW
Is this standard?
http://schemas.xmlsoap.org/soap/encoding/";
xsi:type="decimal"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";>6053.14
http://schemas.xmlsoap.org/soap/encoding/";
xsi:type="decimal"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";>
Return Receipt
Your Keep-Alive
document
:
This doesn't address Anders' immediate problem, which Michael's fix below does. But such a hack should not be necessary. The SOAP 1.1 specification reads:"All values are represented as element content. A multi-reference value MUST be represented as the content of an independent element. A single-
To answer Mike's comment first. What I was expecting to see was a slow
incremental increase in response time with load up to some point where the
server saturates when the response time sky-rockets, probably with some
instability near the saturation point. In terms of your equation "a + b *
load",
To answer Mike's comment first. What I was expecting to see was a slow
incremental increase in response time with load up to some point where the
server saturates when the response time sky-rockets, probably with some
instability near the saturation point. In terms of your equation "a + b *
load",
I have integrated Tomcat 4.1.12 with Apache Axis 1.1. A few minutes after logging into
UI the server becomes very slow. It becomes so slow that even when i type the path to
the wsdl file in a browser it takes 25-30 seconds to bring up the wsdl file. Any
suggestion would be very appreciated.
th
What is your log4j root setting at? If it is at DEBUG, this could cause
issues.
On Fri, 2003-10-03 at 15:14, Abhijat Thakur wrote:
> I have integrated Tomcat 4.1.12 with Apache Axis 1.1. A few minutes after logging
> into UI the server becomes very slow. It becomes so slow that even when i type
We have our own logging application and we use log4j. In our application the category
that i use its root is set to DEBUG. Why would this cause problems? Also i have not
inluded the log4j.jar file provided with axis in the classpath but use the one that we
use for out logging application since t
How can(if at all) one write a generic client,
irrespective of the way service is being hosted - rpc,
doc, or literal, that can dynamically invoke the
service?
__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
Hi,
I noticed that in the Soap request the HTTP version is 1.0 .
How can I change this so it's HTTP 1.1 ?
Thanks.
Hi,
We are using Apache AXIS 1.1 to support a web service that
returns images. The images are base-64 encoded and embedded within the XML.
What we are seeing is very slow response times with AXIS
when it tries to construct the SOAP XML.The size of
the images are in the range 50-100KB.
Hi Ray,
It seems your problem is from a synchronized block
for a DocumentBuilderFactory. Axis is pooling parser
instances, however the current is using only one dbf
instance at least.
But, I think also this bottle-neck might be caused
by your testing scenarios.I mean the neck might make
it ha
Arun,
Looking at your WSDL, I don't see that you've changed it to say that you're
returning an ArrayOf_xsd_int type.
I do see that you've added a new operation (echo) (which you've defined it
in a very odd way), and your SOAP message refers to this operation. It
looks to me that wsdl2java is g
Mike,
Can you clarify what you mean by Java Web Services 1.2 and 1.1? Are you
referring to Sun's JWSDP?
Anne
At 08:35 AM 10/2/2003 -0500, you wrote:
Has anyone successfully gotten Axis 1.1 to work with Java Web Services 1.2
( w/ Tomcat 5 )? I tried it for a little while yesterday and I was ha
30 matches
Mail list logo