I'm developing a c# webservice that needs to use a .rec file (a recognizer, check the PS) in order to recognize written characters and return a string.
There is a method given in a dll, it's :
void ICR_SelectRecognizer(int Session, string RecFile);
the string is the RecFile's path. This function doesn't seem to find the .rec file eventhough the path is correct :
ICR_SelectRecognizer(Session, Server.MapPath("~/eurodigit.rec"));
How can I fix this?
PS
From the recogniform web site: Platform: the engine is packaged in DLL format. For each content type (American Digit, European Digits, Uppercase Alpha, Lowercase Alpha, Mixed Alpha, etc...) is required a separate .REC file. The full engine size is less than 5 MB.
Everything seems to work just fine when i use a windows form, but the web service always returns a null string, i take it as the web service doesn't find the recognizer?