DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=34
994>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=34994
a>
dagss student.matnat.uio.no changed:
What |Removed |Added
------------------------------------------------------------
----------------
Status|CLOSED |REOPENED
Resolution|FIXED |
------- Additional Comments From dagss student.matnat.uio.no
2006-12-19 13:26 -------
Checked out trunk, did a build, deployed it in Tomcat and
WebDAV is not working.
Cadaver:
dav:!> open localhost:3000/lenya/default/webdav
immedeatly returns with 500 error, caused by an exception
around line 103 in
DocumentPolicyManagerWrapper:
String authoringUrl = prefix + Publication.AUTHORING_AREA
+
webappUrl.substring(prefixWithArea.length());
...with prefixWithArea=="default/authoring" and
webappUrl="/default/webdav/".
Temporarily hacking it:
try {
authoringUrl = prefix +
Publication.AUTHORING_AREA
+
webappUrl.substring(prefixWithArea.length());
} catch (Exception e) {
authoringUrl = prefix +
Publication.AUTHORING_AREA;
}
...causes login in Cadaver to work fine, and apparently
control now enter the
WebDAV module and some flowscript errors (but that might be
my hack so...)
--
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=ema
il
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the
assignee.
------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribe lenya.apache.org
For additional commands, e-mail: dev-help lenya.apache.org
|