Hello,
In a flex application I have defined a servlet as HTTP service ( see the conf. below ). In case the "production-mode" is set
to false in the flex-config.xml everything works fine. Wanted to change the production-mode param to true, then I get an error
"HTTP Service Fault". I woudn't want to hardcode the context root in the flex-config file.
production-mode= true and
<service name="myService">
<url>{context.root}/MyServlet</url>
</service> Won't work.
Any ideas?
So production-mode = true and
<service name="myService">
<url>/myappcontext/MyServlet</url>
</service> works.
Thanks,
Valy
Do you Yahoo!?
Make Yahoo! your home page
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

