I have small ajax problem related to cross domain as i see it.
On localmachine i created html example with some ajax: in registration text field user types \'username\',
I figured out how to solve it from this site:
"To allow directory browsing via Apache Tomcat change the parameter "listings" in the file conf/web.xml from false to true."
Call your page not as C:/Documents and Settings/.../page.html
but as localhost:8080/your_servlet_name
(page is better named index.html
).
This way, you will be able to make AJAX requests to localhost:8080/your_servlet_name/something_else
.