Re: Call with different character encoding

2004-11-23 Thread Bernie Bernstein
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

Re: Call with different character encoding

2004-11-23 Thread Davanum Srinivas
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

Re: Call with different character encoding

2004-11-23 Thread Bernie Bernstein
} 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

Re: Call with different character encoding

2004-11-17 Thread Bernie Bernstein
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

Call with different character encoding

2004-11-17 Thread Peuclid
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

response character encoding

2004-09-08 Thread Maurice Marrink
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

Re: Character encoding woes

2004-05-07 Thread Kjetil Hustveit
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

RE: Character encoding woes

2004-05-06 Thread Samir Shaikh
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

Character encoding woes

2004-05-06 Thread Kjetil Hustveit
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

REPOST: Character encoding problems sending UTF-8 back to client

2004-02-19 Thread Douglas Bitting
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

Character encoding problems sending UTF-8 back to client

2004-02-18 Thread Douglas Bitting
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

RE: Character encoding

2004-01-29 Thread Navneet Joneja
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

Re: Character encoding

2004-01-29 Thread Jens Schumann
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 >

RE: Character encoding

2004-01-29 Thread Michael Serero
: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

RE: Character encoding

2004-01-29 Thread Michael Serero
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

Re: Character encoding

2004-01-28 Thread Jens Schumann
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

RE: Character encoding

2004-01-28 Thread Shah, Soniya M. [RA]
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

RE: Character encoding

2004-01-28 Thread Michael Serero
;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

RE: Character encoding

2004-01-28 Thread Shah, Soniya M. [RA]
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

Re: Character encoding

2004-01-28 Thread Jens Schumann
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

RE: Character encoding

2004-01-27 Thread Michael Serero
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:

Re: Character encoding

2004-01-21 Thread Nelson Minar
>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

Character encoding

2004-01-20 Thread Michael Serero
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

Change character encoding

2004-01-09 Thread Francisco Javier Téllez Vaquero
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.

RE: Change character encoding

2004-01-09 Thread Enrique Rodríguez
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

Re: Change character encoding

2004-01-09 Thread Francisco Javier Téllez Vaquero
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.

RE: Change character encoding

2004-01-09 Thread Enrique Rodriguez
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

Change character encoding

2004-01-09 Thread Francisco Javier Téllez Vaquero
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.

Re: Character encoding problems

2003-10-25 Thread Stephen Gordon
. 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

Character encoding problems

2003-10-25 Thread Julius Hufancia
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

RE: Character Encoding other than UTF-8 with SwA

2003-06-30 Thread Laenzlinger, Christof
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

Character Encoding other than UTF-8 with SwA

2003-06-24 Thread Laenzlinger, Christof
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