You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by chu <ch...@bud.co.jp> on 2005/01/13 09:01:06 UTC

xml error when boot up Tomcat

Hi, 

I am new on Axis & Tocmcat. I just followed the Axis 
Installation Instructions to install Axis1.2RC2 with Tomcat 5.5. And I
had the following errors when I boot up Tomcat

....
2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
INFO: XML検証は無効です <-- XML invalid verification
- Exception:
org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
Invalid byte 1 of 1-byte UTF-8 sequence.
java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
Source)
        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
Source)
        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
Source)
        at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
 Source)
        at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
own Source)
        at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
....

Any helps are appreciated.

Thanks & Regards


Re: [axis-user-ja digest] xml error when boot up Tomcat

Posted by Toshiyuki Kimura <to...@apache.org>.
dims,

  True, the primary cause of the exception is a potential bug of Axis
but it's too hard to find out an ultimate solution for non-ASCII env.
Because, it's not an issue only for Axis. I mean we have to dive into
a number of application server configurations also.

  This time, the reporter tested with Tomcat 5.5.4 w/ Japanese folder.
In fact, it seemed that the version of Tomcat also has a problem on
loading classes from the Japanese folder.
  So, I said not "it's a bug", but "you'd better use ASCII-based folder"
at this time.

   For fixing the UTFDataFormatException, we just save the config file -
'server-config.wsdd' as REAL UTF-8 characters.

I'll file a bug rep later. Then, following up on axis-dev.

Thanks,
Toshi <to...@apache.org>

On Wed, 19 Jan 2005, Davanum Srinivas wrote:

> Toshi,
>
> You need to figure this one out :) or ask ias/jongjin for help :) :)
> As always, start with a JIRA bug report.
>
> -- dims
>
> PS: i have no idea how to start fixing this one.
>
> On Tue, 18 Jan 2005 21:36:27 -0800 (PST), Toshiyuki Kimura
> <to...@apache.org> wrote:
>> Hi folks,
>>
>>   This is a digest report from the Japanese Axis User community.
>>
>> The followings are the scenario of the UTFDataFormatException:
>>
>>   1. He installed TOMCAT to a folder which includes non-ASCII
>>      charactors.
>>   2. The folder name was used in axis/WEB-INF/server-config.wsdd
>>      to specify "attachments.Directory".
>>   3. The file indicated its encoding type as "UTF-8" in the top
>>      of the file - '<?xml version="1.0" encoding="UTF-8"?>'.
>>   4. But, the _real_ encoding of the file was not UTF-8.
>>
>>    After (re)saving the file as UTF-8 by using notepad, the boot
>> error (java.io.UTFDataFormatException) has solved.
>>
>>    But, after that, he still has faced a number of class loading
>> problems. So, he reinstalled TOMCAT and Axis to an ASCII-based
>> folder. Finally, he could work with Axis.
>>
>> Thanks,
>> Toshi <to...@apache.org>
>>
>> On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:
>>
>>> This thread has moved to axis-user-ja@ws.a.o.
>>> I'll be back with a summary when it's solved.
>>>
>>> Thanks,
>>> Toshi <to...@apache.org>
>>>
>>> On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:
>>>
>>>> Chu,
>>>>
>>>> Can you post 'server-config.wsdd' in webapps\axis\WEB-INF ?
>>>> I guess that the file includes something invalid.
>>>>
>>>> OTOH, it may be as well to put your system detail (OS, JVM etc)
>>>> if you want to have more feedbacks.
>>>>
>>>> Thanks,
>>>> Toshi <to...@apache.org>
>>>>
>>>> On Thu, 13 Jan 2005, chu wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I am new on Axis & Tocmcat. I just followed the Axis
>>>>> Installation Instructions to install Axis1.2RC2 with Tomcat 5.5.
>>>>> And I had the following errors when I boot up Tomcat
>>>>>
>>>>> ....
>>>>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
>>>>> INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
>>>>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
>>>>> INFO: XML検証は無効です <-- XML invalid verification
>>>>> - Exception:
>>>>> org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
>>>>> Invalid byte 1 of 1-byte UTF-8 sequence.
>>>>> java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
>>>>>        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
>>>>> Source)
>>>>>        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
>>>>>        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
>>>>>        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
>>>>> Source)
>>>>>        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
>>>>> Source)
>>>>>        at
>>>>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
>>>>> Source)
>>>>>        at
>>>>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
>>>>> own Source)
>>>>>        at
>>>>> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
>>>>> ....
>>>>>
>>>>> Any helps are appreciated.
>>>>>
>>>>> Thanks & Regards
>>>>>
>>>>
>>>
>>
>
>
> -- 
> Davanum Srinivas - http://webservices.apache.org/~dims/
>

Re: [axis-user-ja digest] xml error when boot up Tomcat

Posted by Davanum Srinivas <da...@gmail.com>.
Toshi,

You need to figure this one out :) or ask ias/jongjin for help :) :)
As always, start with a JIRA bug report.

-- dims

PS: i have no idea how to start fixing this one.


On Tue, 18 Jan 2005 21:36:27 -0800 (PST), Toshiyuki Kimura
<to...@apache.org> wrote:
> Hi folks,
> 
>   This is a digest report from the Japanese Axis User community.
> 
> The followings are the scenario of the UTFDataFormatException:
> 
>   1. He installed TOMCAT to a folder which includes non-ASCII
>      charactors.
>   2. The folder name was used in axis/WEB-INF/server-config.wsdd
>      to specify "attachments.Directory".
>   3. The file indicated its encoding type as "UTF-8" in the top
>      of the file - '<?xml version="1.0" encoding="UTF-8"?>'.
>   4. But, the _real_ encoding of the file was not UTF-8.
> 
>    After (re)saving the file as UTF-8 by using notepad, the boot
> error (java.io.UTFDataFormatException) has solved.
> 
>    But, after that, he still has faced a number of class loading
> problems. So, he reinstalled TOMCAT and Axis to an ASCII-based
> folder. Finally, he could work with Axis.
> 
> Thanks,
> Toshi <to...@apache.org>
> 
> On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:
> 
> > This thread has moved to axis-user-ja@ws.a.o.
> > I'll be back with a summary when it's solved.
> >
> > Thanks,
> > Toshi <to...@apache.org>
> >
> > On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:
> >
> >> Chu,
> >>
> >> Can you post 'server-config.wsdd' in webapps\axis\WEB-INF ?
> >> I guess that the file includes something invalid.
> >>
> >> OTOH, it may be as well to put your system detail (OS, JVM etc)
> >> if you want to have more feedbacks.
> >>
> >> Thanks,
> >> Toshi <to...@apache.org>
> >>
> >> On Thu, 13 Jan 2005, chu wrote:
> >>
> >>> Hi,
> >>>
> >>> I am new on Axis & Tocmcat. I just followed the Axis
> >>> Installation Instructions to install Axis1.2RC2 with Tomcat 5.5.
> >>> And I had the following errors when I boot up Tomcat
> >>>
> >>> ....
> >>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
> >>> INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
> >>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
> >>> INFO: XML検証は無効です <-- XML invalid verification
> >>> - Exception:
> >>> org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
> >>> Invalid byte 1 of 1-byte UTF-8 sequence.
> >>> java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
> >>>        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
> >>> Source)
> >>>        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
> >>>        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
> >>>        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
> >>> Source)
> >>>        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
> >>> Source)
> >>>        at
> >>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
> >>> Source)
> >>>        at
> >>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
> >>> own Source)
> >>>        at
> >>> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
> >>> ....
> >>>
> >>> Any helps are appreciated.
> >>>
> >>> Thanks & Regards
> >>>
> >>
> >
> 


-- 
Davanum Srinivas - http://webservices.apache.org/~dims/

[axis-user-ja digest] xml error when boot up Tomcat

Posted by Toshiyuki Kimura <to...@apache.org>.
Hi folks,

  This is a digest report from the Japanese Axis User community.

The followings are the scenario of the UTFDataFormatException:

  1. He installed TOMCAT to a folder which includes non-ASCII
     charactors.
  2. The folder name was used in axis/WEB-INF/server-config.wsdd
     to specify "attachments.Directory".
  3. The file indicated its encoding type as "UTF-8" in the top
     of the file - '<?xml version="1.0" encoding="UTF-8"?>'.
  4. But, the _real_ encoding of the file was not UTF-8.

   After (re)saving the file as UTF-8 by using notepad, the boot
error (java.io.UTFDataFormatException) has solved.

   But, after that, he still has faced a number of class loading
problems. So, he reinstalled TOMCAT and Axis to an ASCII-based
folder. Finally, he could work with Axis.

Thanks,
Toshi <to...@apache.org>

On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:

> This thread has moved to axis-user-ja@ws.a.o.
> I'll be back with a summary when it's solved.
>
> Thanks,
> Toshi <to...@apache.org>
>
> On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:
>
>> Chu,
>> 
>> Can you post 'server-config.wsdd' in webapps\axis\WEB-INF ?
>> I guess that the file includes something invalid.
>> 
>> OTOH, it may be as well to put your system detail (OS, JVM etc)
>> if you want to have more feedbacks.
>> 
>> Thanks,
>> Toshi <to...@apache.org>
>> 
>> On Thu, 13 Jan 2005, chu wrote:
>> 
>>> Hi,
>>> 
>>> I am new on Axis & Tocmcat. I just followed the Axis
>>> Installation Instructions to install Axis1.2RC2 with Tomcat 5.5.
>>> And I had the following errors when I boot up Tomcat
>>> 
>>> ....
>>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
>>> INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
>>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
>>> INFO: XML検証は無効です <-- XML invalid verification
>>> - Exception:
>>> org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
>>> Invalid byte 1 of 1-byte UTF-8 sequence.
>>> java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
>>>        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
>>> Source)
>>>        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
>>>        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
>>>        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
>>> Source)
>>>        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
>>> Source)
>>>        at
>>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
>>> Source)
>>>        at
>>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
>>> own Source)
>>>        at
>>> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
>>> ....
>>> 
>>> Any helps are appreciated.
>>> 
>>> Thanks & Regards
>>> 
>> 
>

Re: xml error when boot up Tomcat

Posted by Toshiyuki Kimura <to...@apache.org>.
  This thread has moved to axis-user-ja@ws.a.o.
I'll be back with a summary when it's solved.

Thanks,
Toshi <to...@apache.org>

On Thu, 13 Jan 2005, Toshiyuki Kimura wrote:

> Chu,
>
> Can you post 'server-config.wsdd' in webapps\axis\WEB-INF ?
> I guess that the file includes something invalid.
>
> OTOH, it may be as well to put your system detail (OS, JVM etc)
> if you want to have more feedbacks.
>
> Thanks,
> Toshi <to...@apache.org>
>
> On Thu, 13 Jan 2005, chu wrote:
>
>> 
>> Hi,
>> 
>> I am new on Axis & Tocmcat. I just followed the Axis
>> Installation Instructions to install Axis1.2RC2 with Tomcat 5.5.
>> And I had the following errors when I boot up Tomcat
>> 
>> ....
>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
>> INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
>> 2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
>> INFO: XML検証は無効です <-- XML invalid verification
>> - Exception:
>> org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
>> Invalid byte 1 of 1-byte UTF-8 sequence.
>> java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
>>        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
>> Source)
>>        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
>>        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
>>        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
>> Source)
>>        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
>> Source)
>>        at
>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
>> Source)
>>        at
>> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
>> own Source)
>>        at
>> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
>> ....
>> 
>> Any helps are appreciated.
>> 
>> Thanks & Regards
>> 
>

Re: xml error when boot up Tomcat

Posted by Toshiyuki Kimura <to...@apache.org>.
Chu,

  Can you post 'server-config.wsdd' in webapps\axis\WEB-INF ?
I guess that the file includes something invalid.

OTOH, it may be as well to put your system detail (OS, JVM etc)
if you want to have more feedbacks.

Thanks,
Toshi <to...@apache.org>

On Thu, 13 Jan 2005, chu wrote:

>
> Hi,
>
> I am new on Axis & Tocmcat. I just followed the Axis
> Installation Instructions to install Axis1.2RC2 with Tomcat 5.5.
> And I had the following errors when I boot up Tomcat
>
> ....
> 2005/01/13 16:17:31 org.apache.catalina.core.StandardEngine start
> INFO: Starting Servlet Engine: Apache Tomcat/5.5.4
> 2005/01/13 16:17:31 org.apache.catalina.core.StandardHost start
> INFO: XML検証は無効です <-- XML invalid verification
> - Exception:
> org.apache.axis.ConfigurationException: java.io.UTFDataFormatException:
> Invalid byte 1 of 1-byte UTF-8 sequence.
> java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence.
>        at org.apache.xerces.impl.io.UTF8Reader.invalidByte(Unknown
> Source)
>        at org.apache.xerces.impl.io.UTF8Reader.read(Unknown Source)
>        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)
>        at org.apache.xerces.impl.XMLEntityScanner.scanLiteral(Unknown
> Source)
>        at org.apache.xerces.impl.XMLScanner.scanAttributeValue(Unknown
> Source)
>        at
> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanAttribute(Unknown
> Source)
>        at
> org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
> own Source)
>        at
> org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
> ....
>
> Any helps are appreciated.
>
> Thanks & Regards
>