Hi all,
I've been looking around for general information about any performance issues and overhead costs people have experienced with clustering JBoss. If anyone can share their experiences, any performance metrics, etc..., that would be great. How about experiences with data integrity issues due to clustering?
I also would like to know if there are recommended seminars, classes or books on JBoss performance tuning (best practices) .
Thanks
Fred
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011505#4011505
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4011505
Hi Shane,
Noticed a typo in MultipartRequest.java
public String getFileName(String name)
| {
| Param p = getParam(name);
| return (p != null && p instanceof FileParam) ?
| ((FileParam) p).getContentType() : null;
| }
Should be
public String getFileName(String name)
| {
| Param p = getParam(name);
| return (p != null && p instanceof FileParam) ?
| ((FileParam) p).getFilename() : null;
| }
Cheers -ben
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011500#4011500
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4011500