Help Required in JAVA CVS
Hai
I am using java cvs for my application.First i created the pserver
connection its work well in stand alone code but when I am using this code in jsf (Using Sun Studio Creator ) . the code below take my application in a non stoping loop on browser ,where browser is waitting for reply .....and the progress bar is rotating continuesly ....pls help me
Thnx in advance
Here is my Source Code
try{
PServerConnection c =new PServerConnection();
PServerConnection connection = c;
Scrambler scrambler = StandardScrambler.getInstance();
c.setUserName("username ");
c.setHostName("host name ");
c.setRepository("/repository name ");
c.setEncodedPassword(scrambler.scramble("password "));
c.open(); // this code is not running properly
System.out.println("connection created");
}
catch(Exception e)
{
System.out.println("connection not created");
e.printStackTrace();
}
Regards
Raviraj Gangrade

