Ignore:
Timestamp:
2001-03-14T15:15:38+13:00 (23 years ago)
Author:
say1
Message:

implemented multiway wrapper to allow a client to connect to multiple servers seamlessly

Location:
trunk/java-client/org/nzdl/gsdl/service
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/service/Makefile

    r2157 r2178  
    2525          NzdlLogWrapper.class \
    2626          NzdlDocSaveWrapper.class \
     27          NzdlMultiWayWrapper.class \
    2728          NzdlCacheWrapper.class
    2829
  • trunk/java-client/org/nzdl/gsdl/service/NzdlCollectionInfo.java

    r2163 r2178  
    6969   */
    7070  public String getHTTPPrefix() {
    71     return NzdlCorbaFactory.toString( m_Info.httpprefix) ;
     71    //return m_Info.httpprefix.text.toString();
     72     return NzdlCorbaFactory.toString( m_Info.httpprefix ) ;
    7273  }
    7374
     
    7677   */
    7778  public String getHTTPDomain() {
    78     return NzdlCorbaFactory.toString( m_Info.httpdomain) ;
     79    return NzdlCorbaFactory.toString( m_Info.httpdomain ) ;
     80  }
     81
     82  /**
     83   * Returns reseptionist
     84   */
     85  public String getReceptionist() {
     86    return NzdlCorbaFactory.toString( m_Info.receptionist ) ;
    7987  }
    8088
  • trunk/java-client/org/nzdl/gsdl/service/NzdlWrapper.java

    r2157 r2178  
    5151   */
    5252  public NzdlWrapper(NzdlService service) {
    53     if (service == null)
    54       throw new Error("null service");
    5553    this.service = service;
    5654  }
Note: See TracChangeset for help on using the changeset viewer.