webMethods

webMethods

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only

Unable to create temporary file

  • 1.  Unable to create temporary file

    Posted Wed August 14, 2002 11:42 AM

    I am new to use Quip and trying to make a demo of Knowledge Base using XML technology. My problem is why I got this error “Unable to create temporary file” on executing my query in my java applet. Please help.
    By the way, the quip.exe is running properly on DOS prompt and GUI.

    //code from Visual Age for Java 4.0
    private String queryTitle(String sSearch) {

    String sOut = null;
    String sQuery = “\n”;
    sQuery += “for $f in document(‘files.xml’)//file,\n”;
    sQuery += “$t in document($f/text())//title\n”;
    sQuery += “where contains($t/text(),'” + sSearch + “')\n”;
    sQuery += “return\n”;
    sQuery += “\n”;
    sQuery += “{$t}\n”;
    sQuery += “{$f}\n”;
    sQuery += “\n”;
    sQuery += “sortby(title)\n”;
    sQuery += “”;

    StringBuffer strBuff = new StringBuffer();

    strBuff.append(“file://.”);
    prop.put(“quipcmd”,“X:/Quip/quip.exe”);
    prop.put(“home”,“X:/romenhyouji/”);

    try{
    Connection conex = DriverManager.getConnection(strBuff.toString(),(Properties)prop);
    //error occurs here
    QueryResult qres = conex.executeQuery(sQuery);
    sOut = qres.getRawString();

    }catch(XQueryException e){
    JOptionPane.showMessageDialog(this,e.getMessage(),“Error”,JOptionPane.ERROR_MESSAGE);
    }

    return sOut;
    }

    Is the error is on the quip setting? Thank you in advance.
    :frowning: :confused:


    #webMethods
    #API-Management
    #Tamino