Ignore:
Timestamp:
2004-12-21T15:39:56+13:00 (19 years ago)
Author:
schweer
Message:

debugging-stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/AlertingService.java

    r8867 r8870  
    8080        }
    8181       
    82         // TODO stop this, we need multi-valued stuff
    8382        args = normalise(args);
    8483       
     
    254253            event.put(key, value[0]);
    255254        }
     255        System.out.println("receiving event " + event);
    256256       
    257257        GreenstoneCommunicator gsComm = null;
    258258        try {
    259             gsComm = new GreenstoneCommunicator(new URL((String) event.get("hostID")));
     259            String hostID = (String) event.get("hostID");
     260            gsComm = new GreenstoneCommunicator(new URL(hostID));
    260261        } catch (MalformedURLException e) {
    261262            // TODO Auto-generated catch block
Note: See TracChangeset for help on using the changeset viewer.