Closer still :)
Looked up windows signal.h and found only following signal types are
defined in windows:
#define SIGINT 2 /* interrupt */
#define SIGILL 4 /* illegal instruction - invalid
function image */
#define SIGFPE 8 /* floating point exception */
#define SIGSEGV 11 /* segment violation */
#define SIGTERM 15 /* Software termination signal from
kill */
#define SIGBREAK 21 /* Ctrl-Break sequence */
#define SIGABRT 22 /* abnormal termination triggered by
abort call */
So I modified my signal.py accordingly and commented out unused signal
definitions. Now I'm stuck at an error I don't quite understand and
will probably need someone familiar with Java to assist.
Traceback (most recent call last):
File "c:\temp\webapp\WEB-INF\lib\modjy.jar\modjy.py", line 72, in
service
File "c:\temp\webapp\WEB-INF\lib\modjy.jar\modjy.py", line 89, in
dispatch_to_application
File "c:\temp\webapp\WEB-INF\lib\modjy.jar\modjy_wsgi.py", line 141,
in set_wsgi_environment
File "c:\temp\webapp\WEB-INF\lib\modjy.jar\modjy_wsgi.py", line 115,
in set_wsgi_streams
TypeError: coercing to Unicode: need string, 'javainstance' type found
This threw me off as I didn't expect to run across any errors in modjy
since other people seem to be using it with glassfish / django. Does
anyone know what this means and if it is possibly a configuration err
on my part? Or is this more possibly a compatibility issue between the
newer modjy and glassfish v3 prelude?
Thanks,
Andrew