raghuveer mandal

Greenhorn
+ Follow
since Nov 13, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by raghuveer mandal

Hi All,

I am presently working on remediation from struts 1.0 to struts 1.2.8. Application is currenty working nicely on struts 1.0. I have deployed the application successfully in struts 1.2.8. I have one screen where i am using same action and action form to load and save the data. Loading the page is happening properly but when i click on save i am getting the following error.

java.lang.IllegalArgumentException: No bean specified
at org.apache.commons.beanutils.PropertyUtils.getPropertyDescriptor(PropertyUtils.java:819)
at org.apache.commons.beanutils.BeanUtils.setProperty(BeanUtils.java:846)
at org.apache.commons.beanutils.BeanUtils.populate(BeanUtils.java:726)
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:493)
at org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:804)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:203)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)

If anybody has faced the same problem and able to solve the problem, Please help me out. Thanks in advance.
Raghuveer Mandal
17 years ago
Hi All,
I have one problem, I have one scenario where i have <html:file> which must be uploaded and processed. Once the processing is done i need to show the result on a pop up screen. On click of the popup i must show the file upload screen.In this case i need to submit the form as i have to pass the formFile object to the action class and at the same time open a popup on click of <html:link>. Can any one help me to solve this issue. I will be thankful.

Thanks in advance
Raghuveer Mandal
17 years ago
The problem got solved. Thanks for your advice.
Regards
Raghuveer Mandal.
[ June 06, 2005: Message edited by: raghuveer mandal ]
Hai all,
I am getting following exception when i am trying to validate an xml document using DOM PARSER.
Failed to validate the XML. org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xff) was found in the prolog of the document.

Thanks in advance.
Hai All,

I am working on oc4j server. I am getting the following exceptions on server when i stop using it for some time(i.e session gets expire due to inactivity).


java.lang.NullPointerException
at com.evermind.server.http.HttpApplication.invalidateSession(HttpApplication.java:480)
at com.evermind.server.http.EvermindHttpSession.invalidate(EvermindHttpSession.java:230)
at com.evermind.server.http.HttpApplication.invalidateSessions(HttpApplication.java:6397)
at com.evermind.server.http.HttpSite.invalidateSessions(HttpSite.java:995)
at com.evermind.server.http.SessionTimeoutTask.invalidateSessions(SessionTimeoutTask.java:171)
at com.evermind.server.http.SessionTimeoutTask.run(SessionTimeoutTask.java:145)
at com.evermind.util.TaskManager.run(TaskManager.java:181)
at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:796)
at java.lang.Thread.run(Unknown Source)

can you please help me out in solving this problem.
Thanks in advance.
How can i write mapping.xml file for the xml which looks like

<Book>
<Author name="ABC">ABC PUBLICATION</Author>
<Author name="XYZ">XYZ PUBLICATION</Author>
.
.
.
<Book>

[ February 14, 2005: Message edited by: raghuveer mandal ]

[ February 14, 2005: Message edited by: raghuveer mandal ]

[ February 14, 2005: Message edited by: raghuveer mandal ]
[ February 14, 2005: Message edited by: raghuveer mandal ]
Thanks a lot Mark.
19 years ago
Thanks Nick, if you can help me out can you please tell me is there any package or any class which has some method where i pass four or more double variables and check weather the required number is greatest among all?
19 years ago
How can i compare four double valus and find if the one is greates.
i had tried this code but it fails
if(doubA<=doubB<=doubC<=doubD)
{
System.out.println("doubD is greatest");
}
19 years ago