Java applet interaction with Ephesoft
KB Article #10249
Topic / Category: Webscanner
Applies to: Ephesoft 4.0+
Details:
The Java applet interfaces with Ephesoft server by sending request to Servlets.
The following communication is done by the applet:
- Convey different form of Scanning Status.
- Send client logs to server.
- Upload scanned Images to server.
Following are servlet configuration define inside the web.xml:-
- Servlet for handling Status request.
<servlet>
<servlet-name>ScannerStatusConveyerServlet</servlet-name>
<servlet-class>com.ephesoft.dcma.twain.ScannerStatusConveyerServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
- Servlet for logging client logs in server.
<servlet>
<servlet-name>loggingServlet</servlet-name>
<servlet-class>com.ephesoft.dcma.twain.LoggingServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
- Servlet for uploading images.
<servlet>
<servlet-name>uploadServlet</servlet-name>
<servlet-class>com.ephesoft.dcma.twain.UploadServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
|
Documentation Main Page
|
How To Articles
|
Downloads and Updates
|