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. dendenners

    accessing a value in css from javascript

    Hi, I'm using script.aculo.us for some effects on a site I'm building. One of the effects I'm using is Effect.highlight(). The actual code for this would be (for example) <span id="back" class="wide-button" onclick="new Effect.Highlight(this, { startcolor: '#ffffff' })"> When this div is...
  2. dendenners

    sending mail from a DMZ

    Hi, I've a linux (Redhat 8) machine on a DMZ. I want to SEND email only from this machine (only to address within our own LAN) and no email has to be received. However, when I try to send email, the following type of error is cropping up in the /var/log/maillog: (the names of the machines have...
  3. dendenners

    Connecting to sqlserver 6.5 from Linux

    Hey there I need to get a data feed from a sqlserver 6.5 database sitting on a NT 4.0 box, and populate a mysql database (on a pc running red hat 8) with this feed. I have a java program that gets the feed running on a machine running windows xp, but this uses a registry-stored ODBC System DSN...
  4. dendenners

    Parsing XML from an inputStream

    Hi there, I want to parse xml from an incoming socket stream. I want my parser to be able to respond individually to discrete xml documents arriving on the same socket (i.e. I can't use the close() method to decide when and where an xml document actually ends). I think the only way of doing this...
  5. dendenners

    writing script output to files and screen via tee

    Hi, I have scripts whose stdout and stderr output I pipe to 2 different files like so: script.sh > /tmp/out 2>/tmp/out_err I would like this output (both stdout and stderr) to also appear on the screen when I run the script. I know I could do script.sh | tee /tmp/out but this would pipe all...
  6. dendenners

    Any experts out there!!? HELP!

    You must give your <select> a name attribute, i.e. have something like <SELECT NAME=&quot;STOCK_OPTION&quot;>. Also, start and end the <select> OUTSIDE the for loop, so have <select NAME=&quot;STOCK_OPTION&quot;> <% for(...) { %> <option....> <% } %> </SELECT> Also each option must be given a...
  7. dendenners

    How to retrive hidden value in a JSP variable of the same page?

    I presume you're setting this attribute in the request prior to loading this jsp page. If you are then try using the request.getAttribute() method to read it. You don't need a hidden field unless you want to re-submit the value again via the next request.
  8. dendenners

    formatting text with spaces using printf

    Hi there. I have another question about this. I want to zero pad a number of the form '12345+' where the plus signifies the sign of the number. The fact that the sign is at the end of the number means that printf does not recognise it as a valid number, and therefore will not print the + when I...
  9. dendenners

    formatting text with spaces using printf

    Thanks very much
  10. dendenners

    formatting text with spaces using printf

    Hi there, I'm trying to use printf in awk to format some text a certain way. However I'm encountering problems when passing in the text to awk as a shell variable when the variable contains spaces. Say I want to use the text &quot;hello there&quot; as my formatable text. The following works...
  11. dendenners

    weblogic 5.1 dynamic class reloading

    Hello, I'm doing my weblogic development on an aix box with WL 5.1 SP10 (all development is done using expanded classes under weblogic/myserver/servletclasses, for production we use WAR files). Each time I update a class while developing it seems I have to restart the server to get it to refresh...
  12. dendenners

    parsing a cronfile

    Hi, I need to parse a cron file and find out when a specific job will next be executed on my aix box. Has anyone here seen a script to do this, and if not, do people think that awk would be powerful enough to decipher any crontab entry, including ranges, multiple comma-seperated entries and...
  13. dendenners

    finding next execution of a cron job

    Hi there, I have a crontab file with several entries. I would like the job being run by crontab to actually check the crontab file that has executed it to ascertain when exactly the job will be run next. Is there an easy way to do this or as I expect do I have to write a massive script to...
  14. dendenners

    problems re-deploying an ejb to weblogic 5.1

    I discovered the problem: The ejb classes were being deployed along with the rest of my application, so weblogic was reading these (older) ones rather than the ones in the ejb jar. Thanks anyway
  15. dendenners

    problems re-deploying an ejb to weblogic 5.1

    Hi there, I'm developing ejb's locally, and dropping them onto a remote web server. At the moment I'm debugging a bean, so I'm adding new log messages to it. However, when I view the console output from weblogic, it seems as if weblogic is still reading the very first instance of the bean I...
  16. dendenners

    noclassdeffounderror - what am I missing?

    sorry, I found that problem. In my fixation with jar files I forget to check if a free class existed with that name; it does under weblogic.classes Thanks anyway
  17. dendenners

    noclassdeffounderror - what am I missing?

    Hi there, I'm trying to test a class that will eventually run by a servlet on its own. I'm using weblogic to pick up the database connections the class needs from one of its pools. The class runs fine on my win2000 pc, but when I try to run it on an aix machine it gives me a NoClassDefFoundError...
  18. dendenners

    rdist-ing to different directories

    Hi, I have an rdist from an aix machine to a linux box. Does anyone know if it is possible to get rdist to rdist a certain directory to a different directory on the remote machine? i.e. I want to rdist a directory aaaa/bbbb/cccc to a differently named directory xxxxx/yyyyy/zzzzzz on the remote...
  19. dendenners

    oldrdist for linux?

    We run into problems with dependencies when compiling the new rdist for aix. It requires other packages to be installed as well, and we don't want to move from out current aix version, because these machines contain our mission-critical apps.
  20. dendenners

    oldrdist for linux?

    Yeah, I've looked at that one, but as I understand it that version is a newer one. You can get it to reference the oldrdist for old rdist commands,but it doesn't look like the oldrdist is included in the distribution

Part and Inventory Search

Back
Top