Ravikanth thota

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

Recent posts by Ravikanth thota

can you mention whether you are using horizontal clustering or vertical clustering to configure managed servers ?
10 years ago

Ramakanta Sahoo wrote:Can you please let us know how you solved it or what was causing it, so that next time if someone faces the same error he will have an idea on how to solve it.

Thanks



I Got the error because of my weblogic installation directory path is more

For eg : C:/oracle10.3.1/middleware/bea/user_projects.............

To solve the problem i changed the directory path as : C:/bea/user_projects..........

By changing as above, issue is solved.. now i am able to start the server.
10 years ago

Ramakanta Sahoo wrote:From this small error we can not help you. Please put the script which you use to start the server, etc in detail.



Hi Ramakanta

Thanks a lot for your reply.. Issue is resolved..
10 years ago
Hi All,

while the staring weblogic admin server through command prompt , i am getting the below exception on command prompt

the input line is too long. the syntax of the command is incorrect

please do need full help
10 years ago

Jeanne Boyarsky wrote:THat line is HTML. You can be getting a JavaScript error in HTML; it has to be in a line of JavaScript code.

Check the error message again. Maybe you misread the line number. Or the line number refers to an imported JavaScript file and not the file you are looking at. Note that in most browsers, you can pull up the error console and click on the error to be taken to the relevant line of code.




Hi Jeanne

Error is referring to the line which i shown above in my Jsp Page.

Error is :

Line : 3120

char : 14

Error : object required


Line number 3120 is the line which i marked as red in the above thread in my jsp.

Hi All,

i have a jsp page which consists of html and javascript code. i am getting java script error in html code when more than 10 users try to access the application .

note* : Code works fine with single user. below is the code where iam getting java script error .( Error is occuring at </td> which is in red colour below )

<div id="uname" style="display:none" >
<table id="t1" border="0" >
<tr>
<td id="ttt">
<table border="0" id="t2" >
<tr id="sssrrow"></tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" id="t3">
<tr id="hnames"></tr>
</table>
</td>
</tr>
</table>

</div>
</div>

please do needfull help .....

Ashwini Kashyap wrote:Hi,

This is mostly due to JDK version issue.
Which version of JDK are you using?

Make use JDK 1.6 version or above and sqljdbc4.jar.

Hope this helps.

Thanks and Regards,
Ashwini Kashyap | akashyap@infocepts.com | www.infocepts.com




I am using jdk1.6.0_30 and sqljdbc4.jar .. still iam getting the same problem
Hi ,
I am using SQLServer database and Jboss server. While accessing the database iam getting the following error. I tried with both sqljdbc.jar and sqljdbc4.jar still iam getting the same error. can any one help me regarding this.

java.lang.UnsupportedOperationException: Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Use the sqljdbc4.jar class library, which provides support for JDBC 4.0.
00:13:40,069 ERROR [STDERR] at com.microsoft.sqlserver.jdbc.SQLServerConnection.<init>(SQLServerConnection.java:223)
00:13:40,069 ERROR [STDERR] at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(SQLServerDriver.java:840)


hi,

when i am trying to start jboss-5.1.0.GA using run.bat file , not able to start the server. showing the following message in my command promt.

E:\softwares\jboss-5.1.0.GA\bin>run.bat

Calling E:\softwares\jboss-5.1.0.GA\bin\run.conf.bat

E:\softwares\jboss-5.1.0.GA\bin>ika

could you please help me regarding this?

Thanks,
Ravikanth
11 years ago

Sudhir Ravindra wrote:Looks like you are trying to add content to an existing work book. Which version of excel was this sheet created in.
Try creating a new workbook as described in http://poi.apache.org/spreadsheet/quick-guide.html#CreateCells and see if you can reproduce the issue.



i am using Microsoft 2010 excel. my code is working fine with .xls files(till Microsoft 2007). but for .xlsx files, after writing into excel, if we try to open excel it is showing error as i mentioned above..
11 years ago
hi everyone,

i am working with Excel workbook using apache POI API.After writing the data into the workbook the size of the file is reducing and the file is getting corrupted it has shown an error like:

"Excel Found Unreadable Content in FILENAME.xlsx. do you want to recover the content of this workbook?If you trust the source of this workbook click yes! "

i am attaching my code



please help me in finding the error..!!!
11 years ago
hi,
i need a web driver like selenium/watij that should be compatible with internet explorer. & it should generate java script code.. help me

11 years ago

Eric Pascarello wrote:With Java?

Are you asking how to process a form submission with Java on the backend?

Eric



yes eric i am giving the sample code of my .htm file. how should i execute the displaymessage() function which i given below using another .java file(programatically)?

<html>
<head>
<script type="text/javascript">
function displaymessage()
{
alert("Hello World!");
}
</script>
</head>

<body>
<form>
<input type="button" value="Click me!" onclick="displaymessage()" />
</form>
</body>
</html>
hi ,
i have a enterprise excel which consists of few buttons . on clicking a button iam getting a pop up window . which is developed using javascript. pop up window consists of submit button and cancel button .
my question is ---- how should i excecute the submit button method programatically using java. that is with out clicking on submit button how should i excecute the submit button method programatically.?

Darryl Burke wrote:

rk thota wrote:hi,

i have a webpage developed using html consisting of few buttons. normally we will click the buttons manually either by using mouse or keyboard.
i need a help regarding how should i click those buttons programatically. that is when ever we execute a java program the button action should be performed same as when we clicked it manually.

thanks.


Is this about Swing or some other toolkit?



actually the file which i have is .htm file with few buttons in it. need to perform a button action programatically.
11 years ago