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: bsuribabu
  • Content: Threads
  • Order by date
  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

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

    Interface Vs Abstract Classes

    Hi, Can u pls explain me what are the diffs between Interface and Abstract Classes Suri
  10. 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
  11. 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 ...
  12. 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 ...
  13. 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
  14. bsuribabu

    Static Variables

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

    Drop Down List

    Hi, How many items u people feel best fit for Drop Down list Suri
  16. bsuribabu

    Executable

    Hi, 1. Is there any way around how to merge two EXEs.(DOS or Windows) I want to execute first exe and then next one . Suppose they are separately build , i want to merge them in a way so that executes one after one . If there are any URLs please provide me 2. After the EXE header ( 512...
  17. bsuribabu

    Running a object file

    Hi, I am working on Turbo C for DOS . First I have made a sample.c which contains sample() function and i have generated the objected file sample.obj. In another file ( test.c) i have opened this file with fopen and this address is casted to funcp function pointer and called the that...
  18. bsuribabu

    Register Variable

    Hi, A register variable can be a Volatile Type . If possible please give me one example . Suri

Part and Inventory Search

Back
Top