Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello.

I've developed a windows based application and published it on my computer. The application is working fine. When I copied the published files to hosting server, I'm getting an error. Please try to fix this issue.

Error:

" Application installation did not succeed. Cannot locate application files on the server. Contact the application vendor or your administrator for assistance "


Thanks,
Imtiyaz
Posted
Updated 18-Jan-16 20:42pm
v2
Comments
VR Karthikeyan 19-Jan-16 7:19am    
Do you want to run your windows application in client desktop by calling it from server? or do you want to host your database on the server? Explain your objective or requirement clearly.
mimtiyaz 19-Jan-16 7:34am    
I want to run my windows application on client desktop by calling it from the server.
Maciej Los 19-Jan-16 16:27pm    
The error message is quite clear...
mimtiyaz 20-Jan-16 6:38am    
My application is a simple application without database.

 
Share this answer
 
you need to paste the full error message in here but remember ti disable the friendly error notification firs
t
so you can get the real full error message


C#
<customErrors mode="Off" />

For final release or in production mode

You should turn the customs Error to be On or RemoteOnly so Users can't see the real error message. You can set the default Redirect to point to some pages and you can write nice error message on your error.html page. Below is the customs Error tag that you should use on your

<customErrors mode="On" defaultRedirect="error.htm"/>



[I couldn't see any Error Message on my ASPX Page? What should I do? - Knowledgebase - SeekDotNet.com (Host Valley LLC)[^]]
 
Share this answer
 

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