Forum: JSP May 18th, 2007 |
| Replies: 7 Views: 12,063 On thing I would say is "Just Say NO!" to MS SQL 2000... It is NOT a good DB... it is prone to deadlocks and on any serious system it will be a serious weakness... the number of concurrent... |
Forum: JSP May 18th, 2007 |
| Replies: 5 Views: 1,541 Add some debug code, skip the actual file write for now... place output statements to show the values of the parameters... if you try to read a parameter that doesn't exist you will have a... |
Forum: JSP May 18th, 2007 |
| Replies: 3 Views: 2,688 First, be a little nicer about how they wrote their question. NOT all people using these sites are native or even good English speakers...
If the question seems to make sense which this one does,... |
Forum: JSP May 18th, 2007 |
| Replies: 2 Views: 1,658 Without further investigation I can't promise that I am the right track here... But it may be in the url encode and url decode that is taking place... the "+" is the encoded space " " the first... |
Forum: JSP May 18th, 2007 |
| Replies: 3 Views: 21,275 It is pretty basic, Each time a browser accesses your web application for the first time a session is created... want it or not... this session doesn't mean anything unless you use it... but it... |
Forum: JSP May 17th, 2007 |
| Replies: 4 Views: 3,420 The links provided to Marty Hall's book info have some valid information, but they book is not good, Marty Hall intentionally avoids anything useful in all but the most trivial applications. Also... |
Forum: JSP May 17th, 2007 |
| Replies: 2 Views: 1,092 The simple answer here is to do some debugging by putting some debug code into your class.
Start by setting a starting value to rating such that you have,
String rating = "Rating Not Null";
... |
Forum: JSP May 16th, 2007 |
| Replies: 3 Views: 2,762 OK, first of all, what DB are you using?
Second, where are you doing the formatting, in JSP, in the Servlet or in the Bean?
Depending on the DB you use, you should be able to set a limit and and... |
Forum: JSP Apr 28th, 2007 |
| Replies: 26 Views: 7,438 The answer to that is, no comment... ;-) |
Forum: JSP Apr 27th, 2007 |
| Replies: 1 Views: 1,642 I am not sure exactly what you are trying to do here, so if I am off a great deal, please forgive me.
If you have 2 different "applications" they are isolated by Tomcat, though a workaround may... |
Forum: JSP Apr 26th, 2007 |
| Replies: 26 Views: 7,438 Java is a powerful tool. Not as powerful as a C/C++ tool could be, but MUCH easier to use and faster to develop with. Easier to troubleshoot, etc..
I learned programming long before Java was an... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 8,755 In MS IIS you can create a web share out of any folder on the machine, and assign it a URL in the IIS admin tools, so you very well could use My Documents if you really wanted to... But... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 8,755 I just want to say that you are misleading a bit about the behavior of div tags in the respective browsers... You describe 1 case where they are used in one way. The problem is that when you, as... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 8,755 Ok, it isn't actually a PHP thing to use index.php or similar as a central hub and feed contents based on parameters... MOST enterprise solutions basedon Java do this too... they will have 1... |
Forum: JSP Apr 26th, 2007 |
| Replies: 26 Views: 7,438 Originally J2EE was a short acronym for a Java platform variant for each version....
Thus Java 1.2 (Called Java 2) had J2SE and J2EE (Standard Edition and Enterprise Edition) respectively. The... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 8,755 Again, I reply with use what works for you, but think it out thoroughly before you being...
A finely tuned file system is AS importantant as a well designed database schema... yet it is where... |
Forum: JSP Apr 25th, 2007 |
| Replies: 4 Views: 2,705 Application scope, as mentioned, is for sharing data among ALL sessions within an application... this can be useful for many purposes, often a hit count is used as an example, BUT that is a... |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 8,755 Matt, I agree, the most important thing is being conisistent... cool we agree to agree, new one on me there...
About the variable naming though... This goes back to OOP, if you need to change... |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 8,755 I say, typically, you should use the full standard method of delcaring your PHP code sections as suggested above.
BUT, the following guidelines can help anyone who has this question:
If you plan on... |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 8,755 Interesting that you say prefixing type doesn't hold hold up indefinitely... you have used a rather silly example, if anyone was stupid enough to call something just "box" then they deserve to have... |
Forum: JSP Apr 18th, 2007 |
| Replies: 4 Views: 1,462 You guys are missing the point, this person wants to go other way... they have a date, in a string they want to get the timestamp object that equals that date.... not the other way around...
... |
Forum: JSP Apr 18th, 2007 |
| Replies: 4 Views: 2,231 Yes, and we have someone else who seems to think logging does apply to JSP... and winner is.... well the person who asked the questions originally then isn't it.. ;-)
Does sarcasm play well in... |
Forum: JSP Apr 17th, 2007 |
| Replies: 26 Views: 7,438 I use ASP/ASP.Net and VBA at work from time to time... more often than I would like to be honest... What you have to realize is that VB (Visual Basic) was Microsoft's way of reviving the BASIC... |
Forum: JSP Apr 14th, 2007 |
| Replies: 4 Views: 2,768 First of all, it doesn't matter what you did with the .java file... Tomcat really cares about the servlet .class file
You have to tell Tomcat what you call your servlet within the web.xml file...... |
Forum: JSP Apr 14th, 2007 |
| Replies: 5 Views: 8,211 OK, so you have the excel converted to Access and I assume you can access the Access to query the data. That is a confusing statement... anyway, you will want to format a table that can be included... |
Forum: JSP Apr 14th, 2007 |
| Replies: 4 Views: 2,231 How you can say logging is not related to JSP.... are you suggesting that logging can't be done in JSP? If so, then JSP designers seems to have missed something that is vital to all programming and... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,617 Glad to hear it, it would be great if you could share a short message about what the problem turned out to be, so others who read this, who perhaps have similar issues, will learn from your... |
Forum: JSP Apr 13th, 2007 |
| Replies: 26 Views: 7,438 Now, for some programming advice...
using Java & JSP is not so hard...
You can put all the code into the JSP pages, you can separate some or all of your logic into servlets (small independant... |
Forum: JSP Apr 13th, 2007 |
| Replies: 26 Views: 7,438 Now I have not seen the site in the link above and jwenting and I have had words over "opinion" about what is right and what is not... Unfortunately, I find his posts to be very little help to most... |
Forum: JSP Apr 13th, 2007 |
| Replies: 5 Views: 8,211 If you want to work with Excel, you should look at using ASP rather than JSP... there are many ActiveX controls which would allow the Excel sheet to edited inplace on the browser...
Now that I... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,462 use
DateTime.parseDateTime(String)
or
DateTime.parseDate(String)
Each will return a DateTime object from a string in a standard format... if it doesn't inderstand the string it will throw a... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 2,175 see my first post above... unfortunately for JSP the return characters at the end of each line are sent to the response buffer, so by the time you get to you include directive, you already have... |
Forum: JSP Apr 13th, 2007 |
| Replies: 3 Views: 3,397 See I am not sure what you mean there... could you please explain a little more? |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,617 Can you provide more specific details about what you have done, are trying to do?
If you separate the logic and presentation then you need to pass state between the logic component and the... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 2,175 Again, perhaps I can help more if you provide more details about what you are trying to do... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 2,175 What are you referring to? typically the problem with include files is that the response buffer either contains data already or has been sent... you can't change what is buffered or sent but you... |
Forum: JSP Apr 13th, 2007 |
| Replies: 3 Views: 3,397 Can you please explain what you are referring to a little better?
Vector was like an array that grew as needed, but its performance is not very good, since linkedlist has been enhanced and... |
Forum: JSP Apr 13th, 2007 |
| Replies: 2 Views: 3,417 Push, can you provide a little clearer post with more specific details about what you are trying to do and what the problem is...
typically in JSP you would use the useBean tag to indicate what... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 10 Views: 2,549 I totally agree on all points above, running Perl on Windows would be better even than running ASP on Windows in my opinion ;-)
I learned Perl & CGI back in about 94 or 95... A good friend, who... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 10 Views: 2,549 Air is a drug, and we're all addicted to it ;-)
OK, thanks, that is where I was trying to go here... I suspected that you didn't have anything running on the server to write the data to the... |