yo nara

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

Recent posts by yo nara

supposing that server side code has implemented both soap handler and logical handler code (jax-ws)
now if the request comes in non soap format. say xml over http.
will the soap handler get executed or not?
also will it throw error as there is no soap protocol in request?
also is it good design to implement both so that irrespective of the protocol specific request we can use same code?

the questions itself might be vauge or wrong. please correct it.
16 years ago
hello,
does anybody knows open source(freeware) test automation tool for java swing application.
I need a tool similar to what selenium does for web application. i.e. first record the flow and test against it. I tried using marathon but it didnt worked satisfacorily for me.
mainly the tool will be used by non technical people.
thanks in advance.
17 years ago
Hello,
Suppose we are running two java (say swing appln) applications on a windows machine. In that case we can see two java processes running in windows task manager.
Can we identify which java process is running for which application?
Thanks in advance.
19 years ago
Actually the person who has written code has not used printStackTrace() method.and the system is japanese so it gives error messages in japanese.
also it takes time to generate errors.
so I need to change the code and find the place where error occurs.
so first I will try with the suggestion given just now.because it seems that both the criteria are matching.
thank you very much for help
20 years ago
JSP
the server is not down .I can access other pages .
so might be other reason(just guess).
20 years ago
JSP
The application throws th above exception and Netscape browser hangs.
what is cause of this exception?Is there any solution for that?

thanks in advance
20 years ago
JSP
Is there any java code snippet to which if i pass any letter from any language converts to unicode?
native2ascii does so but besides that?
thnx in advance.
20 years ago
sorry for writing the word "Urgent"
i have already tried the code you have given but it doesnt work if you want to try i can mail you the sample code also.
waiting for reply
20 years ago
JSP
hi all
i have a page containing some kanjis.if i create an html page with encoding Shift_JIS and write kanji in that and put the html in weblogic server and if i access the page through http i can see the contents.
but if i write a jsp with same encoding and try to access the same contents i get a question mark sign.
can anybody help me out.
thnx in advance.
[ March 29, 2004: Message edited by: Bear Bibeault ]
20 years ago
JSP
hello
i have written the code , fairly as below for file download
String filename = "C:\\a.xls";
response.setContentType("application/octet-stream");
response.setHeader("Content-Disposition", "attachment;filename="+filename);
ServletOutputStream out1 = response.getOutputStream();
File fileToDownload = new File(filename);
FileInputStream fileInputStream = new FileInputStream(fileToDownload);
int i;
while ((i=fileInputStream.read())!=-1)
{
out1.write(i);
}
fileInputStream.close();
out1.flush();
out1.close();
}catch(Exception e) // file IO errors
{
e.printStackTrace();
}
a.xls contains japanese characters .i am unable to see the contents of the file downloaded.all the characters get disrupted
can anyone suggest me the solution?
i have tried with different java.io classes also .
uptil now i am able to see the txt files and pdf files clearly but if i try to download word or excel files i am unable to see the contents.

thnx in advance
20 years ago
hello
can anyone give me idea about undeploying the ejb and then make a jar again with fresh source and deploy it in wls without shutting down the wls
thnx in advance.
[ November 27, 2003: Message edited by: yogi naravane ]
21 years ago
I am using weblogic6.1 on hp-ux platform.
while running the application the weblogic server
shutdowns without any warning or logs
is there any method to know the reason??
thnx in advance
21 years ago
I am using weblogic 6.1 as application server.the project make use of ejb.
which is the best tool for debugging the application .
some of friends told me to use eclipse(is it so??)
thnx in advance.
Say I am using preparedstatement for executing queries.
if I use the same code using type2 and with type4 drivers.
which one will execute more faster and efficient.
is there any relation of preparedstatement with type of driver.
what i have read from books is that type4 is pure java solution and
more efficient than any other types.but since prepared statement are
compiled on server side.is ther any relation of preparedstatement and
type of driver.
I have string output in japanese.
is there any method in java api to trim the string content?
One method I know is that convert double byte spaces
to single byte spaces and them use trim.
but still is there any good method to do it?
thnx in advance.
21 years ago