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 Rhinorhino 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: mingus
  • Content: Threads
  • Order by date
  1. mingus

    Scope of Instance Variables in Custom Tag

    Say you have a class with an instance scope like belong. Once you set the variable you set it not for just the current user but all users of the web site. How can I can I make an instance variable accessible to only the current session? Below "a" is only null the first time any user hits the...
  2. mingus

    Tomcat 5 Issue

    Hi! I am trying to get Tomcat 5 to work with JSP tags I have the a page that does this: <mytags:tag1> <mytags:tag2/> </mytags> It works in Tomcat 4. It doesn't in Tomcat 5. It I take out the nested tag, tag2, and put in text the things work. Tag1 is a conditional which does...
  3. mingus

    Free Disk Space

    How do you get the amount of disk space free on a drive in Java? thanks for any help mingus
  4. mingus

    NTLM Auth

    If I add the following two lines to do NTLM Authorization: response.setStatus(response.SC_UNAUTHORIZED); response.setHeader(&quot;WWW-Authenticate&quot;, &quot;NTLM&quot;); Then form data past in form using POST is gone! GETs still work, but the POSTs fail. So how do undo the response...
  5. mingus

    AgDigitalIDStep2

    In the very last step of AgDigitalIDStep2 I get a 403 error. Anybody have any clue? I can't get SSL on the my new box!
  6. mingus

    SSL Help

    Okay I've read the &quot;How To&quot; document but I still don't get SSL to work with Apache. I can get it to work on one server but on another when to go to https://www.ick.net It chnages that to: http://www.ick.net:443 Anybody know why? Any really good trouble shooting docs on SSL and...
  7. mingus

    Displaying SWF/Flash files from database

    I have a pretty simple custom tag that displays a JPG which is stored in the database. I tried to use the same method to get a SWF file but it fails to display. Anybody have any clues? The JPG tag looks like in file showImage.sjp <%@ taglib uri=&quot;/p.tld&quot; prefix=&quot;p&quot...
  8. mingus

    Newbie Flash/HTML question

    I have some flash files in a database. Is it possible to show them straight from the database or do I need to save them a file first? The attempts call a Serlvet which writes the bytes of the file fails to display the movie, although if I save to a file and call that file name it works fine...
  9. mingus

    ASDI and Java

    Windows has something called the Active Services Directory Interface (ASDI). I am trying to get data from it via Java. I have looked for help, but keep getting rather vauge answers. (&quot;It's like LDAP using JNDI, but...&quot;). I never used LDAP and until today never heard of ASDI. My...
  10. mingus

    Reuse same custom tag on same JSP page

    I am trying to use the same tag on the same page: <t:checkSecurity status=&quot;ah&quot;/> <t:checkSecurity status=&quot;ah2&quot;/> When I pritn out the contents of stuff I only see the second tag beign fired in doEndTag(). Any Reason? Any clues out to re-use a custom tag?
  11. mingus

    crossContext via custome tags

    I have a server which has multiple applictions. However they all share the same login and I wish all the same session information. I have set them up to use a shared classes and lib area and under webapps I put the JSP pages and any classes that is unique for that application. So I have...
  12. mingus

    Reporting on Table Use

    Is is possible to get a report from SQL Server about either: - how many times a table has been used - when the last time a table was used (queried, changed) I have a big database and I think some of the tables are bunk. But I am not 100% sure, so if I could verify they haven't been used...
  13. mingus

    Web Progamming: Detecting Conneciton Speed

    Is there a pre-canned Java way I can &quot;borrow&quot; that will give an estimated of user's conneciton speed to my site? I can how long it took for action &quot;A&quot; took for a user, but doesn't tell me the speed of their connection! mingus
  14. mingus

    What does T312461mean?

    When I do a browser detect I get the string &quot;T312461&quot; sometimes in conjunction with IE. These browsers also happen to given my web site fits, but I can't figure out what &quot;T312461&quot; so I can get one to test with! thanks, mingus
  15. mingus

    Killing TCP/IP connection

    I can to a netstat and see the connection the I wish to kill, but I haven't figured out how to kill yet. So how do kill a TCP/IP connection from the command line on Windows. mingus
  16. mingus

    Good for for ASP newbie, but Web expert

    I am new to ASP. We have a small site for internal only that they want to use IIS and ASP on as a trial of how it well it does things. I have done Perl, Java, C, etc. and have done Web Programming for 5 years. Might not be an &quot;expert&quot; but I know my way around. So I am looking for a...
  17. mingus

    Genral Design Question

    have been thinking that it might be smart to take our home page and move it to a non-SS site. Why? Well we get people trying to scam into our site, at one point 120 requests came in for our front page in less than 10 minutes. With the home page creating a new session and have access our...
  18. mingus

    Listeng of current connections

    I want to know how many current open connections I have. I've done it before, but can't figure it out this morning. thanks
  19. mingus

    Query being slow

    Okay I am sure this another stupid thing I am over looking, but after a few hours I don't where to look anymore. I have the same database on two boxes. Well they should be the same. One both I issue the command: SELECT count(non_index_col) FROM BIG_TABLE The table has 8 million records in...
  20. mingus

    DTS cannot file the file

    I run the dtsrun command on a couple machines and works fine. I run it on another and it says it cannot find the file. Enterprise manager says the same thing, although it can find the database and everything else just fine. Anybody have a clue? (I just spent an hour trying to find the answer...

Part and Inventory Search

Back
Top