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 Chriss Miller 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: *

  • Users: Vadim
  • Content: Threads
  • Order by date
  1. Vadim

    Connect to IBM i (AS/400)

    I have a lot of Excel files with VB macro that connect to IBM i. I connect to IBM i with this string ---------------------------------------------------------------------- Function open_con() cnMYAS400.Open "provider=IBMDA400;data source=192.001.01.99;User Id=myuid;Password=mypwd;" Set...
  2. Vadim

    Tomcat 5.5 cannot find a servlete

    I've got status error 404 for this address: http://localhost:8080/servlet/dcfrtbill.DcFrtBil?STORE=ALL&FromDate=10/9/2005&ToDate=10/9/2005&repType=B&filter=A Same address works fine on Tomcat 4.1 but on my new computer with Tomcat 5.5.9 did not. Actually it did not found any servlet. I checked...
  3. Vadim

    TypeError on Date()

    This line: var date = new Date(new Date() - 86400000); gave me an error - 'Object doesn't support this action'- but same line work in all others of my pages. What is wrong?
  4. Vadim

    HTML to PDF conversion

    Is it any possibility to convert HTML file that was generated by JSP to PDF? I mean to change content type of JSP to application/pdf and get result as PDF. If there is no simple way to do it - I'd like to know is there a software that I may buy for that purpose?
  5. Vadim

    change onclick function() for table cell

    I tried to change "onclick" function after some action: document.all[cell].onclick= function(){ rtvItem(Str, Sku, Seq, Desc , Reason, RaNum, Markout, Recall, this.id, "UPD");}; But this cell still keeps old function parameters. Is somebody may tell me what is wrong?
  6. Vadim

    Tomcat 5.5.9 Dos panel

    I loaded Tomcat 5.5.9 on my PC. Now, it do not starts from DOS panel. I use it a lot for debug purposes to output some values or to see what the error occured. Is it any way to change configuration to see this panel? Or is any script that may be used for that purpose? Thank you
  7. Vadim

    How to sent htnl from server to Ip printer?

    Hi, I need to print some labels from PocketPC. Window CE does not have printing capabilities, so I want generate html on my tomcat server and then somehow to sent it to network printer directly. Is it possible?
  8. Vadim

    How to recognize PDA

    Is it possible for javascript to recognize if page running on PDA.
  9. Vadim

    Multiple HTMLs open in 1 window

    Is it possible to open several html documents in one window? The reason of that to print them all together.
  10. Vadim

    How to change jsp:plugin to call war file

    Now I use this string: <jsp:plugin type="applet" code="ztest.App01.class" width="200" height="300" codebase="/applet"> </jsp:plugin> This string is work. I create .war file inside /applet/ztest folders. Please, tell me how to change <jsp:plugin>...
  11. Vadim

    Cannot open Excel file in browser

    I have application that shows link to some documents that could be MSExcel, MSWord and PDF. The Word document and pdf open correctly in browser with word or acrobat browser extensions. Excel files do not start as excel in browser, but show data stream, like when you open them in notepad. How...
  12. Vadim

    Save tempreture daily

    My company want me to create an application to save daily tempreture at our stores locations. For right now, they think about just data entry program. I'd like to know if there is a way to stream data from Wheather channel or other sites directly to file or maybe some software that will do that.
  13. Vadim

    Listener for page-break-before:auto

    As I understand <THEAD> is not repiting after page break in IE6. Right now my page forces page break on certain line and then repeat heading, but it is not suit well my purposes. So, I'd like to know if I can make page break listener for "page-break-before:auto" - to print table heading on...
  14. Vadim

    calc.exe in javascript

    Is it possible to launch calc.exe in javascript? Same as: <script language="vbscript"> Sub launchCalc() Set WshShell = CreateObject("WScript.Shell") WshShell.Run "calc.exe" End Sub </script>
  15. Vadim

    Cannot forward session to another destination

    1. Test Application: ______________________________________________ <jsp:include page="ChkLogin.jsp"> <jsp:param name="APPL" value="PAYROLL" /> </jsp:include> <% int iSession = tomcatsecurity.SessionGuard.getActiveSessions(); %> <HTML><HEAD><BODY >...
  16. Vadim

    Redirect from session listener

    I created a session listener for my tomcat - it works. I'd like to know, if this listenere may redirect users to login page, when they are not login yet?
  17. Vadim

    User Validation JSP on Tomcat

    I have a user authentication JSP that check users against some file and return info if they may or may not see selected application. Early, I have a small number of such pages and added that user validation code to each checked page. Now, I need to add it to almost all my pages. Is it...
  18. Vadim

    Get user name on linux box

    My server run tomcat4.0 on linux box. I do not use authentication scheem, but users authenticate by http server. Of course, request.getRemoteUser() show null. Actually, I need that different employee groups has a different home page. Is it possible to get name of internet user that...
  19. Vadim

    Problem with date calculation.

    I tried to populate my <select> field with weekending dates, and found that it work fine until 04/11/2004. You may also try this: ========================================================= sunday = new Date(2004, 3, 11); sunday.setTime(sunday.getTime() - (6 * 86400000)); alert(sunday); sunday =...
  20. Vadim

    How to tun servlet in Tomcat 5

    I loaded Tomcat on my new computer. When I run this string: "http://134.256.34.51:8080/servlet/salesreport3.Salesreport03?ReportId=3" It give me the 404 error: HTTP Status 404 - The requested resource (/servlet/salesreport3.Salesreport03) is not available. The JSP pages are working fine. My...

Part and Inventory Search

Back
Top