login about faq

My question is I know that a server application can access the data stored at server but cannot access teh data stored at client machine as this is a security issue and Browsers not allow this. But in case of localHost (when my local pc is acting as a server) I should be able to access the files from my PC(the local PC on which the application is running). But that is not happening. Why i m not able to access a simple image file form my local C: drive by localhost. The URL i used was file:///c:/image.png but if i store this image any where under home directory of tomcat i m able to access it. WHY ?? I m using it as <'img src="file:///c:/image.png> Thanks for any considerations..

asked Mar 15 '12 at 15:13

anki's gravatar image

anki
313

What URL do you use to access your web page?

(Mar 20 '12 at 12:28) Nikki Erwin Ramirez ♦♦ Nikki%20Erwin%20Ramirez's gravatar image

Thanks Nikki for ur time and consideration but the problem is solved.

(Mar 20 '12 at 13:01) anki anki's gravatar image

I'm curious as to how the problem was solved. Care to share your answer?

(Mar 20 '12 at 13:17) Randell ♦♦ Randell's gravatar image

the main problem was this, I was doing 'file:///c:/image.png' in browser which is not correct. We cannot access the data from the local machine anyway through browser or javascript. We have to access the data from server side ie; either from servlet or JSP which runs on server side and not from browser/javascript which run on client's machine.

link

answered Mar 20 '12 at 13:26

anki's gravatar image

anki
313

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or __italic__
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×16

Asked: Mar 15 '12 at 15:13

Seen: 636 times

Last updated: Mar 20 '12 at 13:26