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

    How to get selected value from struts dropdown list?

    Hi, I have a bean class called Parameter, which is defined by the following attributes: public class Parameter implements Serializable { private final String name; private String value; private List paramOptions; ...constructor and getter and setter... } In my form, paramOptions...
  2. SilverStray

    Running remote shell script from Java using Runtime

    Thank you, stefan! It worked.
  3. SilverStray

    Running remote shell script from Java using Runtime

    Hi, I am having trouble running a shell script from Java, using the Runtime.exec. In simple illustration, the following code works ok if i execute the class on the same directory as the Shell script "runprog.ksh" is. String commandScript = "runprog.ksh 'param1'" final Process process =...
  4. SilverStray

    How to generate CSR in Bea WebLogic 9.2

    Hi, How do i generate a private key and Certificate Signing Request for Bea WebLogic 9.2. I found that for older version of Bea WebLogic (8.1), the step says to Start the Certificate Request Generator servlet. But I don't which servlet this is...? Pls. help! SilverStray
  5. SilverStray

    How to retrieve ancestor?

    Ok, my example is wrong. The tree should be like this: -Period -Calendar +2005 -2006 -Jan 06 -Feb 06 -Mar 06 -Financial +2005_2006 - Qtr 1 -Jan 06 -Feb 06 -Mar 06 + Qtr 2 + Qtr 3 + Qtr...
  6. SilverStray

    How to retrieve ancestor?

    Hi, I am new to MDX and this is my problem: I have a dimension and members in the following format: -Period -Calendar +2005 -2006 -Jan 06 -Feb 06 -Mar 06 -Financial +2005_2006 -Jan 06 -Feb 06 -Mar 06 +2006_2007...
  7. SilverStray

    How to trace SYNONYM definition?

    i found the answer to my question. The table to look into is USER_SYNONYMS.
  8. SilverStray

    How to trace SYNONYM definition?

    Hi, In the USER_OBJECTS table, I can see which objects are of type SYNONYM. But how do I know from which table, schema and db link it was created for? Are there other db tables which can give me this information? thanks in advance!
  9. SilverStray

    ResultMetaData getColumnName does not work

    Hi, The JAVA API states that getColumnLabel() function of object ResultMetaData can be used to use the display label of the SQL resultset, while the getColumnName() function is used to get the column name as specified in the table. I used getColumnName() to get the exact column name as defined...
  10. SilverStray

    Why does the font in my CSS appear smaller than it should

    Hi, I put the following CSS code in my html, but when I use it in the BODY of my web page, the font appeared much smaller than it should. This code is not a separate CSS file, but is inside my HTML. <HTML> <HEAD> <TITLE>HOMEPAGE</TITLE> <STYLE TYPE="text/css"> <!-- .bodyText { font-family...
  11. SilverStray

    Font Embedding

    Is anybody familiar with WEFT for font embedding? I have a web page (.jsp) which can be retrieved using an input screen from this URL : http://endor.myhomepage.com:7080/mboi/servlet/mboiPhase0.controller.DataController When user clicks the Submit button found on that page, the properties...
  12. SilverStray

    XSL method for instring character from XML data

    Thanks! It worked!
  13. SilverStray

    XSL method for instring character from XML data

    Hi, Is there a way where I could get the first, or first 2 characters only of a certain data retrieved from XML data? For example, my data is 'MN123445', and I only want to get the first 2 characters, 'MN', how do I do this in XSL? thanks in advance!
  14. SilverStray

    Problem with formatted \n output from JSP to javascript

    Hi, I have a message string which I wanted to display as a message in the javascript. The message should be displayed as something like: "Error in allocation. Pls. contact support." The following is the code that passes this message to the intended javascript: String msg="Error in...
  15. SilverStray

    SQLException not thrown after closing ResultSet

    Heya, thanks for your inputs. I do recognize the danger of leaving unclosed connections, which is my worry with what I did in my code. But is there something wrong with the way I throw the SQLException. I also put 'throws' in the method declaration. But if i uncomment the rs.close(), the calling...
  16. SilverStray

    Date Increment

    hi, Thanks a lot for all your help! *SilverStray
  17. SilverStray

    SQLException not thrown after closing ResultSet

    Hi, I'm just curious, and I am hoping to find an explanation. Why is it that if I execute a query, and when I close the Resultset inside catch statement, it does not throw the SQLException to the calling method? My code is as follows: ResultSet rs = null; try { rs = ps.executeQuery()...
  18. SilverStray

    Date Increment

    Hi, I have a page that will always get the next day and display it on screen. My problem is that, how do I increment a date to 1 calendar day? The following script of mine produces a date like 2/32/2005 if the current date is 1/31/2005, which is wrong. var time=new Date(); var...
  19. SilverStray

    XSL-FOP resetCache()

    Hi, I have a problem with image rendering using FOP transformer. The source file is an XML, and the XSL-FOP is used along with this inorder to generate a PDF file. I run the FOP transformer through servlet. The PDF file displays the GIF image indicated in the XML. But the problem is, even if...
  20. SilverStray

    XSL-FOP PDF and PCL Rendering

    Hi, The following line of code works well when I transform my XSL-FO to PDF, but when the same code is used to transform to PCL, the characters overlap. Why is that so? How can I fix this? <fo:table table-layout="fixed" border-spacing="0pt"> <fo:table-column column-width="6cm"/>...

Part and Inventory Search

Back
Top