Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

the applet(which make connection to access database) i developed is working fine in applet viewer, but when embedded in an html file, it cannot access the database. how can i rectify it?

share|improve this question
Are you using localhost or 127.0.0.1 in your connection string – Enrique Mar 24 '11 at 5:01

2 Answers

up vote 0 down vote accepted

Applets respect same origin policy. It cannot connect to any other sever other than where it is hosted. You database and your webserver needs to be on same ip.

share|improve this answer
its in the same system – axatrikx Mar 24 '11 at 4:23
It seems as though the JRE does not consider it to be the same site though. One typical case is where a non-relative URL is used to connect to the DB. E.G. A page at D:where/my/server/is/WEB-INF/applet/db-applet.html could not connect to 127.0.0.1:8080/db. The applet would need to come from 127.0.0.1:8080/applet/db-applet.html to make that work in a sand-box. – Andrew Thompson Mar 24 '11 at 7:08

An applet lives in a security sandbox. In order for you to do file io, your applet jar(s) need to be signed.

http://introcs.cs.princeton.edu/85application/jar/sign.html

share|improve this answer
im not using jar.. i just gave the codebase – axatrikx Mar 24 '11 at 4:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.