Has anyone use this configuration - Axis inside
WebLogic 7.0 SP2 or higher, with JDK 1.4 ?
Thanks, Shmuel Koller (attached quote from BEA doc)
http://e-docs.bea.com/wls/certifications/certs_700/overview.html
WebLogic 7.0 SP2 (and SP3, SP4) Supported Client JVM
* SunSoft SDK 1.4.1 (32 bit)
with
Hi,
I think in your client's code you also have to register the typemapping
for the intmsg.IntMsg object (BeanSerializer).
Wolfgang
-Ursprungliche Nachricht-
Von: JC [mailto:[EMAIL PROTECTED]
Gesendet: Montag, 10. November 2003 17:22
An: [EMAIL PROTECTED]
Betreff: Serializer not found f
Just to inform anyone having anything similar, I got round the problem by
explicitly creating new instances of ServiceDesc each time. Before I was
reusing the old one, clearing the Operation list and then going from there
(I had noted that the operations returned were not in a defensive copy so I
t
Hi,
could you post your deployment descriptor?
Wolfgang
Hi,
I'm new to AXIS. I have set up an AXIS server (i.e. jboss.net) and created a simple
web service
"hello". It works fine with a Java client with both http and https.
Now I created a C Client using WASPC. It works without SSL. When I tried to enable
SSL, I always
get "SSLHandShakeException
Oops... You're right. It works better now.
Thank you :)
On Tue, 11 Nov 2003 09:22:53 +0100
"Wolfgang Vullhorst" <[EMAIL PROTECTED]> wrote:
> Hi,
> I think in your client's code you also have to register the typemapping
> for the intmsg.IntMsg object (BeanSerializer).
>
> Wolfgang
>
> -
Is it possible to use AXIS without any Servlet container? Does AXIS has some
build in server I can start up?
Med venlig hilsen/Best regards
Søren Neigaard
System Architect
Mobilethink A/S
Arosgaarden
Åboulevarden 23, 4.sal
DK - 8000 Århus C
Telefon: +45 86207800
Di
We have Axis deployed in Weblogic 8.1 with JDK 1.4.
Soniya
-Original Message-
From: Koller, Shmuel [mailto:[EMAIL PROTECTED]
Sent: Τρίτη, 11 Νοεμβρίου 2003 3:14 πμ
To: [EMAIL PROTECTED]
Subject: Axis inside WebLogic 7.0 with JDK 1.4
Has anyone use this configuration - Axis inside
We
Hi,
I wrote my own provider but I cant test it, because
I didnt find anything about deploying providers.
How can I tell Axis to use my Provider for some service ?
Is there a possibility to tell axis that java:MyRPC is
of class package.MyRPCProvider in the server-config.wsdd ?
Thanks in advance
Title: Setting port for WS Client (No Firewall Proxy)
Hi,
I've searched the archive for this to no avail:
I have an Axis client that will sit behind a tightly controlled firewall. The service resides on an external IP -- I need to tell my network administrators which ports to open to that
Title: RE: Null serializer factory specified
Thanks for responding. Here is the deployment descriptor. I am using Axis with Castor. Everything compiles fine, but at the time of deployment it gives me the error.
AJ
deploy.wsdd**
xmlns="
Title: RE: Setting port for WS Client (No Firewall Proxy)
Using this:
System.setProperty("http.proxyPort", proxy.port.here);
Did not change the source port for the WS Client.
Any suggestions are greatly appreciated.
Greg Bobak
http://www.thingsremembered.com
-Original Mes
Surely if you want the client to use a particular port and you control
the server, don't you just set the server to run on that port? There is
no way the client can contact the server on any port other than the one
it's running on...
My advice would be to install a proper HTTP proxy server and
Title: RE: Setting port for WS Client (No Firewall Proxy)
The issue is not the ports the server uses. It will be expecting requests on ports 80 and 443. The issue is that any HTTP client (browsers, Axis clients, etc.) opens a random port that is available, and not a well known port. Yes, a
All,
I am currently working on writing a deploying a web service (not one of the
examples) for the first time. The documentation is excellent if you have
everything in one class and one file, but I am trying to use custom classes
(something.java) in my services. I have jar'd every .java file, pla
I am working on a system where we have to provide support for greek
characters.
I was able to make the SOAP client work by setting setEncodingStyle to
"UTF-8" in org.apache.axis.client.Call object, but the cannot get the SOAP
server working.
Does anyone know any setting I have to do in the S
Question related to the SOAP schema available at
http://schemas.xmlsoap.org/soap/envelope
Essentially, I am having trouble parsing the SOAP envelope with the error
message:
org.x
Hi All,
I seem to have deployed and tested the attachments example successfully
but when I try and view the auto generated WSDL I get the following error:
AXIS
error
Sorry,
something seems to have gone wrong... here are the details:
Fault - ; nested exception is: WSDLExceptio
If what you wrote below wasn't just sloppy description, your problem is
* jar the .class files, put the jar in /lib
* run the admin client from the directory the .wsdd lives in
Once you've compiled and jar'd your .java files, you've got no need for the
.class files, and the wsdd is used only while
Hi,
One of the return classes of my service contains a large
byte[]. I would like to have the byte[] sent as an attachment. Following some
examples I have implemented this by hand and sent the byte[] as an attachment
and just set the byte[] to null before the response is sent. The clien
Sherman, Dennis (END-CHI) wrote:
If what you wrote below wasn't just sloppy description, your problem is
* jar the .class files, put the jar in /lib
* run the admin client from the directory the .wsdd lives in
Once you've compiled and jar'd your .java files, you've got no need for the
.class files
Here is how I returned a data handler from my web service method (a great resource for
you would be to look at the echoAttachments sampple that comes with Axis) -
My WSSD -
http://schemas.xmlsoap.org/soap/encoding/";
qname="DataHandler"
serializer="org.apache.axis.encoding.ser.JAFDataHand
I also had the same problem. I took off the name space prefixes. This might not be the
solution but that is what I did to get stuff to work. Others might have a better
solution. This is how my WSSD looks like for the service -
http://schemas.xmlsoap.org/soap/encoding/";
qname="DataHandler
Many Thanks,
I have been studying the echoAttachments sample. Unfortunately I want to
adapt the use of attachments to work with my existing assets. I
currently have an operation that has a returnType="CustomBean" this
"CustomBean" has a property that accesses a byte[]. I would like to be
able to m
Soniya,
SOAP should not really care what language is being used inside of the
objects it passes unless you are rendering directly from the SOAP wrapped
objects. Did you try your application without doing anything special?
Best,
Joe
-Original Message-
From: Shah, Soniya M. [mailto:[EMAI
Greg,
To be honest, I don't know the answer to your question off the top of my head, but
this might be of help to you.I have been doing a lot of research on attachments of
late. I have learnt that returning a DataHandler is not a good way because of
interoperability issues. The best practic
Thanks Srinivas,
Funny, my current implementation is as you have outlined.
I thought migrating to use DataHandler's and providing the attachment
support via auto generated WSDL client code would be an improvement. I
was concerned with the language dependant DataHandler Object but figured
it was
This is a great resource that will probably help you -
http://www.javaworld.com/javaworld/jw-09-2003/jw-0912-fop.html?
-Srinivas
-Original Message-
From: Greg Hess [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 11, 2003 2:36 PM
To: [EMAIL PROTECTED]
Subject: RE: Custom mapping's and
I am using the Axis AdminClient to deploy
a service. However I am unable to see the new methods unless I shutdown and
restart Tomcat?
I am undeploying the service before
deploying it with the new interfaces.
Regards
Vijay
I'd like to write an applet that will have to call a Web Service run by
Axis. What jars are required by my applet?
By the way, we have to transfer XML documents back and forth from the
servlet to the applet. Should we use attachment or use a Message service?
Regards.
Olivier.
If you care about interoperability with clients like gSOAP (c++) or MS .NET
your best bet is to not use DataHandlers, DIME, or multipart. For any kind
of binary data / BLOB use old reliable base64Binary objects
We had the fun of interfacing to an axis server that exported image files
as DataHa
If I understood you correctly, you are suggesting that binary data should be encoded
with Base64 inside of the SOAP message itself. Many of the articles I have read have
said that Base64 encoding within the SOAP message is inefficient. For example here
are two articles -
http
Followup to my own posting..somebody please help!.. (please read my posting below..)
-Original Message-
From: I-Sampige, Srinivas
Sent: Monday, November 10, 2003 9:58 PM
To: [EMAIL PROTECTED]
Subject: DIME & WSDL
I wrote a web service to handle attachment inputs from the client and send
ref:
http://marc.theaimsgroup.com/?l=axis-user&m=105650272318648&w=2
i did some modifications to the server method signature, adding string parm
to the Array of DataHandlers.
i did not define any mapping for the encoding of DH[]. rather, i let axis
default to its own mapping for the array and for
Tewari, Vijay wrote:
I am using
the Axis AdminClient to deploy
a service. However I am unable to see the new methods unless I shutdown
and
restart Tomcat?
I am
undeploying the service before
deploying it with the new interfaces.
Regards
Vijay
There is a "r
Look at how the AdminClient -l feature works.
/Chris
-Original Message-
From: rmarti [mailto:[EMAIL PROTECTED]
Sent: Saturday, November 08, 2003 11:51 AM
To: [EMAIL PROTECTED]
Subject: Iterating through services
Hi All,
I have a strange problem and was wondering if there is any ex
I am using Axis 1.1 and I am finding that
BeanSerializer is serializing transients properties. I
have read some old postings in this list that mention
that BeanSerializer should work like Java
serialization. If that is the case, BeanSerializer
should be ignoring transient properties even if they
ha
Rob,
Did you face any interoperability issues when returning the DataHandler array? I am
most specifically interested in C# if possible. I couldn't get a C# client to be
generated for my web service that returns a DataHandler.
Thanks
Srinivas
-Original Message-
From: rob rowntree [mai
Yes, Base64 encoding increases the size of the binary data by 33% over the
pure binary encoding that axis will use for multipart or DataHandler encoding.
It's a tradeoff -- use Base64 and interoperate with all SOAP clients (but
increase server coding effort and message size), use DIME and intero
39 matches
Mail list logo