-
Yeah... SOFIA is not setup for Serializing. You will have to go into a whole lot of classes and make them implement the Serializable interface.
2009-01-29 14:18:53 UTC by jakub_tcp
-
We are in the process of migration from an existing unclustered environment to a clustered JBoss environment. One of the typical errors which I get during execution is :
0:07:54,495 ERROR [JBossCacheService] externalizeSession(): exception occurred externalizing session SessionBasedClusteredSession[id: fpIy0ONwcY44GB8UIs7Dbg** lastAccessedTime: 1225386446949 version: 5 lastOutdated: 0]...
2008-10-30 17:29:14 UTC by sumitmurarka
-
I read one article on Flex with Struts on the internet. http://www.adobe.com/devnet/flex/articles/struts.html
I am using SOFIA for the last 6 years in my projects now and I would like to give a face-lift to my application using Flex, but I want to reuse my code as much as possible which uses SOFIA model/view/controllers. Are there any way to achieve this?
Please comment if this is even...
2008-08-24 05:16:46 UTC by rameshsr
-
Around line 482 of c.s.jsp.JSPServlet, in createPage,
you see this:
while (in.read() > -1);
Reading one byte at a time from an unbuffered stream.
Replace it with the following "performance 101" change and you can probably feel the difference:
byte[] data = new byte[1024];
int n;
do {
n = in.read(data);
}...
2008-07-09 15:52:59 UTC by nobody
-
Hi,
Now I am troubling in localization for JavaScript code part in alert messages. which localekey supports and how to do it, please suggests.
if(name!=null && name!=""){
if(isValidText(name)==false){
alert("Invalid Text! Please enter valid text.");
document.forms[0].htmlPageTopContainer_pageForm_patname.select();
return false;
}
}.
2008-06-06 09:00:02 UTC by dmkreddy8
-
Hi,
now i am troubling in Localization in JSp's. The following code, how to resolve suggests.
<jade:option key="X" display="External"/>
i am troubling the above code convertinto Localization. I need External text in localization. The above code, which localekey supports. please suggests
..........
2008-06-06 08:57:04 UTC by dmkreddy8
-
Hi,
now i am troubling in Localization in JSp's. The following code, how to resolve suggests.
<jade:option key="X" display="External(EX)"/>
i am troubling the above code convertinto Localization. the above code, which localekey supports. please suggests
..........
2008-06-06 08:52:38 UTC by dmkreddy8
-
Hi,
Now I am troubling in localization for JavaScript code part in alert messages.
How to reslove this problem, please suggests.
if(name!=null && name!=""){
if(isValidText(name)==false){
alert("Invalid Text! Please enter valid text.");
document.forms[0].htmlPageTopContainer_pageForm_patname.select();
return false;
}
}.
2008-06-06 08:45:25 UTC by dmkreddy8
-
Would you happen to have a patched version of the method handy?.
2008-03-05 16:09:32 UTC by jakub_tcp
-
It seems to me also a bug. Anyway, when we deployed an application in a multi-user environment we were forced to remove this code as it was constantly causing software locks and the whole application required a server restart.
2008-02-18 15:03:29 UTC by ilev