Service S = null, srv = null;
VinciFrame out = new VinciFrame();
String name = in.fgetString("SERVICE");
if (strip(name) == null)
return new ErrorFrame("Invalid service name specified : " + name);
String host = in.fgetString("HOST");
if (strip(host) == null) {
Debug.p("Getting host from socket peer info");
host = in.fgetString("vinci:REMOTEHOST");
if (host == null)
host = in.fgetString("vinci:REMOTEIP");
if (host == null)
return new ErrorFrame("Host could not be parsed - specify HOST");
Debug.p("Peer host is : " + host);
}
String level = in.fgetString("LEVEL");