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

    RDP got slow (VNC is still fast). Help!

    Wierd one here. We just moved hosting locations and now RDP is horribly slow. It is almost like it is buffering its responses and only sending a refresh every 30 seconds or so. I connect to the same server with VNC and its responding in real-time. I connect to both VNC and Remote Desktop at the...
  2. siberian

    Case insensitive Realm usernames

    Hi all, this is a rehash of my previous question located here: thread877-866113 Basically, is there a way using tomcat realms to get the usernames to be case insensitive? My users are getting confused and its creating issues for my support folks. Using JDBC realms if it helps. I'd rather...
  3. siberian

    pop3 authentication

    Has anyone seen a solution for this for standard apache (yea I can do it in mod_perl I know). There is the mod_authn at sourceforge but they have not released the pop3 module and I can't get anything to compile out of CVS. Thanks! Setting up dspam and it would be a lot nicer to authenticate...
  4. siberian

    Relay to 100's of domains...

    I can easily get postfix to relay to a list of domains using the 'relay_domains' parameter. The problem we have is that we have literally hundreds of domains that are in a constant state of flux. Managing that list is a real pain. What we would like to do is tell postfix 'only relay if the...
  5. siberian

    Case insensitive JDBC realms?

    Is there a way to make a standard tomcat JDBC realm case-insensitive? My users are getting confused (suprise!) when 'Dennis' does not equate to 'dennis'. Thanks for any pointers, I'm even open to 3rd party realms configurations, I am thinking that stock realms won't do this but its worth a check!
  6. siberian

    Log rotation

    How do you folks handle log rotation under Windows when you are deploying an app into an environment you do not control? For apache its not so bad, you can limit logging but for tomcat, even when you set the log level to 0 and turn-off auto-deploy it still writes to the log on a pretty...
  7. siberian

    Problem with HttpsURLConnection and post (getOutputStream)

    I am trying to use the HttpsURLConnection as described by sedj in previous posts in the archives and its just not working. The urlConn variable is properly instantiated but when I try to grab the getOutputStream so I can post my XML to it the code exits without even an exception. Anyone have...
  8. siberian

    Currency localization

    I am getting the following error when attempting to use a currency type in my ApplicationResources.properties file root cause java.lang.IllegalArgumentException: unknown format type at at java.text.MessageFormat.makeFormat(MessageFormat.java:1426) at...
  9. siberian

    Syncronized vs. DB Transaction

    I have a table that I need to make sure is updated in a transactionally clean fashion. Meaning only one client can update it at a time. Usually I do this using SQL transactions and it works fine (other then the potential for long lived database locks in certain circumstances) but I am now...
  10. siberian

    Tomcat connections not returned?

    I'm using Tomcat connection pooling. I've abstracted the get db and release db functions into an object that looks like this : import java.sql.*; import javax.sql.DataSource; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; public class...
  11. siberian

    Setting UTF8 in tomcat or struts?

    Is there a config element in tomcat that will force it to output utf8? I know I can set it on the servlet response but I'm using struts so there is no consistent servlet response object to pull it from. Tx
  12. siberian

    4.0->5.0 migration

    Hi all- I am in the final stages of building an app that is running on tomcat 4.0 (latest). Is moving to 5.0 seamless or are there significant configuration changes? Any specific gotchas? My config is very basic, the only configuration thing I am doing is a JNDI datasource in the server.xml...
  13. siberian

    Obtain local IP of users machine

    Is there a JS function to obtain the IP of the users local machine? The external gateway that the webserver gets is not sufficient for users that are behind NAT. Thanks
  14. siberian

    Templating System?

    What are the favorite template systems in use by people here? I'm trying to find a simple, not super feature rich basic template system for use with jsp. The only real desired feature would be a single 'master template' that all other content slides into and requires minimal configuration. So...
  15. siberian

    Printing multiline text strings

    Is there an easy method of printing multi-line text? So, instead of out.println('Dear Sir,'); out.println('It has come to our attention that you are'); out.println('not paying your bills! This is a terrible'); out.println('and horrible thing and we think you shoud'); out.println('be aware of...
  16. siberian

    Easy basic java question

    Haven't touched java in about 5 years, been in the perl world. What i am trying to do is use one method for my setter and my getter in a class. Here is how I *think* it should look. <pre> ---- protected int test_var ; public int test_var(int new_test_var) { if(!new_test_var){...
  17. siberian

    JDBC connection pooling

    Hello all, long time answer giver in the perl forums, first time question asker in the Java forum :) I am designing my application and I am trying to get a solid handle on how JDBC handles database connection pooling. With Apache::DBI I know that each database has its own handle and these...

Part and Inventory Search

Back
Top