HTTP Handler
-
Hello everybody , i have created an ASP.NET Web service application , but in the same solution i have created a class that implements IHTTPHandler interface and i used this class in my web.config file as the main http handler for *.asmx extensions , i have put the following line
it works fine in Cassini embedded web server in visual studio . but when i deploy it to my domain web server , it tells me it could not load this type or its dependencies whereas this class is associated with one of the solution folders. how can i solve this problem IIS 6 ?
Human knowledge belongs to the world.
-
Hello everybody , i have created an ASP.NET Web service application , but in the same solution i have created a class that implements IHTTPHandler interface and i used this class in my web.config file as the main http handler for *.asmx extensions , i have put the following line
it works fine in Cassini embedded web server in visual studio . but when i deploy it to my domain web server , it tells me it could not load this type or its dependencies whereas this class is associated with one of the solution folders. how can i solve this problem IIS 6 ?
Human knowledge belongs to the world.
Dont ask the same question again as you asked in C# forum :)
Cheers,
SMPRecent Tip/Tricks
Prevent a drag and drop text and Copy paste text in your textbox control
Find a column name within SQL database -
Dont ask the same question again as you asked in C# forum :)
Cheers,
SMPRecent Tip/Tricks
Prevent a drag and drop text and Copy paste text in your textbox control
Find a column name within SQL databaseThis could be confusing to the OP as they were told in the other forum to not post there, and now you are telling them to not post here. If you read the responses to the first posting you would see they have been advised to remove the question from this forum, which they can't do now that you replied to it.
I know the language. I've read a book. - _Madmatt
-
This could be confusing to the OP as they were told in the other forum to not post there, and now you are telling them to not post here. If you read the responses to the first posting you would see they have been advised to remove the question from this forum, which they can't do now that you replied to it.
I know the language. I've read a book. - _Madmatt
Ok thats my misunderstanding, i dont check the timings. Thanks for correcting me, cheers :)
Cheers,
SMPRecent Tip/Tricks
Prevent a drag and drop text and Copy paste text in your textbox control
Find a column name within SQL database -
Ok thats my misunderstanding, i dont check the timings. Thanks for correcting me, cheers :)
Cheers,
SMPRecent Tip/Tricks
Prevent a drag and drop text and Copy paste text in your textbox control
Find a column name within SQL databaseMy friend i would like to inform you that the http handler works fine without injecting the assembly in the GAC , because the http handler is not in a different assembly , it is in the same assembly namespace as the whole project but the problem was as follows . i didn't put the assembly name after declaring the fully qualified namespace of the handler for example the assembly name is GAndroidService and the fully qualified namespace for the handler is GAndroidService.Android.AndroidHandler so the assembly is successfully loaded in memory when the web service runs in the context of asp.net engine so i had to put it like that GAndroidService.Android.AndroidHandler , GAndroidService i hope this could help. Thank you guys for your great support and taking time to reply
Human knowledge belongs to the world.