* @param origIS
* the instance of InputStream that needs to be remoted
* @return the placeholder object that is sent to the actual client
*/
private InputStreamHandle getInputStreamPlaceholder(final InputStream origIS) {
final InputStreamHandle sp = new InputStreamHandle(nextStreamID());
streams.put(new Integer(sp.getStreamID()), origIS);
return sp;
}