Click here to Skip to main content
15,888,113 members
Please Sign up or sign in to vote.
2.00/5 (2 votes)
See more:
I started developing licensing system from scratch using Cryptolicensing,viewed the tutorial about LicensingService,but still experiencing problems.I followed all the steps and even filled all the required details like test connection in license Database configuration and everything was working fine.But when I enter the url of LocalHost or My webserver http:// //Service.asmx in project properties and click test connection,i get an error remote server returned an error :(404) not found.

What could be the reason?. Where am I making a mistake?

would anyone please guide me to sort this out?
Posted
Comments
[no name] 6-Apr-14 10:45am    
Well the obvious reason is that you forgot to copy something that your code needs to the server. Hence the 404 error.
Where did you make a mistake? How would you expect us to know that? You have provided exactly zero information that would lead anyone to what mistake you have made. We cannot see your code or read your mind to know what it is that you have done.
Anyone guide? Sure. Contact the support people over at Cryptolicensing. They are the ones that know something about their product and that is what they are paid to do, support their product and answer vague questions.

1 solution

A 404 error is an HTTP status code that means that the page you were trying to reach on a website couldn't be found on their server.

Technically, an Error 404 is a client-side error, implying that the error is your mistake, either because you typed the URL in wrong or the page has been moved or removed from the website and you should have known.So please double check your url's availability.

Another possibility is if a website has moved a page or resource but did so without redirecting the old URL to the new one. When that happens, you'll receive a 404 error instead of being automatically routed to the new page.

Please read this for more info : 404 Not Found
 
Share this answer
 
v3

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