Examples of MessageLogEntry


Examples of com.xmultra.log.MessageLogEntry

     */
    boolean init(InitMapHolder imh, Node watchedProceduresNode){

        this.logger = (Logger)imh.getEntry(InitMapHolder.LOGGER);
        this.errEntry = new ErrorLogEntry(this, DbUtils.VERSION);
        this.msgEntry = new MessageLogEntry(this, DbUtils.VERSION);

        this.xmlParseUtils =
            (XmlParseUtils)imh.getEntry(InitMapHolder.XML_PARSE_UTILS);

        // Get information about database procedures for which we will
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

    nim = (Nim) initMapHolder.getEntry(InitMapHolder.NIM);

    tagPatterns = new HashMap();

    errEntry = new ErrorLogEntry(this, VERSION);
    msgEntry = new MessageLogEntry(this, VERSION);

    FileUtils fileUtils =
        (FileUtils) initMapHolder.getEntry(
        InitMapHolder.FILE_UTILS);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

    public HttpReader(Logger log) {

        this.logger = log;

        msgEntry = new MessageLogEntry(this, VERSION);
    }
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

                    buffer.append( (char)character );
                }
                in.close();
            }
            catch (IOException ioe) {
                msgEntry = new MessageLogEntry(this, VERSION);
                msgEntry.setAppContext("getPage()");
                msgEntry.setMessageText("IOException getting " + urlString);
                msgEntry.setError( ioe.getMessage() );
                logger.logWarning(msgEntry);
            }
            catch (Exception e) {
                msgEntry = new MessageLogEntry(this, VERSION);
                msgEntry.setAppContext("getPage()");
                msgEntry.setMessageText("Exception getting " + urlString);
                msgEntry.setError( e.getMessage() );
                logger.logWarning(msgEntry);
            }
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

                }
                catch (IOException ioe) {
                    // Report problem only on the last attempt.

                    if (attempt == maxTries) {
                        msgEntry = new MessageLogEntry(this, VERSION);
                        msgEntry.setAppContext("getConnection()");
                        msgEntry.setMessageText("IOException getting " + urlString);
                        msgEntry.setError( ioe.getMessage() );
                        logger.logWarning(msgEntry);
                        break;
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        initMapHolder = imh;

        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

     */
    public boolean init (Node n, InitMapHolder imh, SyncFlag sf, SyncFlag stopFlag) {

        if (!super.init(n, imh, sf, stopFlag)) return false;
        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        imh.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        Element splitProcessorEl = (Element)n;

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        strings = new Strings();
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

    public boolean init (Node n, InitMapHolder imh, SyncFlag sf, SyncFlag stopFlag) {

        if (!super.init(n, imh, sf, stopFlag)) return false;

        Node aProcessorNode = n;
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        this.strings = new Strings();
        imh.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        this.retrySyncFlag = new SyncFlag(false);

        Node aProcessorNode = n;

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        this.imh = imh;

        // Make a Strings instance.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.