[JBoss JIRA] Assigned: (JBESB-65) Tidy-up ESB common structure
by Mark Little (JIRA)
[ http://jira.jboss.com/jira/browse/JBESB-65?page=all ]
Mark Little reassigned JBESB-65:
--------------------------------
Assignee: Johan Kumps (was: Mark Little)
> Tidy-up ESB common structure
> ----------------------------
>
> Key: JBESB-65
> URL: http://jira.jboss.com/jira/browse/JBESB-65
> Project: JBoss ESB
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Documentation, ESB Core
> Affects Versions: 4.0 Alpha 1
> Reporter: Mark Little
> Assigned To: Johan Kumps
> Priority: Minor
> Fix For: 4.0 Beta 1
>
>
> - common\src\org\jboss\soa\esb\common\EsbSysProps.java
> 1) Needs name changing, that could imply we need a generic System/Configuration/Property management component/
> 2) Need to standardise naming and casing:
> jbossEsb.mail.smtp.host to (example) jboss.soa.esb.endpoint.email.host this provides a structured / 'packaged' grouped property.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
20 years
[JBoss JIRA] Created: (JBPM-697) The "business days" value for "due date" attribute of "task" node does not work properly.
by Amit Verma (JIRA)
The "business days" value for "due date" attribute of "task" node does not work properly.
-----------------------------------------------------------------------------------------
Key: JBPM-697
URL: http://jira.jboss.com/jira/browse/JBPM-697
Project: JBoss jBPM
Issue Type: Bug
Components: Core Engine
Environment: Windows XP
Reporter: Amit Verma
Assigned To: Tom Baeyens
Priority: Minor
The "business days" value for "due date" attribute of "task" node does not work properly. Hence the due date field of task instance does not show the correct value
The problem is with add method of DayPart class.
When we change the way dayPartEndDate object is being created FROM
Date dayPartEndDate = new Date(date.getTime() + duration.milliseconds) ;
TO
Date dayPartEndDate = new Date(date.getTime() + millisecondsInThisDayPart );
the add method works properly
The variable "millisecondsInThisDayPart" represents the duration of dayPart not duration.milliseconds, which represent the entire duration scheduled for the task
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
20 years
[JBoss JIRA] Commented: (EJBTHREE-420) redeploy of TreeCached entities fails
by Erica Kane (JIRA)
[ http://jira.jboss.com/jira/browse/EJBTHREE-420?page=comments#action_12339720 ]
Erica Kane commented on EJBTHREE-420:
-------------------------------------
Is there a work-around for this, other than restarting JBoss? Stopping the TreeCache service does not appear to flush the entries, and the evict function does not work on the JMX console (at least the HTML version).
> redeploy of TreeCached entities fails
> -------------------------------------
>
> Key: EJBTHREE-420
> URL: http://jira.jboss.com/jira/browse/EJBTHREE-420
> Project: EJB 3.0
> Issue Type: Bug
> Affects Versions: EJB 3.0 RC3
> Reporter: Bill Burke
> Assigned To: Bill Burke
> Fix For: EJB 3.0 RC9 - FD
>
>
> 2006-01-20 15:14:19,843 INFO [STDOUT] org.hibernate.PropertyAccessException: exception getting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) getter of com.airit.fidsdb.entity.ArrPrevPortPK.?
> at org.hibernate.tuple.PojoComponentTuplizer.getPropertyValues(PojoComponentTuplizer.java:79)
> at org.hibernate.type.ComponentType.getPropertyValues(ComponentType.java:307)
> at org.hibernate.type.ComponentType.isEqual(ComponentType.java:111)
> at org.hibernate.cache.CacheKey.equals(CacheKey.java:51)
> at org.jboss.cache.Fqn.equals(Fqn.java:134)
> at java.util.HashMap.eq(HashMap.java:277)
> at java.util.HashMap.containsKey(HashMap.java:346)
> at org.jboss.cache.eviction.LRUAlgorithm.add(LRUAlgorithm.java:126)
> at org.jboss.cache.eviction.LRUAlgorithm.processAddedNodes(LRUAlgorithm.java:99)
> at org.jboss.cache.eviction.LRUAlgorithm.processQueues(LRUAlgorithm.java:77)
> at org.jboss.cache.eviction.LRUAlgorithm.process(LRUAlgorithm.java:52)
> at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:37)
> at java.util.TimerThread.mainLoop(Timer.java:512)
> at java.util.TimerThread.run(Timer.java:462)
> Caused by: java.lang.ClassCastException: com.airit.fidsdb.entity.ArrPrevPortPK
> at com.airit.fidsdb.entity.ArrPrevPortPK$$BulkBeanByCGLIB$$8b6b36b9.getPropertyValues(<generated>)
> at net.sf.cglib.beans.BulkBean.getPropertyValues(BulkBean.java:48)
> at org.hibernate.tuple.PojoComponentTuplizer.getPropertyValues(PojoComponentTuplizer.java:76)
> ... 13 more
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
20 years
[JBoss JIRA] Commented: (JBESB-67) Improve mail configuration
by Johan Kumps (JIRA)
[ http://jira.jboss.com/jira/browse/JBESB-67?page=comments#action_12339717 ]
Johan Kumps commented on JBESB-67:
----------------------------------
EsbEmail refactored to Email
Removed DomElement dependancy
Parameters like hostname, port can be set using accessor methods
A send() method is introduced to send the email. The constructor cannot be used when properties are being set using mutator methods.
> Improve mail configuration
> --------------------------
>
> Key: JBESB-67
> URL: http://jira.jboss.com/jira/browse/JBESB-67
> Project: JBoss ESB
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Documentation, ESB Core
> Affects Versions: 4.0 Alpha 1
> Reporter: Mark Little
> Assigned To: Johan Kumps
> Fix For: 4.0 Beta 1
>
>
> - common\src\org\jboss\soa\esb\helpers\EsbEmail.java
> 1) Refactor
> - to take paramters like host, name, port
> - Rename (remove Esb prefix)
> - provide mutator/accessor/get/set methods, don't put all in constructor
> 2) Remove dependency on DomElement
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
20 years