Prasad Desai

Greenhorn
+ Follow
since Apr 30, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Prasad Desai

I am not able to open a 20 MB Excel file using Start Office, but I can do that in MS Excel. Can soemone tell me if something has gone worng during installation or is it a bug in the Star Office suite? If it is a bug, is a patch available for it?
Thanks
23 years ago
Hi,
I found the API documentation for CLDC on the Sun site but could not find one for MIDP. Can someone please give the URL for MIDC API documentation.
Regards,
Prasad
24 years ago
Hi,
I am using Oracle 8i as my BackEnd. I am using a Stored Procedure present in Oracle, which takes two IN parameter and one OUT parameter. Say the proc. will look something like this.
" testProc(intVar1 IN Integer,
strVar2 IN varchar,
cusrRec OUT curdsor_reference) "
Now how can I pass my OUT variable as a CURSOR to my Procedure when I call it in Javacode. What is the equivalent DataType for SQL Cursor in Java? How can i handle SQL Cursor in my Java Code?
Expecting for an immediate Reply.
Thanks in Advance.
Sridhar.


Hi,
Sorry that link somehow just went off... :-( Anyway here's the link.... http://industry.java.sun.com/products/jdbc/drivers
Regards,
Prasad
Hi,
Try the Sun site link <http://industry.java.sun.com/products/jdbc/drivers>;
You will find all kinds of Drivers here compliant with JDBC2.0 for different databases.
Regards,
Prasad
Hi Caroline,
There were two very small errors in the tag library descriptor file. These are mentioned below...
1. If you see the start of the tld file..
<?xml version="1.0" encoding="ISO-8859-1" ?>
<! DOCTYPE taglib...
There should be NO SPACE between "<!" and "DOCTYPE". So the above line should read...
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib...
2. There is an empty uri tag present in the tld file as shown below....
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>csajsp</shortname>
<uri></uri>
<info>.....
This tag should be removed. It is used only when there is a link to some other tld file. So the tld file should read...
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>csajsp</shortname>
<info>.....
If you make the above mentioned changes, your code should run. Hope this helps.
Regards,
Prasad
24 years ago
Tomcat uses a unique variable name JAVA_HOME before starting up. This variable HAS to be set up from the window in which you are starting Tomcat.
Suppose you have jdk installed in C: drive, then, do the following on the command window.....
set JAVA_HOME=c:\jdk1.3
Then call startup. Tomcat will start fine.
Regards,
Prasad
24 years ago
Hi Niranjan,
Try putting your class files in TOMCAT_HOME\webapps\examples\WEB-INF\classes directory.
Regards,
Prasad
24 years ago
Hi Mary,
Just check if the class file "Display.class" is present in the directory WEBLOGIC_HOME/myserver/servletclasses/weblogic/taglib/counter.
If you do not have the above mentioned directory, then create one, and place the class file inside it.
Here is how to create the Display.class class file.
1. Compile the Display.java present in WEBLOGIC_HOME/examples/jsp/tagext/counter
2. Place it in the WEBLOGIC_HOME/myserver/servletclasses/weblogic/taglib/counter directory
Once this is done, your custom tag will work.
Regards,
Prasad
24 years ago
Hi Roshini,
You have to first run setenv.cmd in your client window. You can find setenv.cmd in the WEBLOGIC_HOME directory. But doing this you will get the Weblogic classes in the CLASSPATH. Now run the client and it will not complain.
Hope this helps.
Regards,
Prasad
24 years ago