I just submitted it to JIRA:
http://nagoya.apache.org/jira/browse/AXIS-1682
thanks for the help.
Bernie
On Nov 23, 2004, at 6:58 PM, Davanum Srinivas wrote:
Looks like a useful change...can you please open a JIRA enhancement
request?
dims
On Tue, 23 Nov 2004 13:55:32 -0500, Bernie Bernstein
<[EMA
ING));
> }
> setRequestMessage( msg );
>
> I'm new to the Axis project group. Is there an appropriate way to
> submit this for insertion into the project? Perhaps there is a better
> way to do this that I haven't heard of yet, but I haven't foun
}
setRequestMessage( msg );
I'm new to the Axis project group. Is there an appropriate way to
submit this for insertion into the project? Perhaps there is a better
way to do this that I haven't heard of yet, but I haven't found one
yet. This code will make i
I managed to do it by copy/pasting some code from
org.apache.axis.client.Call.
It wasn't easy, but it involved creating a new Message object, setting
it's char encoding to "ISO-8859-1", and then assembling the envelope to
send to Call.
Then to deal with the response, the code needed to get the
We have a service set up which is working fine so far, but now our
client is requesting that we return our data in ISO-8859-1 instead of
UTF-8.
I've suggested that we stick with UTF-8 since it is more flexible, but
it seems that their system isn't able to handle UTF-8 for some reason.
In most
Hi,
Is there a way to force axis to use a character encoding for the response.
In the doGet from axisservlet the writer is "created" with
response.getWriter();
The default encoding for this writer is latin 1, I need it to be utf-8
because my soap message contains characters like
s when the jvm is invoked.
-Dfile.encoding=ISO-8859-1
-Original Message-
From: Kjetil Hustveit [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 06, 2004 9:01 AM
To: [EMAIL PROTECTED]
Subject: Character encoding woes
How can one change the character encoding from UTF-8 to ISO-8859-1? I'm
developing a sm
Try to pass the options when the jvm is invoked.
-Dfile.encoding=ISO-8859-1
-Original Message-
From: Kjetil Hustveit [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 06, 2004 9:01 AM
To: [EMAIL PROTECTED]
Subject: Character encoding woes
How can one change the character encoding from UTF
How can one change the character encoding from UTF-8 to ISO-8859-1? I'm
developing a small and simple webservice, and it's a bit annoying that
I'm using more time figuring out how to change the character encoding
than actually write the service, Unfortunately ISO-8859-1 output is a
I apologize if this has come across already, but I still haven't seen it on the
mailing list after 18 hours.
All,
I can't really figure out if I'm doing something wrong here or if there is a defect
involved. Basically, I have a Japanese string that I'm attempting
to send back to the client. H
All,
I can't really figure out if I'm doing something wrong here or if there is a defect
involved. Basically, I have a Japanese string that I'm attempting
to send back to the client. However, when the client receives the string, it is
mangled beyond repair. I've put together a small test case
Axis User; Michael Serero
Subject: Re: Character encoding
1.1 RC1 encoding is horribly broken. Please use at least 1.1, or better
current 1.2 Alpha.
Jens
On 1/29/04 10:01 PM Michael Serero <[EMAIL PROTECTED]> wrote:
> I found the release-note file in my axis installation.
> I am using 1.1
tant to upgrade to 1.2 because we are
> finishing a QA cycle on our app.
>
> Michael
>
> -Original Message-
> From: Michael Serero [mailto:[EMAIL PROTECTED]
> Sent: Thursday, January 29, 2004 12:39 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Character encoding
>
:39 PM
To: [EMAIL PROTECTED]
Subject: RE: Character encoding
Jens,
I tend to aggree with you. That doesn't look like the right way of fixing
it.
However I am lucky because my app only reads/write XML files in UTF-8
encoding.
I have a silly question though: How do I check the version of my
t: Re: Character encoding
On 1/28/04 8:57 PM Michael Serero <[EMAIL PROTECTED]> wrote:
> Soniya,
>
> You are a star! You made my day!
>
To be honest, this sounds like a dirty workaround and might introduce a lot
of other problems (while reading files which aren't UTF-8, beca
On 1/28/04 8:57 PM Michael Serero <[EMAIL PROTECTED]> wrote:
> Soniya,
>
> You are a star! You made my day!
>
To be honest, this sounds like a dirty workaround and might introduce a lot
of other problems (while reading files which aren't UTF-8, because they were
written by non java applications
PROTECTED]
Subject: RE: Character encoding
Soniya,
You are a star! You made my day!
Changing the default encoding in the JVM on both the client and server
worked beautifully. I don't know if your second tip works. I am not using
weblogic.
Surely there must be a way to tell Axis to use the
;Axis User '
Subject: RE: Character encoding
You could add following lines in your client or server code:
Properties pi = System.getProperties();
pi.put("file.encoding", "UTF-8");
System.setProperties(pi);
If this does not work try following:
for the client
for client and server.
Soniya
-Original Message-
From: Jens Schumann
To: Axis User
Sent: 1/28/2004 4:00 AM
Subject: Re: Character encoding
On 1/27/04 10:20 PM Michael Serero <[EMAIL PROTECTED]> wrote:
> Nelson,
>
> Thanks for your reply. Do you have any suggestion on how to
On 1/27/04 10:20 PM Michael Serero <[EMAIL PROTECTED]> wrote:
> Nelson,
>
> Thanks for your reply. Do you have any suggestion on how to convert CP1252
> to UTF-8?
>
> I have tried something along the following lines:
>
> String myString = "The CP1252 string";
> Charset cs = Charset.forName("UTF
IL PROTECTED]
Sent: Tuesday, January 20, 2004 4:16 PM
To: [EMAIL PROTECTED]
Subject: Re: Character encoding
>When I send a SOAP request to my server if one of the String contains a
>smart quotes () the server generates the following parsing error:
>org.xml.sax.SAXParseException:
>When I send a SOAP request to my server if one of the String contains a
>smart quotes () the server generates the following parsing error:
>org.xml.sax.SAXParseException: Character conversion error: "Unconvertible
>UTF-8 character beginning with 0x93" (line number may be too low).
I'm not positi
Yet another character encoding issue!
When I send a SOAP request to my server if one of the String contains a
smart quotes () the server generates the following parsing error:
org.xml.sax.SAXParseException: Character conversion error: "Unconvertible
UTF-8 character beginning with 0x93&q
How I can change the character encoding from 'utf-8' to 'iso-8859-1' in
the calls generated from axis?.
If someone can give me any idea I would be very very grateful.
Best Regards, Fran.
There were various clases and i dont remember they.
It was not very dificult
Sorry.
-Mensaje original-
De: Francisco Javier Téllez Vaquero
[mailto:[EMAIL PROTECTED]
Enviado el: viernes, 09 de enero de 2004 12:50
Para: [EMAIL PROTECTED]
Asunto: Re: Change character encoding
Ok, but
o Javier Tellez Vaquero
> [mailto:[EMAIL PROTECTED]
> Enviado el: viernes, 09 de enero de 2004 12:15
> Para: [EMAIL PROTECTED]
> Asunto: Change character encoding
>
> How I can change the character encoding from 'utf-8' to 'iso-8859-1' in
> the calls generated from axis?.
> If someone can give me any idea I would be very very grateful.
>
> Best Regards, Fran.
is in the "other" side... but i'm not very
sure.
Regards Enrique.
-Mensaje original-
De: Francisco Javier Tellez Vaquero
[mailto:[EMAIL PROTECTED]
Enviado el: viernes, 09 de enero de 2004 12:15
Para: [EMAIL PROTECTED]
Asunto: Change character encoding
How I can change th
How I can change the character encoding from 'utf-8' to 'iso-8859-1' in
the calls generated from axis?.
If someone can give me any idea I would be very very grateful.
Best Regards, Fran.
.
But when we get our data from the server through SOAP, "Broken pipe" occurs
in our server.
SAXParseException occurs in our client.
The trace in our client has this message, "Illegal XML character ".
We have tried several character encoding methods.
Still, the error occurs.
Hop
uot;Illegal XML character ".
We have tried several character encoding methods.
Still, the error occurs.
Hope you can help us on this one.
Thanks.
Julius Hufancia
Title: RE: Character Encoding other than UTF-8 with SwA
Hallo Peter,
I have just done a very ugly quick fix by rebuilding
Axis with changed encoding constants in the below
mentionend classes and it worked correctly.
I am quite new to Axis therefore I don't know how a
more configu
Title: Character Encoding other than UTF-8 with SwA
We are using an Axis (Axis 1.1 final) client to send SOAP Messages with attachments.
I was trying to find out how it might be possible to change the
character encoding of the SOAP part to something other than UTF-8.
By looking at the
32 matches
Mail list logo