Search Results

Showing results 1 to 40 of 62
Search took 0.02 seconds.
Search: Posts Made By: jwenting ; Forum: JSP and child forums
Forum: JSP Sep 12th, 2008
Replies: 3
Views: 2,533
Posted By jwenting
no company gives a rookie a project to run on his own.
no company gives anyone a project with no specs except "we want an online examination system".
no company would give that rookie a deadline of...
Forum: JSP Sep 11th, 2008
Replies: 3
Solved: javabean error
Views: 810
Posted By jwenting
What does this have to do with JSP anyway?
Forum: JSP Sep 2nd, 2008
Replies: 2
Views: 1,250
Posted By jwenting
says it all. Toplink can't find the jdbc driver for the database you're telling it to use.
Supply the driver and you'll get another error (or it might even work if everything else is correct).
Forum: JSP Jul 9th, 2008
Replies: 4
Views: 1,066
Posted By jwenting
but what the heck does this have to do with JSP?
DSN is an ODBC concept, and has no relation to Java whatsoever.
It's also an utterly outdated concept for for example .NET.
Forum: JSP Jul 8th, 2008
Replies: 7
Views: 1,559
Posted By jwenting
and of course you should not do anything except displaying the results from a JSP.
Forum: JSP Jun 22nd, 2008
Replies: 3
Views: 899
Posted By jwenting
if it says it doesn't exist, it doesn't exist. So you're missing those classes or don't have them in the right place.
NEVER try to second-guess error messages, they're correct (if sometimes a bit...
Forum: JSP Jun 19th, 2008
Replies: 4
Views: 1,099
Posted By jwenting
that's one bad JSP. Scriptlets, no proper headers, etc. etc.
Forum: JSP Jun 18th, 2008
Replies: 25
Views: 15,444
Posted By jwenting
an even simpler solution is to check the timestamps on posts before replying to them...
Forum: JSP Jun 16th, 2008
Replies: 2
Views: 1,369
Posted By jwenting
says it all. You don't have permission to read that file.
Forum: JSP Jun 11th, 2008
Replies: 4
Views: 1,099
Posted By jwenting
by reading the tutorials that come with it and the JEE distribution from Sun.
Forum: JSP Jun 9th, 2008
Replies: 3
Views: 4,187
Posted By jwenting
and don't revive old dead threads to post nonsense "solutions".
Forum: JSP Jun 5th, 2008
Replies: 6
Views: 2,310
Posted By jwenting
and it seems the kid also misses a basic understanding of classpaths, server configuration, and a lot of other things quite apart from not knowing Java and having the terribly bad idea of using...
Forum: JSP May 28th, 2008
Replies: 23
Views: 2,319
Posted By jwenting
kid's still insisting on doing database access from JSP.
Maybe if it would stop trying that it would get somewhere...
Forum: JSP May 21st, 2008
Replies: 3
Solved: jsf
Views: 769
Posted By jwenting
I'm doing a bit of Oracle ADF, quite nice.
Forum: JSP May 15th, 2008
Replies: 1
Views: 856
Posted By jwenting
yup. At least 2 ways.
1) generate a bitmap using something like JFreeChart from a servlet that you link to through an image tag.
2) generate it as text using some CSS magic to make it look nice.
Forum: JSP May 9th, 2008
Replies: 6
Views: 4,621
Posted By jwenting
no. But when you go to that JSP you immediately create a new session :)
Forum: JSP May 8th, 2008
Replies: 4
Views: 1,249
Posted By jwenting
It is rubbish. It is fundamentally flawed by design.
If you don't want to hear advice you don't like, don't ask questions.
Forum: JSP May 7th, 2008
Replies: 4
Views: 1,249
Posted By jwenting
Redo from start.
Not urgent.
Rubbish code.
Forum: JSP May 2nd, 2008
Replies: 2
Views: 1,255
Posted By jwenting
you should be able to do the entire project in a day or two if you type at a less than glacial pace.

We're NOT going to help you cheat on an assignment you had 2 months for that you can do in 2...
Forum: JSP Apr 30th, 2008
Replies: 6
Views: 3,065
Posted By jwenting
Most likely your html is not valid, and IE and FF deal with those errors differently, with IE being more successful at it than FF.
Forum: JSP Apr 24th, 2008
Replies: 11
Views: 1,894
Posted By jwenting
and that's after you stop trying to place business logic in JSPs.
Forum: JSP Apr 9th, 2008
Replies: 3
Views: 1,287
Posted By jwenting
not. That's not what JSP are to be used for.
Forum: JSP Apr 4th, 2008
Replies: 7
Views: 12,778
Posted By jwenting
classic example of "gif mi zu koduz", aka a homework kiddo that can't be bothered to do its own homework.
It probably didn't even bother to read the documentation I supplied, far too much trouble.
Forum: JSP Apr 2nd, 2008
Replies: 3
Views: 1,015
Posted By jwenting
A bean has no "value".
What "doesn't work" anyway?
What do you expect to happen and what do you observe as happening?
Forum: JSP Apr 2nd, 2008
Replies: 7
Views: 12,778
Posted By jwenting
4 letters: RTFM
http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpServletRequest.html
Forum: JSP Mar 24th, 2008
Replies: 3
Views: 1,638
Posted By jwenting
hmm, most of those "tutorials" are either utterly and totally wrong or hopelessly outdated, "teaching" the JSP 0.9 coding style which has been out of favour with every serious code for the better...
Forum: JSP Mar 17th, 2008
Replies: 5
Views: 1,871
Posted By jwenting
pass the selected value back and set it as the "selected" attribute of the dropdown.
Forum: JSP Mar 16th, 2008
Replies: 5
Views: 1,871
Posted By jwenting
says it all, that variable doesn't exist...
Forum: JSP Mar 16th, 2008
Replies: 2
Views: 2,015
Posted By jwenting
not urgent. Come back next year.
Gives you time to learn about code tags, html, Javascript, Java, JSP, etc. etc.
Forum: JSP Mar 16th, 2008
Replies: 6
Views: 1,679
Posted By jwenting
usually you have a list of words and check each word against that list.
There are more advanced systems that do full lexical analysis to also take context into account but you're not ready for those.
Forum: JSP Mar 15th, 2008
Replies: 7
Views: 4,929
Posted By jwenting
if you're really a university student you above all have to use your own judgement and think for yourself.
When presented with a bad example you should have the intelligence to detect that and not...
Forum: JSP Mar 15th, 2008
Replies: 7
Views: 4,929
Posted By jwenting
yes, NEVER use Java scriptlets in JSP code.
NEVER do database operations from JSP.
ALWAYS use PreparedStatement for database operations.
ALWAYS use parameterised queries for database operations.
...
Forum: JSP Mar 3rd, 2008
Replies: 3
Views: 1,899
Posted By jwenting
That's an html question...
You need to set the target attribute of the a tag to a non-existent frame, that's all that's required.
Forum: JSP Jan 27th, 2008
Replies: 2
Solved: jsp and oracle
Views: 1,442
Posted By jwenting
You should NOT connect to anything from a JSP. Do that in a servlet (or rather a business logic class called from a servlet) which the JSP form points to.
The servlet can then forward the request to...
Forum: JSP Jan 27th, 2008
Replies: 2
Views: 660
Posted By jwenting
as is a totally free version of Oracle 10g, and a development license of Oracle 11g Enterprise :)
Forum: JSP Sep 21st, 2007
Replies: 21
Views: 19,368
Posted By jwenting
if this site is going like the Sun forums we'll see kids requesting "send me ze koduz" for years to come.
Forum: JSP Aug 9th, 2007
Replies: 3
Views: 1,043
Posted By jwenting
You obviously don't return the values to the page for display after you handle them.
Forum: JSP Jul 19th, 2007
Replies: 2
Views: 1,675
Posted By jwenting
this has nothing to do with JSP...

And you seem to have defined your instance (I hope) variable conn as being of the wrong type.

Anyway, what you're doing is terrible. You should never open...
Forum: JSP Jun 23rd, 2007
Replies: 13
Views: 4,746
Posted By jwenting
idiotic and highly dangerous to have anything in place that can bypass the normal request/response system and call any method it wants directly.

Security leaks guaranteed, such a thing is a major...
Forum: JSP Jun 20th, 2007
Replies: 13
Views: 4,746
Posted By jwenting
like I said, you don't realise what you're dealing with here.

What you're effectively saying is that you want to call private method on a class without having access to an instance of that class....
Showing results 1 to 40 of 62

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC