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

    loop through a string delimited by "|"

    Hi, If I have String that is delimited by "|", say Str="Tom|Andy|Jacob|Sid|Pat" and it can have any number fo fields... How can a loop though this string a get each name into a variable and display? pat
  2. patnim17

    field count in a delimited string

    Hi, I have a String delimited by a pipes."|" eg: yxs|yud|abc|def|ghi I want to find the count of the fields, so in this case it should be 5. How can I get it linux/unix? pat
  3. patnim17

    JSP/Servelets - when do they get compiled

    Hi, I am not sure if this is a Weblogic or JSP related question but I will ask here anyways... When you have a JSP/servlet bundled into an EAR and deployed in Weblogic, does weblogic try to compile it when you try to access this JSP page? Pat
  4. patnim17

    Best way to Parse XML files in Java..

    Hi, I am trying to find out the best possible way to load and parse XML files in Java..I have heard of JAXP, JAXB etc..but is there an industry standard that every only is following? pat
  5. patnim17

    building conditions dynamically and executing in If stmts

    Hi, I am building this condition check in a loop dynamicallly into a variable say, VAR1..something this this: for i in 1 2 3 do VAR1 = "$VAR1"string that builds the condition done Now after the for loop I wnat to put this condition into the "if" construct and use it..something like if...
  6. patnim17

    Using SSH to start a remote script..hangs..

    Hi, We have Weblogic Servers running on Linux (red hat ver 4). One of the things that I am trying to do is to start the Weblogic managed instance remotely using SSH. So here is the scenario: I have Linux Server A - has Weblogic Admin and Sever B has the Weblogic Managed instance. Script A.sh...
  7. patnim17

    Distinguishing terminals from specific vendors..

    Hi, We are running a java application on a HP Unix Box (11). The users connect to this unix box using dumb Terminals from different vendors. Some of the Terminals (from a specific vendor) seems to have a problem with this application during startup. My Question is, in the unix startup shell...
  8. patnim17

    Disabling the Timer Service registered in Weblogic

    I am using Weblogic 9.2.We have Timer Beans in our application that gets initialized during start up through a startup servlet. Is there a way to disable the timer service after the weblogic startup is completed? Pat
  9. patnim17

    Convert LinkedList to ArrayList

    Hello, Is there a way to convert a LinkedList to an ArrayList. There reason I am asking, is, I am using Spring DAO to execute a Stored PRocedure that returns a Oracle Cursor as one of the output parameters. For some reason, the java object that I used as ParameterizedRowMapper for this out...
  10. patnim17

    computing elapsed time in minutes

    hi, I need to compute the elapsed time in minutes, since an update occured in the table..and I am using this quesry to find thsi out..Just wnated to know if there would be a problem in using this: select * from TABLE1 where date_last_modified < SYSDATE - (60/1440); so in this case I wanted to...
  11. patnim17

    Need to put a test.html page in weblogic server ..

    Hi, I just have a simple HTML page, that I need to put it in Weblogic Sever (9.2). I don't want to build a jar or war file for this 1 HTML file and then deploy it. Is there a simpler way to just copy the HTML file in the domain folder in the weblogic server and access it..? - Pat
  12. patnim17

    BAsics of creating aWAR file from Jbuilder

    Hi.. I am new to JBuilder. I have a simple test JSP page. I just wnat to create a WAR file with just the test JSP page in this, from withinn JBuilder. What are the steps in Jbuilder I need to do to get this.. - Pat
  13. patnim17

    Datasource configuration- 'pinned-to-Thread'

    Hi, I am trying to understand the option provided by Weblogic for a DataSource..ie 'Pinned-to-Thread' . I read the documentation and understood the concept... My Question is , if "pinned-to-Thread' increases the performace, as a connection is reserved for that thread, then why is this an...
  14. patnim17

    Cluster set up Errors: java.lang.AssertionError

    Hi, I am trying to setup a Weblogic 9.2 in a clustered Env in Unix Env (HP) My First machine comes up successfully and deploys the application also. When I try to bring up the second server I get the followinf Error: <Feb 3, 2007 9:31:53 PM EST> <Critical> <WebLogicServer> <BEA-000386> <Server...
  15. patnim17

    Java Math Library...exponentials

    Hi, I need to calculate exponentials of 10's ie..10 to the power of 2 or 3 or 4 etc. But the return value of Math.pow(10,2) is a double. I need it to be an integer. How can I do that in Java? Pat
  16. patnim17

    Need to create a cluster in Unix

    Hello, I have Weblogic 9.2 running on my Unix box-1. I need to create a clustered Weblogic Env using my unix box 2 also. I have Weblogic 9.2 installed in box 2 also. Should I be creating the domain in box-2 also, as I did in box-1, using the domain configuration wizard.What do I do after that...
  17. patnim17

    2 key hash map Implementation...

    Hello, I have a programming requirement wherein I need to lookup for a value from a HashTable based on a Key. Let us call this Key as K1 and the value as Employee Name. So basically I have a HashTable with K1 as Key and Name as values. Now, I need to introduce a new Key K2, with a one-to-one...
  18. patnim17

    Invlida character in CDATA Section..

    Hello, Are there any characters that are not acceptable in the CDATA Sections..? I am using the java SAXparser pat
  19. patnim17

    jdk used in an EAR file

    Is there a way I can know which version of the JDK was used to build an EAR or JAR file? pat
  20. patnim17

    ..using . operator

    I have a script called jvmEnv.sh, which sets the environment variables. The problem is when I just execute it, the variables are not set..but when I execute it with a . (dot) like this: /home:>. jvmEnv.sh (as opposed to just jvmEnv.sh) it works fine...so my question is what is "." doing here...

Part and Inventory Search

Back
Top