postform.c in a loop seg faults

"Anibal Jodorcovsky" <[email protected]>
Newsgroups gmane.comp.lib.libwww
Message-ID <[email protected]>
Hi all,

I've been using libwww for not so long, but I took the code from the sample
postform.c to use in my own app. It seemed to work nice through our tests so
we deployed the app today. whoops! After a little while every app that was
using libwww was seg faulting with SIGSEGV. Ouch!

Going back to my library, where I use libwww I ended up narrowing down the
problem so much that I can reproduce the problem with the sample code
postform.c.

I have a new file now, called postformNew.c (attached).

It has notes at the top on how I compile it and link it. At the end you'll
see the output from a gdb and the crash in HTHost.c (line 209).

The difference between postform.c and postformNew.c is that the new one
calls postform.c in a loop with 42 entries, i.e., calling postform 42 times.
Somewhere in the middle the program crashes.

I think it's either a problem within libwww (but I really doubt it), or I'm
using it wrong within a loop. The problem is that I couldn't find a nice
sample that uses this library in a loop.

Can anybody out there give me a hand here? I tried to make as easy as
possible for anyone to just reproduce this. The code compiles with just
libwww installed. All you might want to modify is the URL and post fields
you use depending on what cgi/servlet you're hitting.

Thanks in advance,

-Anibal Jodorcovsky
postformNew.c (application/octet-stream, 26.1 KB)
// gcc -g -O -Wall -DHAVE_CONFIG_H -g -I/usr/local/include -I/usr/local/include/w3c-libwww -I/usr/local/tools/inc -c postformNew.c
// gcc -o hello postformNew.o -L/usr/local/lib -lwwwinit -lwwwapp -lwwwxml -lwwwhtml -lwwwtelnet -lwwwnews -lwwwhttp -lwwwmime -lwwwgopher -lwwwftp -lwwwfile -lwwwdir -lwwwcache -lwwwstream -lwwwmux -lwwwtrans -lwwwcore -lwwwutils -lxmlparse -lxmltok -lmd5 -ldl
// ./hello

/*
**	@(#) $Id: postform.c,v 1.9 1999/03/01 13:41:55 frystyk Exp $
**	
**	Other libwww samples can be found at "http://www.w3.org/Library/Examples"
**	
**	Copyright (c© 1995-1998 World Wide Web Consortium, (Massachusetts
**	Institute of Technology, Institut National de Recherche en
**	Informatique et en Automatique, Keio University). All Rights
**	Reserved. This program is distributed under the W3C's Software
**	Intellectual Property License. This program is distributed in the hope
**	that it will be useful, but WITHOUT ANY WARRANTY; without even the
**	implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
**	PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
**	details.
**
**      Posts form data to an HTTP server and saves the result in a chunk
*/

#include "WWWLib.h"
#include "WWWInit.h"

PRIVATE HTChunk * result = NULL;

PRIVATE int printer (const char * fmt, va_list pArgs)
{
    return (vfprintf(stdout, fmt, pArgs));
}

PRIVATE int tracer (const char * fmt, va_list pArgs)
{
    return (vfprintf(stderr, fmt, pArgs));
}

PRIVATE int terminate_handler (HTRequest * request, HTResponse * response,
			       void * param, int status) 
{
    if (status == HT_LOADED && result && HTChunk_data(result)) {
	HTPrint("%s", HTChunk_data(result));
	HTChunk_delete(result);
    }

    HTEventList_stopLoop();

    /* We are done with this request */
    HTRequest_delete(request);

    /* Terminate libwww */
    HTProfile_delete();

    return -1;
}

int post (int argc, char ** argv)
{
    HTRequest * request = NULL;
    HTAnchor * anchor = NULL;
    HTAssocList * formfields = NULL;
    char * uri = NULL;

    /* Create a new premptive client */
    HTProfile_newNoCacheClient("TestApp", "1.0");

    /* Need our own trace and print functions */
    HTPrint_setCallback(printer);
    HTTrace_setCallback(tracer);

    /* Get trace messages */
#if 0
    HTSetTraceMessageMask("sop");
#endif

    /* Add our own filter to update the history list */
    HTNet_addAfter(terminate_handler, NULL, NULL, HT_ALL, HT_FILTER_LAST);

    /* Set the timeout for long we are going to wait for a response */
    HTHost_setEventTimeout(20000);

    HTTP_setBodyWriteDelay (250, 500);
    
    /* Handle command line args */
    if (argc >= 2) {
	int arg;
	uri = argv[1];
        printf( "uri is %s\n", uri );
	for (arg=2; arg<argc; arg++) {
	    char * string = argv[arg];
	    
            printf( "formfield is %s\n", string );
	    /* Create a list to hold the form arguments */
	    if (!formfields) formfields = HTAssocList_new();

	    /* Parse the content and add it to the association list */
	    HTParseFormInput(formfields, string);
	}
    }

    if (uri && formfields) {

	/* Create a request */
	request = HTRequest_new();

	/* Set the default output to "asis" */
	HTRequest_setOutputFormat(request, WWW_SOURCE);

	/* Get an anchor object for the URI */
	anchor = HTAnchor_findAddress(uri);

	/* Post the data and get the result in a chunk */
	result = HTPostFormAnchorToChunk(formfields, anchor, request);

	/* Clean up the form fields */
	HTAssocList_delete(formfields);

	/* Go into the event loop... */
	HTEventList_loop(request);

    } else {
	HTPrint("Type the URI to post to and the arguments for the POST operation. Encode spaces as '+'\n");
	HTPrint("\t%s <uri> 'a=1' 'b=+2+' 'c=3 ...'\n", argv[0]);
    }

    return 0;
}

int main( int argc, char** argv )
{
    int i;
    
    static struct
    {
      char* dest;
      char* ser;
    } cases[] =
        {
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.563" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.585" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.600" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.615" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.644" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.666" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.681" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.695" },
            {"VMI-J4DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.709" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.563" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.585" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.600" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.615" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.644" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.666" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.681" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.695" },
            {"VMI-35DBC01", "1.2.840.113619.2.5.1762369739.1267.1018037521.709" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-J4DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.174" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.177" },
            {"VMI-35DBC01", "1.2.840.113619.2.30.1.1762369936.2012.1012232403.178" },
            { NULL, NULL }
        };
    
    for ( i = 0; cases[i].dest != NULL; i++ )
    {
        char* argv[5];
        char* action = "action=getSeries";
        char series[90];
        char dest[90];
        sprintf( series, "data=%s", cases[i].ser );
        sprintf( dest, "destinationAeTitle=%s", cases[i].dest );

        argv[1] = "http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet";
        argv[2] = action;
        argv[3] = series;
        argv[4] = dest;

        printf( "Posting 5 args... action (%s), series (%s), dest (%s)\n",
                action, series, dest );
        
        post( 5, argv );
        printf( "Goign again....\n" );
        
    }
    return 0;
}


#if 0
And this is the output from gdb:

[anibal@anibal anibal]$ gdb hello
GNU gdb 19991004
Copyright 1998 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-redhat-linux"...
(gdb) run
Starting program: /home/anibal/hello 
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.174
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.174), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.177
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.177), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), dest (destinationAeTitle=VMI-35DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.30.1.1762369936.2012.1012232403.178
formfield is destinationAeTitle=VMI-35DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.30.1.1762369936.2012.1012232403.178), destAe (VMI-35DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-35DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.5.1762369739.1267.1018037521.563), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.5.1762369739.1267.1018037521.563
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.5.1762369739.1267.1018037521.563), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.5.1762369739.1267.1018037521.585), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.5.1762369739.1267.1018037521.585
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.5.1762369739.1267.1018037521.585), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.5.1762369739.1267.1018037521.600), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.5.1762369739.1267.1018037521.600
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.5.1762369739.1267.1018037521.600), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.5.1762369739.1267.1018037521.615), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.5.1762369739.1267.1018037521.615
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!
ERROR|actionGetSeries with Action (getSeries), Data (1.2.840.113619.2.5.1762369739.1267.1018037521.615), destAe (VMI-J4DBC01). java.sql.SQLException: Unable to retrieve AE Title (with IsUp set) from GlobalCTNCtrl for AE: (VMI-J4DBC01)Goign again....
Posting 5 args... action (action=getSeries), series (data=1.2.840.113619.2.5.1762369739.1267.1018037521.644), dest (destinationAeTitle=VMI-J4DBC01)
uri is http://anibaltest1/SeriesMover/SeriesMover.SeriesMoverServlet
formfield is action=getSeries
formfield is data=1.2.840.113619.2.5.1762369739.1267.1018037521.644
formfield is destinationAeTitle=VMI-J4DBC01
Looking up anibaltest1
Looking up anibaltest1
Contacting anibaltest1
Writing 1Kbytes
Reading...
Writing 1Kbytes
Reading...
Read 1Kbytes
Read 1Kbytes
Done!

Program received signal SIGSEGV, Segmentation fault.
0x400b6360 in HostEvent (soc=5, pVoid=0x806e2e0, type=HTEvent_READ)
    at HTHost.c:209
209		} while (host->remainingRead > 0);
(gdb) where
#0  0x400b6360 in HostEvent (soc=5, pVoid=0x806e2e0, type=HTEvent_READ)
    at HTHost.c:209
#1  0x4002257d in EventOrder_executeAndDelete () at HTEvtLst.c:326
#2  0x40023051 in HTEventList_loop (theRequest=0x806d180) at HTEvtLst.c:791
#3  0x8048ee1 in post (argc=5, argv=0xbffff5d4) at postformNew.c:119
#4  0x8048f9f in main (argc=1, argv=0xbffff634) at postformNew.c:201
#endif
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.