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 Mike Lewis 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: AlexR
  • Order by date
  1. AlexR

    Write file to server

    Hey jwenting thanks for your replies, they've helped. I figured out a way to call the servlet and show up in the MS Word format. In my buttons that I manually create I wrote some javascript that will fire and open a new window calling the servlet and this proved to be working. As far as...
  2. AlexR

    Is new.silverstream.com gone

    Hi Everyone I was wondering if anyone had any info on the silverstream news group. I can't seem to connect to it anymore. Also what are some other good spots for SilverStream information?
  3. AlexR

    Buttons not working on pages in frames

    I have some pages that have buttons on them, if I click on one of the buttons when the page is opened in XP and is nested in frames the buttons don't seem to fire. If I open the page seperatley the buttons seem to work fine. I tested this on multiple OS's and it only happens on XP. Has anyone...
  4. AlexR

    Write file to server

    Thanks, jwenting your reply has helped but I have not explained fully my problem. Yes what you said will work but I am writing the entire page myself and printing it out to a rawHTMLMode() Label. I then use enumeration to get the parameters. Because I have multiple buttons on the page I...
  5. AlexR

    Write file to server

    I have a page with a button on it, when pressed I want a servlet to get some data from the database and then create a file with that data and save it to the server and then prompt the user to download the file. I have the page with the button on it and I have the servlet that gathers all the...
  6. AlexR

    How to set up password protected directory on Apache 2?

    I have a login page that checks the users id and password and reurns the directory (stored in db) then calls a servlet that determines what directory to show. Its pretty easy just store in your db login, passwd, directory and when the user tries to login verify against your db and then return...
  7. AlexR

    Error in JSP

    Below is a JSP that I got to work in Tomcat but when I call the page a second time I get an error: java.lang.ArrayIndexOutOfBoundsException, I have narrowed down the problem to the generateCombinations() method. I ran this same program as a java class from the compiler and it works fine, but...
  8. AlexR

    DataView columns when printing

    I am trying to print the data in a dataview from the browser. My problem is that the user would like to have the column headings displayed on every page, when printed. I have tried to look up in SilverStream books if this is possible but have not found any information. My options are open as...
  9. AlexR

    how to change color of column in dynamic view depending on condition

    I am not quite sure I understand you correctly, but it sounds like you want to change the color of a column in a table from the result set of the AgcData. If this is what your trying to accomplish don't use data views, use a label set to true for setRawHTMLMode(true). Then use a stringbuffer...
  10. AlexR

    Password Encryption

    I am trying to encrypt a password before I save it to the database, and then decrypt it when I return it back to my page. I dont wnat anyone to have access to the password from the databse. Any ideas? The password would have to be accessible by different users from diffferent pages. I am on...
  11. AlexR

    Select CLOB from table

    Can you tell me how to do this with SQL plus
  12. AlexR

    Select CLOB from table

    How can I run a select statement to read a column of (CLOB) from Oracle. Right now I get this error from Oracle ORA-03115 Unsupported network datatype or representation. The select statement worked fine until some changes were made to the table and a field of VARCHAR2(1000) was changed to a...
  13. AlexR

    Select CLOB from Oracle

    How can I run a select statement to read a column of (CLOB) from Oracle. Right now I get this error from Oracle ORA-03115 Unsupported network datatype or representation. I am trying to run a simple select statement on a few fields and one of them is of the type CLOB. So select a, b, c from...
  14. AlexR

    How to change the properties of a table cell?

    I have a table in HTML inside my page that has all the cells set to a color of gray background and I want to be able to change this color at runtime. I have checked the Programmable button and named the cells. This is a sample of my code that I am trying to execute...
  15. AlexR

    How to set focus to an Agp Label?

    I have found that you can only set the focus to form fields on a page. Alex
  16. AlexR

    Retreiving data from another db.

    In my code I have a select statement like this "SELECT FIELD1, FIELD2, FIELD3, FIELD4 FROM TABLE@DBLINK WHERE FIELD1 = 1". Field 1 is a varchar2 and Field 2 through Field 4 are long. When I run this query it just hangs. I am invoking this query through the BO. All seems to work...
  17. AlexR

    Retreiving data from another db.

    I am trying to pull data from another db and it is of the long type (in oracle). Whenever I pull in data from more than one long type my app freezes. How can i pull data from multiple long type fields? Do I have to convert the type of field before i pull the data and if so how? I am using a...

Part and Inventory Search

Back
Top