cvs repository on localhost
"Dariusz Drezno" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.javacvs.devel |
|---|---|
| Message-ID | <001301c1ef76$da507590$5907840a@pcdrezno> |
Hello,
I have cvs server on my machine and I can use it in command line.
But I don't know how can I do it with netbeans client.
I have client, which works well with remote host (:pserver)
I have replaced PServerConnetion with ServerConnection and it doesn't work
:(
Should I change anything else?
Here is my code:
this.sconnection = new ServerConnection();
this.sconnection.setRepository(module);
try {
this.sconnection.open();
} catch (AuthenticationException ae) {
ae.printStackTrace();
}
this.client = new Client(this.sconnection, new StandardAdminHandler())
client.setLocalPath(this.localPath);
listener = new CVSBasicListener();
Best regards,
DD