I get the following error when executing a JSP compiled page in JBoss AS 5.0.1 (never got in JBoss 4.x) :
java.lang.NullPointerException
at org.apache.jsp.WEB_002dINF.jsp.wapp.home_jsp._jspService(home_jsp.java:1261)
here is the corresponding line code of the compiled JSP:
1261 _jsp_instancemanager.newInstance(_jspx_th_spagobiwa_005fuserMenu_005f0);
So I guess the _jsp_instancemanager is null. As far as I can get it should have been created in the _jspInit method of the servlet by the statement:
_jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig());
So probably the problem comes from there.
Any configuration missing or something like that ?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231984#4231984
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231984
sorry for not clearing defined. My user is developer (project implementer)
What I want to do is, I will create a standard calculation method which is suited for most of the project.
But sometime, customer project may have their own calculation method, I would like to design an application which is flexible enough for developer to override if they wish to.
Please advise the way of doing it because I am just starting using EJB and Java. Thanks.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231979#4231979
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231979
Hi,
I want to clone a process instance (with all the tokens, variables contained in it, start date etc...), so that after I could modify it with the values I want. Is it possible?
ProcessInstance is not cloneable...
The aim is that I have to split a process instance in 2 parts, one which will be ended, and another which must continue (that's because every month a user will end all old process Instances and refresh the counters).
I don't know if I'm clear enough!
Thanks
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231977#4231977
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231977
I think you need a Topic with subscribers and selectors for the regular day-to-day operation.
And you also probably need a request mechanism on receiving the initial information. Maybe the client creates a temporary queue, send a request to receive the initial information, and the initial information comes on that queue.
On the day-by-day basis you would have the durable selector receiving the information.
I feel like spoiling the surprise suggesting you this :-) , but there is a great JMS example on JBoss Messaging 2 which explains what I' m suggesting to you in terms of Request-Reply:
svn co http://anonsvn.jboss.org/repos/messaging/trunk/examples/jms/request-reply
Look at the readme.. it bring a lot of information.
if you want to run the example:
svn co http://anonsvn.jboss.org/repos/messaging/trunk messaging
cd messaging
ant
cd examples/jms/request-reply
and
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231976#4231976
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231976