7.1 Search String for Indirection

<..search string for xtpipes instruction..>
 scriptFile = inputObject.getXtpipes();
 rootName = inputObject.getRoot();
 needScript = true;
 -_-_-

Remove XtPipesSearch!!!!!!!!!!!!!!  
 try{
        <.get sax reader.>
        saxReader.setContentHandler( new XtPipesSearch() );
       <.body of search string for xtpipes instruction.>
        saxReaderStack.push( saxReader );
 } catch(Exception e){
 e.printStackTrace();
    instructionErr( node, errMsg + e.toString(), 13 );
 } -_-_-

<..body of search string for xtpipes instruction..>
 errMsg = "Searching <?xtpipes file=\"...\"?>  in "
         + inData.substring(0, Math.min(70,inData.length()))
         + "... : ";
 byte [] bytes = inData.getBytes("UTF-8");
 ByteArrayInputStream bais = new ByteArrayInputStream( bytes );
 InputSource is = new InputSource( bais );
 saxReader.parse(is);
 -_-_-