Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. henryhandle

    jsp and sun application server

    Hi, I am using sun application server and I have a smal hello World jsp file. Where shall i put this file in server to be accessed? Where i find a good and easy tutorial to understand how could be a web -project created and haw could be this project accessed in application server? Best...
  2. henryhandle

    make a log file and register user's ip address

    Hi , i have in a local net (win xp professional) a directory, which is accesiable and other users in net can write and read from this directory. I will now to make a log file and register the ip address of user, when user access and open this directory is there a way to do it? thanks
  3. henryhandle

    how delete file in Tomcat ROOT directory

    hello, i create with jsp text files in webapps/RooT directory of Tomcat. Now f i want to delete this file, i must shutdown tomcat and dann delete!! Whay i can't delete my files manually or from applikation ?? what should to be changed in Tomcat ?
  4. henryhandle

    servlet read immediately, befor input

    this is my solution: String name; if( (name = request.getParameter("name"))!=null){ { name = request.getParameter("name"); String addr= request.getParameter("addr"); } thanks
  5. henryhandle

    servlet read immediately, befor input

    ServletA create a form and will get input from form and analyse it: ServletA: public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { out.println(" <form action=\"/servletA" method=\"POST\">"); out.println("<input...
  6. henryhandle

    analyse formular data in servlet

    i tried this, what you said before i wrote the message, but it was probably other bug, which confused me! it works as you said! thanke you
  7. henryhandle

    analyse formular data in servlet

    i have to servlets . in servletA i have a form and action and submit button (<form action=servletB method=POST> <input type=submit Value="Submit") I send with submit data to the secound servlet, servletB and this one get data and analyse it. Now i will instead of to send this data to servletB...
  8. henryhandle

    transform xml to xhtml

    maybe i did'nt understand something important, what is the goal of this javascript to make an output file or only to let browser to show the result of xml and xsl files (without generate of file)? that is what i understand, when i use this Javascript: get in Javascript two parameter: myxsl.xsl...
  9. henryhandle

    transform xml to xhtml

    hello, it still dont work :( in browser is javascript enabled too! please have a look in my xsl and xml files. maybe you see what is wrong! thanks! here are both files: <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="myxsl.xsl"?> <Job> <JOBID>14586</JOBID> </Job> ######## <?xml...
  10. henryhandle

    transform xml to xhtml

    thanks, <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="myxsl.xsl"?> <Job> <JOBID>14586</JOBID> </Job> ######## <?xml version='1.0'?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"/> <xsl:template match="/Job">...
  11. henryhandle

    transform xml to xhtml

    hello, I 'm trying to transform XML to XHTML in Browser and i use this Javascript to make a Sever side transform: <html><head><title>SML</title> <script language="JavaScript"> function transformXXX(){ var xml = new ActiveXObject("Microsoft.XMLDOM") xml.async = false xml.load("myxml.xml")...
  12. henryhandle

    how to rea this access text type

    thanks, P1) there is no tools -> pereference only tools -> options and under Options i didnt find somewhat to has relation with library !! p2)select comic_colum from comic_table where comic_colum = 12345 how can i compare the valus of this colum(f.e. \_\14053)with number...
  13. henryhandle

    how to rea this access text type

    I cant run this statement from access too!!!. In access a becomm the same Error (undefined function)
  14. henryhandle

    how to rea this access text type

    After I was in wrong forum try it here again I have this colum, ordernumber (type is Text) with values like this: \_\14053 11115 \_\14092 1010 if i read with select ordernumber from ordertable I get a data type error ! With this query, which has been recommended in other forum: Select...
  15. henryhandle

    how to read this funy access type

    i read data via a servlet from access database!
  16. henryhandle

    how to read this funy access type

    >What is the underlaying database ? ERROR: java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Undefined Funktion 'Replace'
  17. henryhandle

    how to read this funy access type

    thanks for your hints, but i use accesss 2002 I becomm with your Command undefined function Replace error from the microsoft odbc driver:(
  18. henryhandle

    how to read this funy access type

    I have this colum, ordernumber (type is Text) with values like this: \_\14053 11115 \_\14092 1010 if i read with select ordernumber from ordertable I get a data type error ! How could be for example only the 14053 read? Thanks for your advance
  19. henryhandle

    Converting problem

    Converting problem How can I convert this float type 12.56758858 to 12:56 hour ??

Part and Inventory Search

Back
Top