Changes between Initial Version and Version 1 of Ticket #29737
- Timestamp:
- Sep 6, 2018, 3:11:40 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29737 – Description
initial v1 2 2 My project name is mysite, I have referenced the Jython path in web.xml. My project structure is 3 3 4 5 {{{ 4 6 -mysite 5 7 -WEB-INF … … 16 18 -web.xml 17 19 -wsgi 20 21 }}} 22 18 23 Error is 19 24 25 26 {{{ 20 27 Traceback (most recent call last): 21 28 File "D:\jython27\Lib\modjy\modjy.py", line 80, in service … … 34 41 raise exc_class(message) 35 42 modjy.modjy_exceptions.NoCallable: Error loading jython callable 'application': No module named mysite 43 44 }}} 45 36 46 The application_settings file shows: 37 47 48 49 {{{ 38 50 from mysite.settings import * 39 51 CONTEXT_ROOT = "mysite" 52 }}}