JRUN the culprit?
843842Jun 11 2008 — edited Jun 12 2008Any ColdFusion gurus here? The adobe.com forums are silent on this issue.
I'm trying to post to a servlet from JavaScript (not from CF), and getting a 404 error. This makes me think it's a mapping issue.
Here's the relevant part of web.xml:
<servlet>
<servlet-name>FNWiz</servlet-name>
<display-name>Display Name of FNWiz</display-name>
<description>This is the description of the FNWiz Service</description>
<servlet-class>com.example.FNWizServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>FNWiz</servlet-name>
<url-pattern>/myapp/GWT_MODULES/com.example.FNWizService</url-pattern>
</servlet-mapping>
And here's the request:
http://localhost:8500/fos2/GWT_MODULES/com.example.FNWizService
What am I missing? Do I have to do something to JRUN?
Thanks
e.