JeffLeFoll / gwteventservice

An event-based client-server communication framework.
http://code.google.com/p/gwteventservice
Other
3 stars 3 forks source link

Full-qualified properties can't be loaded from web.xml #16

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Define an init-servlet-parameter with the full-qualified "eventservice"
prefix.
2. Start the application

What is the expected output? What do you see instead?
The parameters / properties can be processed the same way as without the
full-qualified prefix. An exception occurs instead, because the
WebDescriptorConfigurationLoader recognizes the properties correctly, but
isn't able to load the values.

See the attached web.xml to reproduce the error.

Original issue reported on code.google.com by sven.strohschein@googlemail.com on 3 Apr 2010 at 7:29

Attachments:

GoogleCodeExporter commented 8 years ago
Fixed in version 1.1.1 (released since 2010-04-03)

Original comment by sven.strohschein@googlemail.com on 3 Apr 2010 at 9:36

GoogleCodeExporter commented 8 years ago
Verified in version 1.1.1

Original comment by sven.strohschein@googlemail.com on 3 Apr 2010 at 9:45

Attachments:

GoogleCodeExporter commented 8 years ago
Is this bug reintroduced in 1.20? 
I'm using 1.2.0 version. The parameters mentioned in web.xml does not have any 
effect, I want to change the max waiting time to 1min. Below is the code 
snippet from my web.xml

<?xml version="1.0" encoding="UTF-8"?>
<servlet>
   <servlet-name>EventService</servlet-name>
   <servlet-class>de.novanic.eventservice.service.EventServiceImpl</servlet-class>
   <init-param>
      <param-name>time.waiting.max</param-name>
      <param-value>60000</param-value>
   </init-param>
   <init-param>
      <param-name>time.waiting.min</param-name>
      <param-value>0</param-value>
   </init-param>
   <init-param>
      <param-name>time.timeout</param-name>
      <param-value>90000</param-value>
   </init-param>
</servlet>

Original comment by kisor.bi...@gmail.com on 28 Jan 2013 at 5:43