A Chauhan

Greenhorn
+ Follow
since Nov 21, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by A Chauhan

Hi,

I have migrated my web application from tomcat 4.x to Tomcat 5.x. I have placed my application in webapps folder and context file to catalina\localhost in tomcat 5.x server. But my application is not at all working. It is showing Path problem in opening every page.

Any clue/idea is highly appreciated.

Thanks in Advance.
13 years ago
Hi,

I have migrated my web application from tomcat 4.x to Tomcat 5.x. I have placed my application in webapps folder and context file to catalina\localhost in tomcat 5.x server. But my application is not at all working. It is showing Path problem in opening every page.

Any clue/idea is highly appreciated.

Thanks in Advance.

[edited by moderator: removed colors, moved to tomcat forum]
13 years ago
Hi,

I want to execute an update query on a table T1 when there is a change(insert/update ) in another table T2. I want to use Pentaho for the same purpose. Any help regarding the same is highly appreciated.

Thanks in advance

[moderator edit: removed color and bold]
Thanks for the tip but i have to convert Blob in image . Can you provide any idea regarding this.
How can i give url for the same .

Thanks in advance
15 years ago
JSP
Hi

I am working on a web application. I have captured an image as blob in oracle database. Can anyone have an idea how to display the same image in JSP. I have tried with following code but it doesn’t show any image only X is coming in place of image.

byte[] imgData = null ;

int size=0;
sImage = rs.getBinaryStream("STRUCTURE");
response.reset();
response.setContentType("image/jpeg");

response.getOutputStream().write(bytearray,0,size);

imgData = queryStructure.getBytes(1,(int)queryStructure.length());
OutputStream o = response.getOutputStream();
o.write(imgData);
o.flush();
o.close();

Thanks in advance
15 years ago
JSP
Hi,

I have to read some excel files from a folder. Can anyone have an idea to give input as folder name and java will read all the excel files in that folder. Ultimately i have to import the data from those excels to oracle database.

Thanks in advance
15 years ago
JSP
Hi,

I have to configure tomcat as windows service so that it should start with the windows itself i.e no need of starting the tomcat with startup.bat.

Can anyone give me some idea regarding this.

Thanks in advance.
15 years ago
Hi All,

I am facing a problem while loading an applet in JSP. I am getting this error

"java.lang.ClassFormatError: Incompatible magic value 218762506 in class file JSjava"

Can anybody tell me why this error is comming as the detail description of this error is also not there in Internet.

Thanks in advance.
16 years ago
JSP
Hi All,

Can somebody please tell me how to increase the max size of statement in where clause of update statement in oracle. I am facing this problem as the data that is to be compared exceeds the max size so sql ignore the full update statement and no result is generated.

for example

select molregno from assay_detail where assay='Percentage inhibition of unphosphorylated VEGFR2 kinase activity studied using 5-40nM human VEGFR2delta50 expressed in baculovirus/insect cells, 20mM poly(Glu-Tyr)4:1, 3mM ATP, sffsdfsfsdftty, fhgfhuikikf, 50U/ml lactate dehydrogenase, 20U/ml pyruvate kinase, 8990kgkgkkgkgll ghjgjhjghjgerfretegnnf tgh gggggby measuring the absorbance at 340nm on Beckman spectrophotometer by coupled spectrophotometric assay';

thanks in advance.
Hi All,

Can somebody please through a light on how to increase the max size of statement in where clause of update statement in oracle. I am facing this problem as the data that is to be compared exceeds the max size so sql ignore the full update statement and no result is generated.

for example

select molregno from assay_detail where assay='Percentage inhibition of unphosphorylated VEGFR2 kinase activity studied using 5-40nM human VEGFR2delta50 expressed in baculovirus/insect cells, 20mM poly(Glu-Tyr)4:1, 3mM ATP, sffsdfsfsdftty, fhgfhuikikf, 50U/ml lactate dehydrogenase, 20U/ml pyruvate kinase, 8990kgkgkkgkgll ghjgjhjghjgerfretegnnf tgh gggggby measuring the absorbance at 340nm on Beckman spectrophotometer by coupled spectrophotometric assay';
thanks for your reply Raghu. But i want to know whether one web application
can connect to multiple databases simulteniously. If yes then please tell me how.
Hi all ,
I am working in an application that needs to connect with multiple databases .
Can someone tell me, is it possible to connect one web application (j2ee) with multiple databases.

thanks in advance
Dear all,
I am planning to write a licensing module which will validate the mac address of a system. For that i want to know can i get the mac address of a system by using applets.

thanks in advance
17 years ago
Hi,

Can someone please tell me how can i get the MAC address of a system by using the javascript as i have to develop a licensing module that will check the mac address of a system for authentication purpose.

Thanks in advance.
Hi,
I've a Jsp page which is having radio buttons.Upon clicking one radio button,it should include(display result inthe same page)a jsp page and upon clicking another radio button it should include another jsp file in the same area.

I don't know how to place "<jsp:include file="somefile.jsp"/>" using Javascript