unplugged_web 2 Posted October 23, 2007 Report Share Posted October 23, 2007 Okay I've never used JSP pages in my life before, but I'm now working on some pages that somebody else has built to help me learn how it all works. I need to change an error message that can be displayed on the page. I've included the section of html below, but I don't know how to change the actual error messageThanksLucy <spring:bind path="*"> <c:if test="${status.error}"> <div class="error-box"> <ul> <c:forEach items="${status.errorMessages}" var="error"> <li>${error}</li> </c:forEach> </ul> </div> </c:if> </spring:bind> Quote Link to post Share on other sites
boen_robot 107 Posted October 23, 2007 Report Share Posted October 23, 2007 You need to find the definition of the error. What you see here is JSP's elements, not a real JSP code.Try to find every occurance of "<%" and search within it... in all files involved.By the way, that's just a personal preference, but, if you're forced on using a JAVA based language, aim for ColdFusion instead. It's a lot easier in comparrison to JSP (says someone that only has REALLY basic knowledge of both). Quote Link to post Share on other sites
unplugged_web 2 Posted October 23, 2007 Author Report Share Posted October 23, 2007 You need to find the definition of the error. What you see here is JSP's elements, not a real JSP code.Try to find every occurance of "<%" and search within it... in all files involved.By the way, that's just a personal preference, but, if you're forced on using a JAVA based language, aim for ColdFusion instead. It's a lot easier in comparrison to JSP (says someone that only has REALLY basic knowledge of both).Thanks I'll look for <% in the files then Quote Link to post Share on other sites
unplugged_web 2 Posted October 24, 2007 Author Report Share Posted October 24, 2007 I'm back again, sorry. I searched the entire site for <% and came up with a few includes.jsp, but that was it. I didn't find anthing that looked like it could be the error message. Would all of the error messages be in one file and what kind of file might that be (ie: xml, jsp etc)?ThanksLucy Quote Link to post Share on other sites
SpOrTsDuDe.Reese 1 Posted October 24, 2007 Report Share Posted October 24, 2007 Depends on how the error message was set up. If your "jsp" files were configured to upload a PHP file onload of an error message then you should look for .php tags. Same with HTML, XHTML, CSS, + many more. Check them all because they could all be possiblitys. If a code looks like it could upload a file on an error then search for the file and look inside it for any hints. Lemme know how that goes. Quote Link to post Share on other sites
unplugged_web 2 Posted October 25, 2007 Author Report Share Posted October 25, 2007 Depends on how the error message was set up. If your "jsp" files were configured to upload a PHP file onload of an error message then you should look for .php tags. Same with HTML, XHTML, CSS, + many more. Check them all because they could all be possiblitys. If a code looks like it could upload a file on an error then search for the file and look inside it for any hints. Lemme know how that goes.Nope still no luck. I did find a .class file, but couldn't open it. It said that the jar file couldn't be launched and to check the console for possible error messagescould tha be anything to do with it and how do I open it if it is?Sorry, but thanks for your help Quote Link to post Share on other sites
SpOrTsDuDe.Reese 1 Posted October 26, 2007 Report Share Posted October 26, 2007 Go to your error message pages and find the error that is to be loaded on error of whatever your problem is (im tired and forget). When or if you find the error page(s) then modify them so that you know what they mean. Then try to load the error message and see which one you get. Let me know which error message (if any) you get. Quote Link to post Share on other sites
unplugged_web 2 Posted October 26, 2007 Author Report Share Posted October 26, 2007 Go to your error message pages and find the error that is to be loaded on error of whatever your problem is (im tired and forget). When or if you find the error page(s) then modify them so that you know what they mean. Then try to load the error message and see which one you get. Let me know which error message (if any) you get.Sorry to be such a nuisance, but that is what I'm having problems with - finding the files that have the error message. I've searched the entire site for the exact wording contained in the error message, but the results said that there wasn't a single occurance in the site. Could it be I don't have all of the files? Quote Link to post Share on other sites
SpOrTsDuDe.Reese 1 Posted October 26, 2007 Report Share Posted October 26, 2007 Try creating your own error message using your control panel. Change that .class file to something you yourself have created. Make it basic as not to waste time. Quote Link to post Share on other sites
unplugged_web 2 Posted October 26, 2007 Author Report Share Posted October 26, 2007 Try creating your own error message using your control panel. Change that .class file to something you yourself have created. Make it basic as not to waste time.Thanks, I'll do that Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.