Aug 25, 2003 #1 yytan Programmer May 8, 2002 113 MY hi there; i am wondering whether can call servlet from my java app. program? let say in dos promp i type: > c:\ java TReport then it will conn to db and retrieve field from db after that, i want to pass the data to servlet.
hi there; i am wondering whether can call servlet from my java app. program? let say in dos promp i type: > c:\ java TReport then it will conn to db and retrieve field from db after that, i want to pass the data to servlet.
Aug 25, 2003 #2 maxpower1 Programmer Jul 29, 2001 488 US servlets are java class files. Hence, you can instantiate the servlet classes from your "regular" java class.Everything is object in java. However, servlets are typically built for web apps. ~za~ You can't bring back a dead thread! Upvote 0 Downvote
servlets are java class files. Hence, you can instantiate the servlet classes from your "regular" java class.Everything is object in java. However, servlets are typically built for web apps. ~za~ You can't bring back a dead thread!