/// @throws IOError if error occurred
public static final Object[] p_get = { null, "filename" };
public Any m_get(Context context, String filename)
{
try {
return new AnyInputStream(_client.get(filename));
} catch (IOException e) {
throw context.exception(e);
}
}