--

At 06:46 PM 6/28/99 -0700, you wrote:

Java properties are <label>=<string>.
In the files mentioned, there are things like initArgs that require a
*second* equal sign:

servlet.foo.initArgs=first=foo1.bar
servlet.foo.initArgs=second=foo2.bar

The result (to JServ) is the same as

foo.initArgs=first=foo1.bar,second=foo2.bar
                                  ^
                                  |
                                  + -- maybe you are missing this equal sign


or have not escaped an end of line
WRONG:
    foo.initArgs=first=foo1.bar,
              second=foo2.bar

RIGHT:
    foo.initArgs=first=foo1.bar,\
        second=foo2.bar



>--
>
>Hi,
>
>I have gone through both files and cannot find the notorious ','. Does anyone
>have any other suggestions?
>
>Thanks,
>
>charles
>
>jon * wrote:
>
>> --
>>
>> > Does anyone know in which properties file it is finding the ','  ?
>>
>> either jserv.properties or zone.properties. both should be located in your
>> Apache JServ/conf directory.
>>
>> -jon
>>
>> --
>> --------------------------------------------------------------
>> To subscribe:        [EMAIL PROTECTED]
>> To unsubscribe:      [EMAIL PROTECTED]
>> READ THE FAQ!!!!     <http://java.apache.org/faq/>
>> Archives and Other:  <http://java.apache.org/main/mail.html/>
>> Problems?:           [EMAIL PROTECTED]
>
>
>
>--
>--------------------------------------------------------------
>To subscribe:        [EMAIL PROTECTED]
>To unsubscribe:      [EMAIL PROTECTED]
>READ THE FAQ!!!!     <http://java.apache.org/faq/>
>Archives and Other:  <http://java.apache.org/main/mail.html/>
>Problems?:           [EMAIL PROTECTED]
>
>
---
Michael Stacey
Lexi-Comp, Inc.
1100 Terex Road
Hudson OH 44236
(330) 650-6506


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
READ THE FAQ!!!!     <http://java.apache.org/faq/>
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to