----------------------------------------------------
Please read the FAQ at <http://java.apache.org/faq/>
It has a search feature and all the answers!
----------------------------------------------------


 > I have an applet called UserSignature. It calls a Servlet called
 > UserSignatureSubmission. I'm getting a strange error in the Apache error
 > log, however, that says that the file UserSignatureBeanInfo.class does not
 > exist.
 >
 > What sort of configuration or other glitch would cause this error?
 >
 > By the way, the applet and servlet were both developed and tested on
 > JavaWebServer, so I know they work there and it's likely a configuration
 > problem. Unfortunately I personally don't have the administrative privileges
 > to alter the JServ configuration files, but any info I can get here can be
 > passed on to my admin guys.
 >
 > Any ideas? Thanks!

I think what you're seeing is this:

* Browser loads applet.
* Browser JVM tries to locate BeanInfo class -- it does this to control 
what applet methods can get called in JavaScript-to-Java stuff.
* Results in an HTTO call to the server for the BeanInfo class.
* That class file is not there, so server logs an error.

So, it is not a "real" error, just an artifact of the browser JVM looking 
for beaninfo's when it loads.

- Fernando

======================================
Fernando Salazar <[EMAIL PROTECTED]>


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to