History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: ENT-107
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Daniel Henninger
Reporter: Kevin Williams
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Openfire Enterprise

delete chat from fastpath refers to jlaSession table instead of fpSession table (new name)

Created: 04/16/07 11:43 AM   Updated: 12/20/07 02:08 PM
Component/s: Fastpath
Affects Version/s: 3.3.0
Fix Version/s: 3.4.3

Time Tracking:
Not Specified

Support Plan Customer Issue: No
Resolution Date: 12/20/07 02:08 PM
Acceptance Test - Add?: No


 Description  « Hide
Reported by customer:

When trying to delete a previous chat from the fast path tab... it
appears to be successful but the record does not delete... this is due
to you code trying to delete from jlaSession (the old name) instead of
fpSession. This should be a very quick fix.

Problem:

chat-summary.jsp, line 76:

pstmt = con.prepareStatement("delete from jlaSession where sessionID=?");

Change "delete from jlaSession where sessionID=?" to "delete from
fpSession where sessionID=?"

Additional customer comment:
It looks like you may also need to delete records from fpSessionMetadata
and possibly fpSessionProp.



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Daniel Hacquebord - 04/16/07 11:51 AM
I believe that records from the the following should be deleted:

fpSession
fpSessionMetadata
fpSessionProp (is this table used?)
fpAgentSession

Daniel Hacquebord