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

    Forms 3 and restricted rowids in a cursor

    Hi We recently migrated our 7.3.4 database to version 9.2 but we have several Forms 3 apps running which reference ROWID. Because of the different ROWID format from 7 to 8, we had errors with the PL/SQL in the triggers (V2), e.g. WHERE A.ROWID = :BLK003.ROWID I have used calls along the...
  2. thrybergh

    LDAPS connection not working on prod server

    Hi I have created a Java web application to allow users to reset their Active Directory passwords. The application connects via SSL on port 636 as recommended and works fine on my development PC. When I deployed the app (using Tomcat) onto the production server it reports an error aying it...
  3. thrybergh

    Servlet mapping and images/css files

    Hi. I have a servlet running and normally I would map it so that when the URL is http://localhost:8080/athensda/servlet/UniSXAP it runs the servlet to process the form posted to it. For convenience, we would like is so that the URL only needs to be: http://localhost:8080/athensda I have...
  4. thrybergh

    Tomcat roles for specific applications

    Hi I would like to define a role within Tomcat to allow a special user access to stop/start one named application. Is this possible, or is such a "fine tuning" of the access not allowed? I would be concerned that they may stop/remove the wrong application by accident if they were given full...
  5. thrybergh

    Access 2003 and Java servlet database connection

    Hi I have a web app which uses an Access 2003 database. It works well enough and I can query it via a form with supplied parameters. However, the actual .mdb file is stored on a file server and I have setup and ODBC data source for my servlet. The .mdb file is edited independently (from the...
  6. thrybergh

    Character sets and URL encoding

    Hello I have a problem which I think is related to UTF-8 encoding and my browser (IE6). I am outputting XML data via a Java servlet and transforming it with an XSLT stylesheet using Xalan. Do I need to use a call such as: baos.toString("UTF-8") in my Java code to encode the XML data...
  7. thrybergh

    WHERE NOT EXISTS/Outer join problem

    Hello. I have 2 tables. One table (called ITAS_USER) contains one column (EMPLID) and this table holds 600+ EMPLID numbers. These are all the people who should be entering data in a survey. The other table (TIME_RECORD) contains the hours they record, with the principal columns being EMPLID...
  8. thrybergh

    Multiple users and static objects

    Hello. I have written a web app which requires the users to login with a username and password. I have noticed that if another user is logged in already then a new user will be shown the first user's screen. I think this is because my servlets use STATIC "request handler" objects to...
  9. thrybergh

    How to return a 403 on a directory

    Hello. On my webapp I would like my custom 403 page to show when a user tries to view a subdirectory of my "preds" webapp, e.g. preds/images/ Currently it displays a list of all the files and I don't want this. I've made custom 404 and 500 pages and these are working fine. I am not...
  10. thrybergh

    Xalan and JDK1.4.1

    Hello. I wonder if anyone has any experience of this problem? I am using JDK1.4.1 and Xalan 2.5.D11. The xalan.jar is in the endorsed directory for Tomcat and I have tested the version number by printing it to the screen. I am confused as to why I get the "NoClassDefFoundError&quot...
  11. thrybergh

    Fairly easy classpath/setup question

    Hello. I have a servlet which is supposed to create an HTML page using Xalan. It is working fine on my tomcat setup on my local PC, but on the webhost I get this error: java.lang.ExceptionInInitializerError at java.lang.Class.forName0(Native Method) at...
  12. thrybergh

    How to FTP a MySQL database

    Hello. I am used to using InstantDB with my webapps. After developing my application on my local machine I FTP the java code and database files to my web hosted account. Will MySQL allow me to do this in the same way? Will it create a directory/file structure that can be FTPed "as...
  13. thrybergh

    Joining in only "one of many" rows

    Hello. I have a query which is pulling out several columns, using about 6 tables to produce an asset inventory list. (I'm using Oracle Financials tables actually). I would like to join in a new column ("Purchase order number") from a new table ("ASSET_INVOICES"). I need to...
  14. thrybergh

    Override form submit on button press

    Hello. I've got a sign-in page with a form and three buttons. One is to submit the user/password, one is to send the forgotten password to the user and the other is to take the user to a registration page if they are a new user. I have used CSS to make the buttons look the same, but I want the...
  15. thrybergh

    Summing on different columns in same table

    Table ACC.RGC_BALANCES has the following structure: ACTCDE - Account code ACCGRP - Account group BAL_RC - Balance for RC type projects BAL_EC - Balance for EC type projects The following SQL script populates the ACTCDE, ACCGRP and BAL_RC table correctly: INSERT INTO ACC.RGC_BALANCES...
  16. thrybergh

    Inserting a column twice

    Hello. I have a table which contains (amongst others) a price and two category codes. (There are two category codes for each item as the categorisation varies depending on the type of the project.) We run a daily extract which sums the item rows by the category. The extract table looks like...
  17. thrybergh

    Bizarre anti-aliasing problem

    Hello. I have a series of images (sized 100x100 pixels). They are all logos and have a standard shading effect applied to the left hand side of them which makes them appear to "fade" them into the distance. The effect is created by having every other line be a "graded-in&quot...
  18. thrybergh

    Reports servers and PLL libraries

    Hello. I wonder if anyone could offer advice here please? We have a Reports (2.5) server which runs all of our reports (saved as .rpt files). I have a report which uses a .pll library. The report works correctly on my development PC but when I transfer it to the server it errors at runtime...
  19. thrybergh

    "Evaluating" a DECODE statement?

    Hello everyone. I have a VIEW which returns (amongst others) a category code and a price. I would like to have a new column which returns a new category code if the price is above 1000. e.g. Code Price New Code 3103 50 3103 3103 1200 5005 3103 1400...
  20. thrybergh

    Hello! In my report I run a subq

    Hello! In my report I run a subquery which looks at a series of flags held for a particular activity number. If one of the flags is set to "Q" we know that this activity has a "fixed price". When we have a fixed price activity, we calculate costs differently. I need to be...

Part and Inventory Search

Back
Top