IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

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

TaminoClient often throws TaminoError with responseCode 8400

  • 1.  TaminoClient often throws TaminoError with responseCode 8400

    Posted Mon October 29, 2001 11:08 AM

    What does this mean? The problem often, not always, occurs when reading a single Element which is bigger than 87KB.

    The code is:

    try{
    TaminoClient tamino = new TaminoClient(/Col);
    tamino.setPageSize(0);
    tamino.startSession();
    TaminoResult tr = tamino.query(Xpath);
    if ( null == tr) {
    System.out.println( “result is null”);
    }
    tamino.endSession();
    return tr.getResult();
    } catch (TaminoError e) {
    System.out.println("Err.Text " +e.errorText);
    System.out.println("Resp.Code " + e.responseCode);
    return null;
    }

    The result is:
    Err.Text HTTP error -1
    Resp.Code 8400
    result is null

    Has anyone any idea what is going on? And what can I do to resolve the problem?


    #webMethods
    #webMethods-Tamino-XML-Server-APIs
    #API-Management