Click here to Skip to main content
15,894,106 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
actually we have a inhouse server..that is used for tetsing. so there is a folder which contains image that i want to access from my computer using browser.
my computer in connected to that inhouse server by LAN.

What I have tried:

to access that image folder that is on inhouse server..
i open crome browser in my pc and put up the ipadresss of that server along with folder path but still i cant get that image.....how can i get it?
i entered path like this....
IP ADDRESS//D:/Live_Package/MobileApp/Documents/expDocuments/R%203758
Posted
Updated 2-Jan-17 22:56pm

1 solution

It all depends on the services provided by your server.

So you have to ask the administrator of your inhouse server which services are available, which credentials (login information) are required for each service, and which services provide access to the directory containing the image file using which shares.
 
Share this answer
 
Comments
Member 12300036 4-Jan-17 6:08am    
actually i have that server pc...which is connected by LAN with my pc..
Jochen Arndt 4-Jan-17 6:26am    
It has a network connection. That is the hardware. On the network TCP/IP can be used for communication. Based on TCP/IP there are protocols defining data transfers. To use these protocols you need a protocol specific server process and a client for the same protocol. The server process must be configured and started on the server.

But without knowing which services are running on your server, your question can't be answered.

Examples for protocols that might be used for files:
SMB / CIFS: Windows shares (built-in with Windows, Samba with Linux)
HTTP / HTTPS: Web server (e.g. Apache, IIS)
FTP: File Transfer Protocol
NFS: Network File System
AppleTalk
Member 12300036 4-Jan-17 6:33am    
so what path should i put on browser to access the folder
Jochen Arndt 4-Jan-17 6:45am    
I don't know because I don't have access to your server!

When using a browser there must be a HTTP or FTP service running on your server. If so, connect to that using
"http://ip-or-name-of-your-server/" or
"ftp://ip-or-name-of-your-server".
If that is working you might be able to navigate to the file. But it depends on the configuration of the HTTP or FTP server.

If that is not working, a HTTP or FTP service must be setup on the server. Or a service for one of the other protocols I mentioned must be setup. There might be even such a service running. But how should I know?

Again:
Ask the administrator of your server.

If you are the administrator you should learn at least the basics about how the internet works (it does not care if the server is connected by LAN or WAN) and what are TCP/IP protocols.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900