Object SharingOn a Windows 2000 (XP etc.) platform, it is possible to ‘share’ the Component Enabler client object (the LINCEnvironment object) among users. This can be achieved by making use of the COM+ features of the platform itself.
Setting up is easy
The LINCEnvironment object can be made into a COM+ object, simply by declaring it as such using the Component Services console from the control panel. A wizard lets...
User Profile
Collapse
-
Object pooling in Socket Connection to increase throughput
-
POJO - Plain Old Java Object
A POJO is a Java object that doesn't implement any special interfaces such as those defined by the EJB 2 framework.
POJOs also accelerate development. You can test your business logic outside of the application server and without a database. You don't have to package your code and deploy it in the application server. You also don't have to keep the database schema constantly in sync with the object model or spend time waiting for slow-running... -
Creating jar file in java
Creating a jar File in Command Prompt
Start Command Prompt.
------------------------
Navigate to the folder that holds your class files:
C:\>cd \mywork
Set path to include JDK’s bin. For example:
-------------------------------------------
If path & Classpath is set as environment variable then:
C:\mywork> javac
If not then for active session:... -
there can never be version issue between two different platform. the issue might be with your DSN or DB connection check your java class first and test the connection. -
Yes you can do it in same method but try and handle your connecton object(Open & close).Leave a comment:
-
after creating DSN test your connection first then compile your code and run.Leave a comment:
-
check your procedure call whether it returns you a resultset or not.Leave a comment:
-
if you want jdk1.5 compiled file to run in jdk1.6 then compile the same with jdk1.6 and vice versa bcoz java gives version mismatch error.Leave a comment:
-
0X hexadecimal representation to know more about this use Scientific calculator in windows there you can get values for a Alphabets(ASCII value) in hex.Leave a comment:
-
in java
HttpServletResp onse response
response.setCon tentType("text/html");
PrintWriter out = response.getWri ter();
you can use html code in out.Println("<h tml> <body><table> </table></body></html>");Leave a comment:
-
if this mentioned exception comes in the webpage while accesing your servlet then check your web.xml file also check whether your files are placed under the mentioned directory (Required file for servlet is your java class file).Leave a comment:
-
1. JavaScript is a scripting language mainly used in web language(HTML, Asp.net) for clientside scripting and validations opposite to this is vbscript used for serverside scripting (handling user inputs.)
2. Java is a opensource language used to create webApplications & Desktop applications. the use of java against .net is bcoz it is platform independent you compile your javacode in windows on ex. java 1.5 you can run this complied...Leave a comment:
-
1. In While loop the condition is
tested first and then the statements are executed if the condition turns out to
be true.
In do while the statements are executed for the first time and then the conditions
are tested, if the condition turns out to be true then the statements are
executed again.
All block in method isPalindrome is not return a value.
Place a return between //close while and...Leave a comment:
-
-
If both the class are in same package then it can be done by simply creating a object of class [lines] and with the help of that object you can access that validation method. If they are not in same package then create a interface to access it or define that method as static then create class Lines object and now you can access static method of class Lines in Main class.Leave a comment:
-
-
try and compile your code after setting Environment variable for java (Path, classpath).open comand prompt compile your code and run if still gets the same error then try use this:
set Classpath ="*.*"; wirte the statement in command prompt and then again compile and run your code this statement set sets the classpath to your current directory so that jvm can find you class file.Leave a comment:
-
Connecting to Ms Access with ODBC require [Microsoft Access Dreiver(*.mdb)] create your DSN and then move forward for sun.JDBC.ODBC connection.Leave a comment:
-
Check whether you are able to login into the mentioned sql server wiht the userid& password used in the DSN connection if not then it may be Admin rights issue. If so then assign rights to your ID or reinstall the same with you loginid.Leave a comment:
-
No activity results to display
Show More
Leave a comment: