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 SkipVought 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. salils

    Why are CAS (Atomic) operations faster than synchronized or volatile operations

    From what I understand, synchronized keyword syncs local thread cache with main memory. volatile keyword basically always reads the variable from the main memory at every access. Of course accessing main memory is much more expensive than local thread cache so these operations are expensive...
  2. salils

    Effect of StackOverflow error on server

    Hello, Was wondering if one of the requests to a web server results in StackOverflow error is the whole server shutdown or just the thread dies or an error is thrown back to the client? Thanks, Salil
  3. salils

    Class being found by classloader but NoClassDefFoundError on newInstance() method

    Hello Friends, I have an junit testcase that tests a eclipse application with a very long classpath and this can't be executed in Eclipse because of Windows classpath limitations. So I decided to write a program that will execute the the JUnit Test. I create my own classloader that takes the...
  4. salils

    Debugging third party source code

    thanks. this sucks. eclipse seems to be a much better ide than workshop. Thanks, Salil
  5. salils

    Debugging third party source code

    I am using Weblogic Workshop. Thanks, Salil
  6. salils

    Debugging third party source code

    Hello Friends, I have jar files from a third party and the corresponding source code. I wanted to know how I could add the jar files to my weblogic runtime and then debug it by pointing to the source code. I don't want to directly add the source code to the project because that will mean...
  7. salils

    Disadvantages of Page Flows

    Hello Friends, I am using page flows for the first time. I would also need to run the web application under another j2ee server. I know that we can use the portability kit to do this transformation.Even though I understand that using page flows have certain advantages, I wanted to know whether...
  8. salils

    Does onclick of an <option> tag inside a <select> tag work?

    yep. I did something similar and it has worked. Thanks, Salil
  9. salils

    Does onclick of an <option> tag inside a <select> tag work?

    Hello friends, I am trying to call a function from the onclick of an <option> tag. I just have a simple alert message within the function. The function doesn't get called. I have posted the code below: <HEAD> <SCRIPT type="text/javascript"> function func_1() { alert('test'); }</SCRIPT>...
  10. salils

    Encoding used for ODBC Text Drivers

    Hello Friends, I have this problem. We are using a ODBC Text Driver(I don't know which one but mostly it is a Microsoft Text Driver) in order to read a CSV or TSV file and import the data in that file into our application database. The problem is that we need to internationalize our...
  11. salils

    Reference to a child window

    Hello smnetto, but if the parent window page is replaced by a new page then the var mywind will be lost. For eg. if Parent.html opens Child.html and Parent.html is replaced by Replace.html. When Parent.html is loaded again then then reference to the Child window will be lost and hence...
  12. salils

    Reference to a child window

    Hello, My problem is that I am opening a child window from a parent window. Now the parent window gets replaced by some other page and I lose the reference to the child window. If the user again tries to open the child window from the same parent window I want to check that the child...

Part and Inventory Search

Back
Top