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

    SSL Configuration Problem

    Hi All, I am facing a big problem when i am going to configure SSL for my Websphere Application Server. I have enabled the SSL With Dummy Keys(Websphere Builtin). When i am going to access my application from the browser it is saying unexpected message; perhaps the server's SSL security...
  2. bsuribabu

    Maximum Open Cursors

    Hi All, I am facing Maximum Open Cursors problem in our Application. Actually we are closing the result set at commit level. What my idea is to place result set values in a 2D Array and my function uses the same and i will close the result set once the Array had been formed . Is there any...
  3. bsuribabu

    SSL Configuration

    Hi all, Can u please help me on SSL Configuration for my Application. Please provied me with any tips and any tutorials on this. Suri
  4. bsuribabu

    JDBC Connection - Database Session

    Hi all, Can i make a equation like One JDBC Connection = One Database Session Suri
  5. bsuribabu

    JDBC Connection - Database Session

    Hi all, Can i One JDBC Connection = One Database Session Suri
  6. bsuribabu

    Overriding Vs Hiding Static Methods

    Hi all, As all u know that we cannot override static methods in derived class . But we can hide it with same signature of static methods . I dont understand what is the basic diff between Overriding methods and Method hiding. Suri
  7. bsuribabu

    Form Loading

    Hey vbkris, What to do then ? Is there any solution for that. Because my project work is held up Can u provide any links regarding this issue Pls vbkris... Suri
  8. bsuribabu

    Form Loading

    it is showing HTML Tags and all Today What i have observed while loading the form its loaded some extent and started loading from the scratch. When i observe the View Source Content.
  9. bsuribabu

    Form Loading

    Hi all, we have a One Web Application running on IBM websphere, i am facing a problem with one screen. Sometime this screen loads perfectly, some times it wont . Some junk will be shown in the browser. I am using IE 5 and my system has 256MB RAM Pls help me Suri
  10. bsuribabu

    OnBlur Events

    Hi Guys, I have one problem where i require u r kind attention. I have one Input section like <input name=&quot;test&quot; type = &quot;text&quot; OnBlur=&quot;test()&quot;/> In one of my java script function I am doing like below function x() { test.onblur = y; } Here what it is doing...
  11. bsuribabu

    Interface Vs Abstract Classes

    Hi, Can u explain what basic difference between doGet and doPost requests Suri
  12. bsuribabu

    Interface Vs Abstract Classes

    Hi, Can u pls explain me what are the diffs between Interface and Abstract Classes Suri
  13. bsuribabu

    Class Loading

    Hi, What are the differences between Class Loading and Class Instance creation ? Is it possible to have a instance creation at the time of class loading . Suri
  14. bsuribabu

    References Vs Anonymous Unions

    Hi, Here is a some analysis i have made on References and Anonymous Unions. Pls tell me that my assumption is correct or not? 1. Reference is a alias for another variable means i can create a reference to a variable where i can use the reference in the same way where i can use the variable ...
  15. bsuribabu

    References vs Anonymous Unions

    Hi fro, I have wrongly posted this thread in C Language lounge.
  16. bsuribabu

    References vs Anonymous Unions

    Hi, Here is a some analysis i have made on References and Anonymous Unions. Pls tell me that my assumption is correct or not? 1. Reference is a alias for another variable means i can create a reference to a variable where i can use the reference in the same way where i can use the variable ...
  17. bsuribabu

    Dynamically Allocated Arrays of Objects

    Hi, Please pls look at this code. #include <iostream> using namespace std; int main() { int *pi; pi = new int[5]; pi++; delete[] pi; } can i do like this ? What are the consequences for this stub. Suri
  18. bsuribabu

    Static Variables

    Hi Xwp, I have studied somewhere that Heap contains variables like which have the lifetime greater than the local variables and less than the lifetime of global variables . But he has given example of dynamic memory allocation . But that variables i feel are static variables. He told me also...
  19. bsuribabu

    Register Variable

    Hi, PiterWinter, fro & Lionelhill thanks a lot for u r great explanation . This thought came to me when i was studying about register variables . I dont know actually about micro controllers and all. That's why posted this thread where i can find good examples of register volatile types ...
  20. bsuribabu

    Static Variables

    Hi all, where static variables will be stored , in data segment or stack segment or in Heap? Suri

Part and Inventory Search

Back
Top