Mariusz Szurnacki

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

Recent posts by Mariusz Szurnacki

Hi!!!
We use WebLogic 6.1 (SP2).
I found the following exception in the log file:
<[WebAppServletContext(3862421,PORTAL,/PORTAL)] Servlet failed with IOException>
java.net.ProtocolException: Exceeded stated content-length of: '14017' bytes
at weblogic.servlet.internal.ServletOutputStreamImpl.checkCL(ServletOutputStreamImpl.java:200)
at weblogic.servlet.internal.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:154)
at java.io.OutputStream.write(Unknown Source)
at psft.pt8.util.PSHttpUtil.readFile(PSHttpUtil.java:132)
at psft.pt8.auth.PSAuthenticator.CleanUp(PSAuthenticator.java:865)
at psft.pt8.auth.PSAuthenticator.CleanUp(PSAuthenticator.java:785)
at psft.pt8.auth.PSAuthenticator.handleException(PSAuthenticator.java:935)
at psc.service(psc.java:336)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2502)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2208)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
I was searching the net looking for any solutions, but I failed...
JavaRanch is my last chance. Any hints?
Mariusz
21 years ago
In Poland, everyone is waiting for "offset" projects right now.
I hope that our economy situation will improve soon.
21 years ago

Originally posted by Ben Sullivan:
(...)and the PDF does not allow printing.


Hi, Ben!!!
How is it possible that you can pass a cert exam and you can't print a few pages from a pdf file (even if it has a printing option disabled)? I don't want to propagate a piracy but as I understood you had your own copy of this book, right? So, remove a master password from this file, my friend...
Best regards,
Mariusz
Hi!!!
No, there isn't!!!
Have a nice day,
Mariusz
[ August 09, 2002: Message edited by: Mariusz Szurnacki ]
Hi!!!
I think that RHE and KM are the best.
Check this out:
https://coderanch.com/t/208194/java-programmer-SCJP/certification/Best-Study-Books
Regards,
Mariusz
Hi!!!
1. Yes, it was quite easy to guess for me, cos I'm Polish ;-)
2. This case you told us is really unfair.
I heard a joke which is very similar to it, but I was thinking that such things don't take place in real life...
Here is this joke:
A young worker in HR department brought several applications to his boss. Their job was to take interviews with all these people. The boss took half of them and put them into a litter busket (a dumpster). The young worker asked him why he had done this. The boss answered:
"Listen, young man, we don't need here people who have a bad luck, you know?".

Regards,
MAriusz
23 years ago

Originally posted by William Barnes:

war-cow-ski?


Hi!!!
I think that Eliza will not be very satisfied when she will see this "cow" in the middle ;-)
And for me, "Tworkowska" is rather Polish surname, am I right Eliza?
Regards,
Mariusz Szurnacki
23 years ago
Hi, Scott!!!
Do not worry, please. The only thing you need is just a little practise.
I have been reading posts from people here for several months and I found that most of people who didn't pass their exams are people who hadn't used any good test engines (test simulators).
I stronly recommend you to buy a good one.
As I know, Whizlabs has one for 141(www.whizlabs.com) and Boson (www.boson.com) has one, but for 140. Maybe they will upgrade it soon.
Take some practise exams and you will pass for sure next time.
Regards,
Mariusz
Hi!!!
If you want to print non-printable version of a PDF document, you can do it in two ways:
1. by removing master-password from this document.
2. by patching Acrobat Reader program (AcroRd32.exe file).
But it's illegal of course. Remember, you break the law, doing that.

Regards,
Mariusz
Hi, Jorma!!!
Could you explain what are you talking about, please?
Hint: I checked it and there is still only non-printable version.
Regards,
Mariusz
Do you mean THIS boson: www.boson.com?
It's a well known vendor of test simulators.
So, if you want, go for it!!! ;-)
Regards,
Mariusz
Hi!!!
Congratulations!!! Well done!!!
During last mock exam I received 86%. Well, according to you... am I ready?
Have a nice day,
Mariusz
23 years ago
Hi!!!
I think you asked the wrong question: you asked where you can find printable version of Mastering EJB book. I think you should ask how to remove a master password from a PDF document. Answer: it's very easy (I've done it). But I won't write it how to do it, because I don't want to be arrested by FBI like this poor Russian boy during conference in USA...

Regards,
Mariusz
[ February 28, 2002: Message edited by: Mariusz Szurnacki ]

Originally posted by Darren Tweedale:
I was just doing the very same question! But I choosen 4 and 5, and not number 1 because you can't really return a void? I tried to compile with "Return void" but wouldn't let you. So is answer 1 REALLY valid?


Hi!!!
Here you are:
public class Javaranch {

public void add(int a)
{
System.out.println(a);
}
public static void main(String args[]) {
new Javaranch().add(15);
new OverrideJavaranch().add(15);
}

}
class OverrideJavaranch extends Javaranch {

public void add(int a)
{
System.out.println(a+1);
}
}
Output:
15
16
You wrote "return void". Well, you cann't do this. But if you want, you can write like this:
public void add(int a)
{
System.out.println(a+1);
return;
}

"It must return void" means that function doesn't return anything.
Have a nice day,
Mariusz
[ February 14, 2002: Message edited by: Mariusz Szurnacki ]


"could'nt load jvm.dll"


Hi!!!
Try add a path to jvm.dll file, for example: C:\jdk1.3\jre\bin\hotspot
1. Get DOS console (run command.com or cmd.exe)
2. at the command line execute the following instruction:
path = C:\jdk1.3\jre\bin\hotspot;%path%
3. run Setup.exe (or whatever it is) from this console
This is the way I solved this problem.
Have a nice day,
Mariusz