John M
John M

Reputation: 320

unable to run in glassfish, bizarre input stream errors in log

Trying to deploy my application to glassfish and while the application appears to deploy successfully the newly added servlet and its jsp appear blank. Checking the logs I see dozens of entries that look like this

[2014-09-30T10:34:40.311-0400] [glassfish 4.0] [SEVERE] [NCLS-CORE-00048] [javax.enterprise.system.core] [tid: _ThreadID=50 _ThreadName=deployment-jar-scanner] [timeMillis: 1412087680311] [levelValue: 1000] [[
Invalid InputStream returned for org/hibernate/hql/internal/ast/tree/UpdateStatement.class]]

Presumably one for each class in my library. Checking glassfish_home/glassfish/domains/domain1/applications I was able to find the first few I checked. I opted not to look for them all, there appear to be hundreds.

All I can find online is that NCLS-CORE-00048 means severe, which isn't helpful. Any advice would be much appreciated, thanks.

Upvotes: 1

Views: 249

Answers (1)

davrodrila
davrodrila

Reputation: 67

I found an issue that seems similar to yours here.

As seen in the last post, check your WEB-INF and remove the jboss-system jar if it exists. It seems that jar conflicts with Glassfish.

Upvotes: 1

Related Questions