Re: Problem with updating and checkout under Tomcat
"Dariusz Drezno" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.javacvs.devel |
|---|---|
| Message-ID | <000901c1f816$18862ce0$5907840a@pcdrezno> |
>it can also mean that the new tomcat's VM has the temp directory (one
>that the File.createNewFile() method uses) to a place that doesn't exist..
>
>since the first one works and second one doesn't, seems to prove my
>suspicion..
>have you tried to patch the library as I suggested in the previous mail?
>
>
>Milos
Yes, I changed one line in library file, as you recommended.
I put:
File tempFile = File.createTempFile("cvsCRLF", "tmp", f.getParentFile());
instead
File tempFile = File.createTempFile("cvsCRLF", "tmp");
and I rebuilt library jar.
As I wrote before, now my application works properly.
Thank you for all advices. I have been looking for this bug for four days.
Best regards,
DD