ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterMain.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterMain.java (file contents):
Revision 1.36 by tdb, Tue May 21 16:47:17 2002 UTC vs.
Revision 1.37 by tdb, Fri Sep 6 15:10:48 2002 UTC

# Line 197 | Line 197 | public class FilterMain implements Component {
197              // start the FilterServant
198              _logger.write(toString(), Logger.SYSINIT, "starting Servant to listen for downstream filters");
199              FilterServant filterServant = new FilterServant(queue);
200 <            _refman.bindToOrb(filterServant, "iscream.Filter." + FilterMain.NAME);
200 >            _refman.bindToOrb(filterServant, "iscream.Filter\\." + FilterMain.NAME);
201          }
202          
203          // FilterInfoServant start (to provide filter information to the server)
204          _logger.write(toString(), Logger.SYSINIT, "starting Servant to provide filter information");
205          FilterInfoServant filterInfoServant = new FilterInfoServant(TCPListenPort, UDPListenPort);
206 <        _refman.bindToOrb(filterInfoServant, "iscream.FilterInfo." + FilterMain.NAME);
206 >        _refman.bindToOrb(filterInfoServant, "iscream.FilterInfo\\." + FilterMain.NAME);
207          
208          _logger.write(toString(), Logger.SYSINIT, "started");
209      }
# Line 224 | Line 224 | public class FilterMain implements Component {
224              ConfigurationProxy cp = ConfigurationProxy.getInstance();
225              String parentFilterName = cp.getProperty("Filter." + FilterMain.NAME, "Filter.parentFilter");
226              // finally check the parent filter is alive
227 <            obj = _refman.getCORBARef("iscream.Filter." + parentFilterName);
227 >            obj = _refman.getCORBARef("iscream.Filter\\." + parentFilterName);
228          } catch(ComponentCORBAException e) {
229              System.err.println(toString() + ": Dependency Failure: "+e);
230              return false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines