priya pratheepp

Ranch Hand
+ Follow
since Apr 02, 2008
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 priya pratheepp

i want to add scroll bar to textarea .

Below is the code please help

15 years ago
hi friends

I am calling a html file from java class file.The data for the html file's text box and text area are stored in a property file.

I want to display html file with the data stored in that a property file

Can anybody give idea to do this.or the links..
no servlets..only java...
15 years ago
Hello friends,

I can call a HTML file from java.I want to pass some values from java class file to that html file.Anybody help me how to pass parameters?

Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler http://localhost:8080/jcoDemo/dp.html");

is one i am using for calling html file

thanks
15 years ago
Hi

answer to my post helped me a lot..my problem solved.many string buffer caused main problem and some more too..

thanks for tutorials

15 years ago
Hi friends,

while retreving data from SAP i am getting error in log file

92[10]java.util.NoSuchElementException

174[10]java.util.NoSuchElementException

176[10]java.util.NoSuchElementException

217[10]java.util.NoSuchElementException

218[10]java.util.NoSuchElementException

392[10]java.util.NoSuchElementException

408[10]java.util.NoSuchElementException

etc


please help me to trace...any hints please

15 years ago
thanks for the replay problem is solved ..i remove string buffer so working fine
15 years ago
Hi friends

I am getting java.lang.OutOfMemoryError: Java heap space error.I read the thread

https://coderanch.com/t/87530/Tomcat/Out-memory-Tomcat
I can come to any conclution.with the help of line



at the begining of the program i got
Java memory in use = 10939448

at the end of program i got
Java memory in use = 44747512

-Xms512m -Xmx512m ble bla ......

Please help me to sort out my problem

thanks in advance
15 years ago
Hi
This is the original code..but soem lines are modified..due to documentation problem i decomplied class file

my original code
public static void copy(String dest_name, String Content)
throws IOException
{
File destination_file = new File(dest_name);
FileOutputStream destination = null;
try
{
File file;
if(destination_file.exists())
destination_file.isFile();
else
file = parent(destination_file);
destination = new FileOutputStream(destination_file);
destination.write(Content.getBytes());
}
catch(Exception e)
{
sb.append("<BR>" + e.toString());
}
finally
{
if(destination != null)
try
{
destination.close();
}
catch(IOException e)
{
System.exit(0);
}
}
return;
}
thanks
15 years ago
Hi Peter

this is not legitimate code..This is my company file.I decompile using jad and have to do some modification.First i can't understant the exception that is why i posted...
15 years ago
thank you for your quick reply...

This is one decompiled code..what is this
MISSING_BLOCK_LABEL_143 means...

My work is i have to do some modification in this program.First of all i did not get the lines...

once again thanks
15 years ago
Hi friends,

below is one of the module of java program.Can anybody explain exception declared is correct.If yes please explain.

15 years ago
Hi friends

I am new to this LDAP. user id checkings are done in java.

The below fields are used to create new user name and passord.I want to know the use of objectclass .

dn: uid=john, cn=users, DC=infiyststem,DC=COM,DC=SG
givenname: john
sn: john Hu
userpassword:: changeasap
so-parentcompanycode: HK90
mail: user@infiyststem.com.hk
objectclass: top
objectclass: person
objectclass: organizationalPerson
objectclass: inetOrgPerson
objectclass: infiyststemOrganization
objectclass: ibm-appuuidaux
uid: john
so-salesbrand: *
so-portaluserrole: mktg_manager
cn: john john hu
preferredlanguage: en
so-serialcharfield03: HK90
employeenumber: 00000000
so-infiyststemcharfield02: Yes
so-infiyststemcharfield01: 1
so-salesstructure: HK90.*.*


Anybody please help me

thanks in advance
15 years ago
Hi friends,
I am new to unix env...After running one program , when i try to run with another values the first values are still there.it is not taking second values..

When i work in eclipse in windows i used to clean with the menu Project ----> clean --->

Can anybody tell me the corresponding comment to flush or clean the buffer using unix

Since i am working directly in prodution server I can't able to test and learn...That is it should no affect the other programs or stop the tomcat

thanks
[ May 27, 2008: Message edited by: priya pratheepp ]
15 years ago
HI Paul

thank you

problem is solved