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

  • Users: Farab
  • Order by date
  1. Farab

    Tomcat 6.0.14 in Ubuntu

    Assuming your Catalina Base is the same as Home, the output should look like: Using CATALINA_BASE: /usr/local/apache-tomcat-6.0.14 Using CATALINA_HOME: /usr/local/apache-tomcat-6.0.14 Using CATALINA_TMPDIR: /usr/local/apache-tomcat-6.0.14/temp Using JRE_HOME: /usr/lib/jvm/java-6-sun...
  2. Farab

    filenotfoundexception with applet-servlet communication

    Which user is Apache running as? This user must have a valid home directory and be able to write to it's home directory.
  3. Farab

    Need help with multiple sites in server.xml file, almost there

    did you find your answer? if not, I'll give you some details?
  4. Farab

    Tomcat is getting confused between sites

    What does your server.xml look like? Do you have seperate context paths for each app? Are all the apps URL paths relative or do you have a configuration file for it that needs changing or worse case is it hard coded?
  5. Farab

    Apache Tomcat

    Apache is a collective name for the project that creates (amongst other things): - Apache HTTP Server (web server) - Apache Tomcat (servlet engine) Go to www.apache.org too see all the subprojects
  6. Farab

    Trigger

    I suggest you have a look at the SQL referrence guide, because there's a number of different ways to build up a TRIGGER clause. - it is possible to create a single trigger which fires on INSERT, UPDATE and DELETE - in such a case you would be able to reference OLD.column and NEW.column values...
  7. Farab

    DB2 Dirty Read

    I'm not familiar with MDB, but had similar problems when the connection to DB2 is via JDBC. You need to ensure that the JDBC connection has a Transaction Isolation Level/Mode set to something like TRANSACTION_READ_COMMITTED, since the default is normally a setting that allows dirty reads.
  8. Farab

    Dynamic allocation of EZACACHE

    Hi I've just created my first CICS region and it starts up fine, but I have an error message I would like to get rid of. The message is: DFHFC0952 CICSPSDI Dynamic allocation of Non-RLS file EZACACHE failed. Return code X'0004',X'1708' in module DFHFCFS. DFHFC0955 CICSPSDI Associated data...
  9. Farab

    E3000 boot problem

    Hi I received a Sun E3000 and have a slight problem at boot time. It's a hardware failure, but I'm unable at this stage to figure it out myself. I'd like to state that it does manage to boot and load the OS (Solaris 9) at which point I can logon (via terminal), see all disks and work...
  10. Farab

    Help with query using two fields as a range...

    select Period_Key from NBI_DIM_FISCAL_TIME_V where :Transaction_Date >= Period_Start and :Transaction_Date <= Period_End
  11. Farab

    How to determine version of Apache?

    Try 'httpd -v' in the apache bin directory. This will display the version and when it was built. There's some other helpful options like 'httpd -l' will list all the modules that are enabled and built in staticly.
  12. Farab

    Performance Question

    As far as Oracle is concerned, select field1, field2 from table1 , is going to be more expensive (slower). The reason is even though you only want two fields Oracle will get the whole row anyway. Only selecting 2 fields will save network resources if it's a client running the query, because...
  13. Farab

    procob file missing from .../bin

    Recently installed Oracle 9.2.0.1 and upgraded to 9.2.0.4. Trying to precompile a COBOL program for the first time against the new database and realised there is no procob binary in the {ORACLE_HOME}/bin directory. I assume this is because the DBA did not install it. What do you have to do to...
  14. Farab

    Bad warning when make'ing Apache 2.0.48

    I'm trying to build Apache 2.0.48 on HP-UX 11i (PA-RISC). I did a "./configure --prefix=/usr/local/apache-2.0.48 --enable-module=so --enable-module=rewrite" and then a "make". From the make output the following warnings are produced(on other modules as well, not just core.c). Is this a real...
  15. Farab

    OLE links

    We have an application that saves OLE links to documents in a database. The OLE link information is in the format that's returned from the WIN/OLE API, not a plain text path to the document. Are there Perl code/modules that can extract the plain text path from an OLE link or read an OLE...
  16. Farab

    url rewrite question

    Had a look at how I do it and it's much easier than mod_rewrite. You can use Redirect for this. I was getting confused with rewrite, cause that what you asked for and I use it, but somewhere else. So, in your httpd.conf you want something like this: &lt;VirtualHost your.ip.goes.here&gt...
  17. Farab

    url rewrite question

    Use mod_rewrite in Apache. Make sure you're Apache is built with mod_rewrite (--enable-module=rewrite). Here's the Apache guide to using mod_rewrite: http://httpd.apache.org/docs-2.0/misc/rewriteguide.html Once the engineer has replaced the SCSI controllers on my HP box, I might get some...
  18. Farab

    DBI Error Handling - errors written to Apache error.log

    I have some Perl CGI programs accessing Oracle via DBI/DBD Oracle. The error handling works well, errors are being trapped and displayed to the user. Here's an example: $dbConnection = DBI->connect($dbDriver, $dbUser, $dbPassword) || dbError('Connection', $DBI::errstr); The problem(if...
  19. Farab

    Net Help Getting Started - .htaccess

    There's different ways of doing it, but here's what I've got: In .htaccess: AuthUserFile /etc/.htpasswd AuthGroupFile /dev/null AuthName &quot;Any old message you want to appear on the popup&quot; AuthType Basic require user MyUser In httpd.conf: <Directory...
  20. Farab

    Strange error in log

    Anybody seen this error before? Coming up in the native log file. What could be causing this? Error - EJS3040E Specification violation -- write not called

Part and Inventory Search

Back
Top