Discussion:
[Openvpn-als-devel] Openvpn als network place error
Julian Kam
2009-12-22 06:11:11 UTC
Permalink
Hi all,

Recently I created a network place resource pointing to a samba share on
my adito server. When I tried downloading from the resource, I got a the
following message.

--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot
complete this request. Contact your administrator or check the logs for
more information,
--------------------------------------

I saw this from my adito.log

ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.ja
va:201)
at com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationH
andler.java:474)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:555)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationCon
text.java:622)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:243
)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)

The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?

Regards,

Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84


<http://www.muvee.com/>
www.muvee.com <http://www.muvee.com/> - create memories from photos and
video
muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential unless
otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail> .
Julian Kam
2009-12-23 04:12:17 UTC
Permalink
Hi all,

Anyone knows any workaround to this issue?

Regards,
Julian

________________________________

From: Julian Kam
Sent: Tuesday, December 22, 2009 2:11 PM
To: 'openvpn-als-***@lists.sourceforge.net'
Subject: Openvpn als network place error


Hi all,

Recently I created a network place resource pointing to a samba share on
my adito server. When I tried downloading from the resource, I got a the
following message.

--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot
complete this request. Contact your administrator or check the logs for
more information,
--------------------------------------

I saw this from my adito.log

ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.ja
va:201)
at com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationH
andler.java:474)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:555)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationCon
text.java:622)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:243
)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)

The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?

Regards,

Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84


<http://www.muvee.com/>
www.muvee.com <http://www.muvee.com/> - create memories from photos and
video
muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential unless
otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail> .
s***@gmail.com
2009-12-25 11:47:07 UTC
Permalink
Hi Julian,

The error message is a little strange. The "com.adito.vfs.webdav" is an
external (non-3sp) WebDAV servlet integrated into SSL-Explorer. I assume
it was used in the proprietary Drive mapping extension to provide glue
between networkplaces accessed using Apache Commons VFS, SSL-Explorer
server, SSL-Explorer Agent and the client-side CIFS server which
provided the actual "Drive mapping" functionality. In any case the
"Drive mapping" functionality was achieved through a number of
components and was _very_ complex. I don't think the WebDAV servlet has
any without it, but may still cause problems (like now).

Anyways, here's the place where the error is triggered:

/*
* If we wern't expecting authentication, but we got it
anyway, the
* client probably doesn't support cookies.
*/
AuthenticationScheme authScheme =
(DefaultAuthenticationScheme)
req.getSession().getAttribute(Constants.AUTH_SESSION);
if (authScheme != null) {
throw new IOException("Not expecting a realm, yet an
authentication session is available. This is unexpected!");
}

Does your client have cookies enabled?


Samuli
Post by Julian Kam
Hi all,
Recently I created a network place resource pointing to a samba share
on my adito server. When I tried downloading from the resource, I got
a the following message.
--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot complete
this request. Contact your administrator or check the logs for more
information,
--------------------------------------
I saw this from my adito.log
ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.java:201)
at com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:474)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:555)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:622)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:243)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)
The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?
Regards,
Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84
muvee.com <http://www.muvee.com/>
*www.muvee.com <http://www.muvee.com/>* - create memories from photos
and video
muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential
unless otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail>.
------------------------------------------------------------------------
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
------------------------------------------------------------------------
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
Julian Kam
2010-01-05 10:21:43 UTC
Permalink
Hi Samuli,

The clients I used are cookies enabled. I have tried it on various
browsers such as firefox , IE and chrome but unfortunately the outcomes
are the same.

Regards,
Julian


-----Original Message-----
From: ***@gmail.com [mailto:***@gmail.com]
Sent: Friday, December 25, 2009 7:47 PM
To: openvpn-als-***@lists.sourceforge.net
Subject: Re: [Openvpn-als-devel] Openvpn als network place error

Hi Julian,

The error message is a little strange. The "com.adito.vfs.webdav" is an
external (non-3sp) WebDAV servlet integrated into SSL-Explorer. I assume
it was used in the proprietary Drive mapping extension to provide glue
between networkplaces accessed using Apache Commons VFS, SSL-Explorer
server, SSL-Explorer Agent and the client-side CIFS server which
provided the actual "Drive mapping" functionality. In any case the
"Drive mapping" functionality was achieved through a number of
components and was _very_ complex. I don't think the WebDAV servlet has
any without it, but may still cause problems (like now).

Anyways, here's the place where the error is triggered:

/*
* If we wern't expecting authentication, but we got it
anyway, the
* client probably doesn't support cookies.
*/
AuthenticationScheme authScheme =
(DefaultAuthenticationScheme)
req.getSession().getAttribute(Constants.AUTH_SESSION);
if (authScheme != null) {
throw new IOException("Not expecting a realm, yet an
authentication session is available. This is unexpected!");
}

Does your client have cookies enabled?


Samuli
Post by Julian Kam
Hi all,
Recently I created a network place resource pointing to a samba share
on my adito server. When I tried downloading from the resource, I got
a the following message.
--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot complete
this request. Contact your administrator or check the logs for more
information,
--------------------------------------
I saw this from my adito.log
ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.ja
va:201)
Post by Julian Kam
at
com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationH
andler.java:474)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:555)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationCon
text.java:622)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
Post by Julian Kam
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:243
)
Post by Julian Kam
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
Post by Julian Kam
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)
The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?
Regards,
Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84
muvee.com <http://www.muvee.com/>
*www.muvee.com <http://www.muvee.com/>* - create memories from photos
and video muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential
unless otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail>.
----------------------------------------------------------------------
--
----------------------------------------------------------------------
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
----------------------------------------------------------------------
--
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
s***@gmail.com
2010-01-06 06:55:48 UTC
Permalink
Hi Julian,

I'm sure we've discussed this earlier, but are you using SVN version or
0.9.1? There are problems with CIFS support in SVN version which might
cause this. Also, which CIFS/SMB server are you using?

Samuli
Post by Julian Kam
Hi Samuli,
The clients I used are cookies enabled. I have tried it on various
browsers such as firefox , IE and chrome but unfortunately the outcomes
are the same.
Regards,
Julian
-----Original Message-----
Sent: Friday, December 25, 2009 7:47 PM
Subject: Re: [Openvpn-als-devel] Openvpn als network place error
Hi Julian,
The error message is a little strange. The "com.adito.vfs.webdav" is an
external (non-3sp) WebDAV servlet integrated into SSL-Explorer. I assume
it was used in the proprietary Drive mapping extension to provide glue
between networkplaces accessed using Apache Commons VFS, SSL-Explorer
server, SSL-Explorer Agent and the client-side CIFS server which
provided the actual "Drive mapping" functionality. In any case the
"Drive mapping" functionality was achieved through a number of
components and was _very_ complex. I don't think the WebDAV servlet has
any without it, but may still cause problems (like now).
/*
* If we wern't expecting authentication, but we got it
anyway, the
* client probably doesn't support cookies.
*/
AuthenticationScheme authScheme =
(DefaultAuthenticationScheme)
req.getSession().getAttribute(Constants.AUTH_SESSION);
if (authScheme != null) {
throw new IOException("Not expecting a realm, yet an
authentication session is available. This is unexpected!");
}
Does your client have cookies enabled?
Samuli
Post by Julian Kam
Hi all,
Recently I created a network place resource pointing to a samba share
on my adito server. When I tried downloading from the resource, I got
a the following message.
--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot complete
this request. Contact your administrator or check the logs for more
information,
--------------------------------------
I saw this from my adito.log
ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.ja
va:201)
Post by Julian Kam
at
com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationH
andler.java:474)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:555)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationCon
text.java:622)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
Post by Julian Kam
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:243
)
Post by Julian Kam
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
Post by Julian Kam
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)
The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?
Regards,
Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84
muvee.com <http://www.muvee.com/>
*www.muvee.com <http://www.muvee.com/>* - create memories from photos
and video muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential
unless otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail>.
----------------------------------------------------------------------
--
----------------------------------------------------------------------
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
----------------------------------------------------------------------
--
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
Julian Kam
2010-01-07 06:41:52 UTC
Permalink
Hi Samuli,

How can I check whether my client (agent) is cookies enabled? I'm using
0.9.1 currently. My samba server is using v3.0.22. I tried reinstall
adito but the problem still remains.

Regards,
Julian

-----Original Message-----
From: ***@gmail.com [mailto:***@gmail.com]
Sent: Wednesday, January 06, 2010 2:56 PM
To: openvpn-als-***@lists.sourceforge.net
Subject: Re: [Openvpn-als-devel] Openvpn als network place error

Hi Julian,

I'm sure we've discussed this earlier, but are you using SVN version or
0.9.1? There are problems with CIFS support in SVN version which might
cause this. Also, which CIFS/SMB server are you using?

Samuli
Post by Julian Kam
Hi Samuli,
The clients I used are cookies enabled. I have tried it on various
browsers such as firefox , IE and chrome but unfortunately the
outcomes are the same.
Regards,
Julian
-----Original Message-----
Sent: Friday, December 25, 2009 7:47 PM
Subject: Re: [Openvpn-als-devel] Openvpn als network place error
Hi Julian,
The error message is a little strange. The "com.adito.vfs.webdav" is
an external (non-3sp) WebDAV servlet integrated into SSL-Explorer. I
assume it was used in the proprietary Drive mapping extension to
provide glue between networkplaces accessed using Apache Commons VFS,
SSL-Explorer server, SSL-Explorer Agent and the client-side CIFS
server which provided the actual "Drive mapping" functionality. In any
case the "Drive mapping" functionality was achieved through a number
of components and was _very_ complex. I don't think the WebDAV servlet
has any without it, but may still cause problems (like now).
/*
* If we wern't expecting authentication, but we got it
anyway, the
* client probably doesn't support cookies.
*/
AuthenticationScheme authScheme =
(DefaultAuthenticationScheme)
req.getSession().getAttribute(Constants.AUTH_SESSION);
if (authScheme != null) {
throw new IOException("Not expecting a realm, yet an
authentication session is available. This is unexpected!");
}
Does your client have cookies enabled?
Samuli
Post by Julian Kam
Hi all,
Recently I created a network place resource pointing to a samba share
on my adito server. When I tried downloading from the resource, I got
a the following message.
--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot
complete
this request. Contact your administrator or check the logs for more
information,
--------------------------------------
I saw this from my adito.log
ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
Post by Julian Kam
Post by Julian Kam
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.
ja
va:201)
Post by Julian Kam
at
com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
Post by Julian Kam
Post by Julian Kam
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicatio
nH
andler.java:474)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:55
5)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationC
on
text.java:622)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
Post by Julian Kam
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:2
43
)
Post by Julian Kam
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
Post by Julian Kam
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)
The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?
Regards,
Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84
muvee.com <http://www.muvee.com/>
*www.muvee.com <http://www.muvee.com/>* - create memories from photos
and video muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential
unless otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail>.
---------------------------------------------------------------------
-
--
---------------------------------------------------------------------
-
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app
distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
---------------------------------------------------------------------
-
--
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
----------------------------------------------------------------------
--
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
----------------------------------------------------------------------
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
s***@gmail.com
2010-01-08 08:12:53 UTC
Permalink
Hi Julian,

All major browsers should have at least first-party cookies enabled by
default. I suggest verifying if a browser plugin/extension is blocking
the cookies (e.g. CookieSafe for Firefox). If not, check the browser's
documentation. It's also possible that Apache Commons VFS which provides
the "networkplaces" functionality in Adito 0.9.1 does not work properly
with newer CIFS/SMB servers. I think that's unlikely, though. You can of
course try changing SMB server settings to see if that helps.

Samuli
Post by Julian Kam
Hi Samuli,
How can I check whether my client (agent) is cookies enabled? I'm using
0.9.1 currently. My samba server is using v3.0.22. I tried reinstall
adito but the problem still remains.
Regards,
Julian
-----Original Message-----
Sent: Wednesday, January 06, 2010 2:56 PM
Subject: Re: [Openvpn-als-devel] Openvpn als network place error
Hi Julian,
I'm sure we've discussed this earlier, but are you using SVN version or
0.9.1? There are problems with CIFS support in SVN version which might
cause this. Also, which CIFS/SMB server are you using?
Samuli
Post by Julian Kam
Hi Samuli,
The clients I used are cookies enabled. I have tried it on various
browsers such as firefox , IE and chrome but unfortunately the
outcomes are the same.
Regards,
Julian
-----Original Message-----
Sent: Friday, December 25, 2009 7:47 PM
Subject: Re: [Openvpn-als-devel] Openvpn als network place error
Hi Julian,
The error message is a little strange. The "com.adito.vfs.webdav" is
an external (non-3sp) WebDAV servlet integrated into SSL-Explorer. I
assume it was used in the proprietary Drive mapping extension to
provide glue between networkplaces accessed using Apache Commons VFS,
SSL-Explorer server, SSL-Explorer Agent and the client-side CIFS
server which provided the actual "Drive mapping" functionality. In any
case the "Drive mapping" functionality was achieved through a number
of components and was _very_ complex. I don't think the WebDAV servlet
has any without it, but may still cause problems (like now).
/*
* If we wern't expecting authentication, but we got it
anyway, the
* client probably doesn't support cookies.
*/
AuthenticationScheme authScheme =
(DefaultAuthenticationScheme)
req.getSession().getAttribute(Constants.AUTH_SESSION);
if (authScheme != null) {
throw new IOException("Not expecting a realm, yet an
authentication session is available. This is unexpected!");
}
Does your client have cookies enabled?
Samuli
Post by Julian Kam
Hi all,
Recently I created a network place resource pointing to a samba share
on my adito server. When I tried downloading from the resource, I got
a the following message.
--------------------------------------
500 - Internal Server Error
The server has encountered an unexpected condition and cannot complete
this request. Contact your administrator or check the logs for more
information,
--------------------------------------
I saw this from my adito.log
ERROR DAVServlet - Network Places Request Failed: /cifs/samba share
java.io.IOException: Not expecting a realm, yet an authentication
session is available. This is unexpected!
at
com.adito.vfs.webdav.DAVTransaction.authorize(DAVTransaction.java:267)
Post by Julian Kam
Post by Julian Kam
at
com.adito.vfs.webdav.DAVTransaction.attemptToAuthorize(DAVTransaction.
ja
va:201)
Post by Julian Kam
at
com.adito.vfs.webdav.DAVServlet.service(DAVServlet.java:228)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:426)
Post by Julian Kam
Post by Julian Kam
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicatio
nH
andler.java:474)
Post by Julian Kam
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:55
5)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1562)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationC
on
text.java:622)
Post by Julian Kam
at org.mortbay.http.HttpContext.handle(HttpContext.java:1514)
at org.mortbay.http.HttpServer.service(HttpServer.java:955)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:813)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:980)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:830)
Post by Julian Kam
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:2
43
)
Post by Julian Kam
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:356)
Post by Julian Kam
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:533)
The strange thing is like I can still upload a file and create a new
folder in that resource. Does anyone knows what might be the cause of
this error?
Regards,
Julian Kam
Julian Kam Chee Jie
IT Operations Engineer
Tel: +65 6720 0413 Fax: +65 6720 0421 Cell: +65 9646 2595
Cell(US): 1-415-738-2997
skype: juliankam84
muvee.com <http://www.muvee.com/>
*www.muvee.com <http://www.muvee.com/>* - create memories from photos
and video muvee Technologies
133 Middle Road, Level 3, BOC Plaza, Singapore 188974
Singapore San Francisco New York Tokyo Seoul
All information in this message should be treated as confidential
unless otherwise stated.
For important electronic communications disclaimer, please visit
http://www.muvee.com/en/privacy
<http://www.muvee.com/en/privacy#externalemail>.
---------------------------------------------------------------------
-
--
---------------------------------------------------------------------
-
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app
distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
---------------------------------------------------------------------
-
--
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
----------------------------------------------------------------------
--
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
----------------------------------------------------------------------
-------- This SF.Net email is sponsored by the Verizon Developer
Community Take advantage of Verizon's best-in-class app development
support A streamlined, 14 day to market process makes app distribution
fast and easy Join now and get one step closer to millions of Verizon
customers http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------
------
This SF.Net email is sponsored by the Verizon Developer Community Take
advantage of Verizon's best-in-class app development support A
streamlined, 14 day to market process makes app distribution fast and
easy Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Openvpn-als-devel mailing list
https://lists.sourceforge.net/lists/listinfo/openvpn-als-devel
Loading...