Article:
 |
|
Configuration Management in Java EE Applications Using Subversion
|
| Subject: |
|
svn: Malformed network data? |
| Date: |
|
2006-05-05 09:57:28 |
| From: |
|
justes
|
|
|
|
Any clue why I am getting this exception?
Initialized the SVN Manager
org.tmatesoft.svn.core.SVNException: svn: Malformed network data
org.tmatesoft.svn.core.SVNException: svn: Malformed network data
at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:43)
at org.tmatesoft.svn.core.internal.io.svn.SVNReader.readChar(SVNReader.java:548)
at org.tmatesoft.svn.core.internal.io.svn.SVNReader.parse(SVNReader.java:257)
at org.tmatesoft.svn.core.internal.io.svn.SVNConnection.read(SVNConnection.java:196)
at org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor.closeEdit(SVNCommitEditor.java:165)
at svnexample.SVNManager.checkInObject(SVNManager.java:125)
at svnexample.Startup.main(Startup.java:31)
Checked in the object into SVN with a return flag of false
The message obtained after checking in object is org.tmatesoft.svn.core.SVNException: svn: Malformed network data
--------------------------------------------------------
Changed the loan amount and set the approriate reason for change
org.tmatesoft.svn.core.SVNException: svn: Malformed network data
org.tmatesoft.svn.core.SVNException: svn: Malformed network data
|
Showing messages 1 through 1 of 1.
-
svn: Malformed network data?
2006-05-05 10:03:36
justes
[View]
public void initRepository() {
// DAVRepositoryFactory.setup();
SVNRepositoryFactoryImpl.setup();
//credentials to authenticate into SVN
String name = "user";
String password = "pwd";
try {
//point to the root folder in the repository
// SVNURL svnUrl = SVNURL.parseURIEncoded("http://localhost/repos/");
SVNURL svnUrl = SVNURL.parseURIEncoded("svn://localhost:7088/");
//initialize the SVNRepository
theRepository = SVNRepositoryFactory.create(svnUrl); :
:
: