above is the error message that I am getting.
can anyone help with this?
Related
module object is not callable, how 2 fix
For some reason I'm getting a module object is not callable error on this code. I don't really get why? Whats going on and how do I fix it? :(
Please help me in solving this error.
This is the error coming
We are getting below mentioned exception in our sysout.log file.
Please provide your help on how we can solve this.
Is there any setting which we can make into the Websphere Application Server?
000000a3 WASSession E SessionContextMBeanAdapter
findAttCausingNotSerializableException Miscellaneous data: Attribute
"EXCELEXPORTERREGISTERID" is declared to be serializable but is found
to generate exception "java.io.NotSerializableException" with message
"com.ubs.fsl.idama.action.codification.CodificationsHandler$1". Fix
the application so that the attribute "EXCELEXPORTERREGISTERID" is
correctly serializable at runtime.
We have implemented serialization where ever required in our java code.
After that it is giving the below exception.
00000078 WASSession E SessionContextMBeanAdapter
findAttCausingNotSerializableException Miscellaneous data: Attribute
"com.ubs.fsl.ca.ia.CAReceptionRoomIA" is declared to be serializable
but is found to generate exception "java.io.NotSerializableException"
with message "com.ibm.ws.webcontainer.srt.SRTServletRequest". Fix the
application so that the attribute
"com.ubs.fsl.ca.ia.CAReceptionRoomIA" is correctly serializable at
runtime.
Note : The above exceptions started when we migrated from WAS 7.0.0.31 to WAS 9.0.0.5.
I have changed the field type from list to set and I receive the following error:
Error in creating model in method Cassandra\ActiveRecordBundle\Session\CassandraSession::getModelOriginal exception:
Instantiation of a Cassandra\Type\Set type is not supported.
Can you please help with a hint or anything?
Tx
type Exception report
message Unable to compile class for JSP:
description The server encountered an internal error that prevented it
from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 44 in the jsp file:
/jsp/ShoppingCart/AddBook.jsp The method getValue(String) is undefined
for the
type HttpServletRequest
int int_BookID,int_CategoryID,int_Price,int_Quantity;
String str_Title, str_Author, str_Publisher,str_Edition,str_Description;
int_BookID=(int)(10000*Math.random()+1);
int_CategoryID=Integer.parseInt(request.getValue("cat"));
str_Title=request.getParameter("title");
str_Author=request.getParameter("author");
str_Publisher=request.getParameter("pub");
request.getValue("cat") is the problem here.
I suppose the 'cat' is a parameter.
Instead , use request.getParameter("cat")
PS- I recommend you to read the basics of JSP first try the HeadFirst series.