You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Toshiyuki Kimura (JIRA)" <ax...@ws.apache.org> on 2005/02/17 10:10:56 UTC

[jira] Resolved: (AXIS-1815) tcpmon don't support mulit-byte encording

     [ http://issues.apache.org/jira/browse/AXIS-1815?page=history ]
     
Toshiyuki Kimura resolved AXIS-1815:
------------------------------------

    Resolution: Fixed

It should be fixed on the nightly build.
<http://marc.theaimsgroup.com/?l=axis-dev&m=110863046926601&w=2>

Thanks,
Toshi

> tcpmon don't support mulit-byte encording
> -----------------------------------------
>
>          Key: AXIS-1815
>          URL: http://issues.apache.org/jira/browse/AXIS-1815
>      Project: Axis
>         Type: Improvement
>     Versions: 1.2RC2
>     Reporter: Tuyoshi Ushio
>     Assignee: Toshiyuki Kimura

>
> I am a user of tcpmon(TCP Monitor) in Japan. 
> This tool is very cool. 
> but... when I use mulit-byte character in SOAP-Request/Response XML,
> tcpmon don't work well.(ex. Kanji character can't be displayed.)
>  In my environment, I change the code like this.
> #tcpmon.SocketRR.run() method line 761-769
> --------------------------------------------before
>   textArea.append( new String( tmpbuffer, 0, i2 ) );
> // Shift saved bytes to the beginning
>    for ( i = 0 ; i < saved ; i++ ) {
>       buffer[i] = buffer[bufferLen - saved + i];
>    }
> }
>  else {
>      textArea.append( new String( buffer, 0, len ) );
>  }
> ---------------------------------------------after
>  textArea.append( new String( tmpbuffer, 0, i2 , soapEncording) );
>                                                  ^^^^^^^^^^^^^
>  // Shift saved bytes to the beginning
>     for ( i = 0 ; i < saved ; i++ ) {
>       buffer[i] = buffer[bufferLen - saved + i];
>     }
> }
> else {
>   textArea.append( new String( buffer, 0, len , soapEncording) );
>                                                 ^^^^^^^^^^^^^
>  }
> --------------------------------------------------
> I think tcpmon should check xml encording attribute.
> (ex. <?xml version="1.0" encoding="utf-8" standalone="yes"?>)
>                         ^^^^^^^^^^^^^^^^
> bye.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira