From: <tan...@us...> - 2003-01-18 02:10:25
|
Update of /cvsroot/openjms/openjms/src/main/org/exolab/jms/server/http In directory sc8-pr-cvs1:/tmp/cvs-serv2807/src/main/org/exolab/jms/server/http Modified Files: HttpJmsSessionConnection.java Log Message: made createReceiver(), createPublisher(), close() protected so that they can overridde those specified by IpcJmsSessionConnection - not sure how this ever worked in the past... Index: HttpJmsSessionConnection.java =================================================================== RCS file: /cvsroot/openjms/openjms/src/main/org/exolab/jms/server/http/HttpJmsSessionConnection.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** HttpJmsSessionConnection.java 7 Jan 2003 09:29:57 -0000 1.7 --- HttpJmsSessionConnection.java 18 Jan 2003 02:10:21 -0000 1.8 *************** *** 132,136 **** * */ ! private Vector createReceiver(JmsServerSession session, JmsQueue queue, Long consumerId, String selector, MultiplexConnectionIfc not_used, String host, String port, String url) --- 132,136 ---- * */ ! protected Vector createReceiver(JmsServerSession session, JmsQueue queue, Long consumerId, String selector, MultiplexConnectionIfc not_used, String host, String port, String url) *************** *** 167,171 **** * */ ! private Vector createBrowser(JmsServerSession session, JmsQueue queue, Long clientId, String selector, MultiplexConnectionIfc not_used, String host, String port, String url) { --- 167,171 ---- * */ ! protected Vector createBrowser(JmsServerSession session, JmsQueue queue, Long clientId, String selector, MultiplexConnectionIfc not_used, String host, String port, String url) { *************** *** 231,235 **** * */ ! private Vector close(JmsServerSession session) { if (session != null) { try { --- 231,235 ---- * */ ! protected Vector close(JmsServerSession session) { if (session != null) { try { |