Ignore:
Timestamp:
Jan 12, 2012 7:41:47 PM (12 years ago)
Author:
Ted Faber <faber@…>
Branches:
compt_changes, info-ops, master
Children:
5bbad08
Parents:
40c599f
Message:

Take url as a parameter for easier testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • axis/MultiStatus.java

    r40c599f rcfc4d68  
    1717            java.rmi.RemoteException {
    1818       
    19         FeddPortType port = getPort("https://users.isi.deterlab.net:23235");
     19        String urlString = "https://users.isi.deterlab.net:23235";
     20
     21        if (args.length > 0) urlString = args[0];
     22
     23        FeddPortType port = getPort(urlString);
    2024        MultiInfoRequestType req = new MultiInfoRequestType();
    2125        MultiInfoResponseType resp = null;
Note: See TracChangeset for help on using the changeset viewer.