Changes between Initial Version and Version 1 of Ticket #29737


Ignore:
Timestamp:
Sep 6, 2018, 3:11:40 AM (6 years ago)
Author:
Carlton Gibson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29737 – Description

    initial v1  
    22My project name is mysite, I have referenced the Jython path in web.xml. My project structure is
    33
     4
     5{{{
    46-mysite
    57 -WEB-INF
     
    1618  -web.xml
    1719 -wsgi
     20
     21}}}
     22
    1823Error is
    1924
     25
     26{{{
    2027Traceback (most recent call last):
    2128  File "D:\jython27\Lib\modjy\modjy.py", line 80, in service
     
    3441    raise exc_class(message)
    3542modjy.modjy_exceptions.NoCallable: Error loading jython callable 'application': No module named mysite
     43
     44}}}
     45
    3646The application_settings file shows:
    3747
     48
     49{{{
    3850from mysite.settings import *
    3951CONTEXT_ROOT = "mysite"
     52}}}
Back to Top