kashif bashir

Greenhorn
+ Follow
since May 14, 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 kashif bashir

I am bit puzzled, what's Waired Transfer Number they asking while purchasing voucher ?
Thanks for kind reply mike, would you please share experience or resources you used to prepare this exam 1Z0-807.

kashif
hi all,
i am back after a while on this forum can someone please tell me the process for exam 1Z0-864 or 1Z0-807.
is it mandatory to attend course first ?

thank you.

Congratulations .
what about mandatory course requirement ? did you pass it before exam or not ?
Oracle have buy Sun (Java)
i wana ask, will this effect on Certification track also ?

KASHIF
hi every one,

kindly tell me whats difference between in SCJP EXAM 310-065 & 310-055, whats new in SCJP 6 exam with respect to SCJP 5 ?

thanks.
Kumar

Christophe is rite,
Servlets executes on concept of Lazy Loading, it means they will load in memory when they called otherwise not, if some one like you wana call servlet (eager loaded) while on application start up, then you have to specify it in <load-on-startup>. listeners are eager loaded with application.

Kashif Bashir
kashefbasher@gmail.com
you are not assigning bytes rather declaring

byte[] data=new byte[4495];

load bytes from your image resource and assign to data in try catch block.

ommit other code outside try catch.
rename pdfBytes to your imageBytes.
try this code.

try {
StringBuffer fileHeader = new StringBuffer();
fileHeader .append("inline");
fileHeader .append("; filename=");
fileHeader .append("file.jpeg");

if(pdfBytes!=null && pdfBytes.length>0) {
response.setHeader("Cache-Control", "max-age=30");
response.setContentType("image/jpeg");
response.setHeader("Content-disposition", fileHeader .toString());
response.setContentLength(imageBytes.length);
response.getOutputStream().write(imageBytes, 0, imageBytes.length);
} else {
response.getOutputStream().print("
No File Found Related Client.");
}

} catch (Exception e) {
e.printStackTrace();
}
hi,
Kindly tell me how much differ there is in between book HFSJ 1st Ed and HFSJ 2nd Ed.
Basically i have 1st edition, will that version fulfill the preparation of SCWCD 5.0 ?

THANKS
Hi,

Any one have idea regarding when Sun will offer Sun Retake Promotion for 2009 ? in this year ?

regards
15 years ago
hi Lakshmi N,

i think i am getting all replies from my neighbors .
I heard that in india the exam voucher is some low cost but in Pakistan, its price is 300 USD which will cost near 25000 Pk RS.

Basically its is big amount to spent, that why i really wana know about the worthiness of SCWCD, i am hope full that i will be a plus spot on my profile.

Thanks for reply

Kashif