Re: Free + java-based HTTP Sniffer recommendation ??

2004-03-30 Thread Martin Dulisch
I use this:
http://httptrace.sourceforge.net/
Martin

[EMAIL PROTECTED] wrote:

Hi,

can somebody recommend a free + java-based HTTP Sniffer?

Currently I'm using NetTool from Neil O'Toole [http://www.nettool.org] ... which isn't bad ... but I'd like to see some alternatives.

TIA and regards,
Peter
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Does the slide webdav client support SSL?

2004-03-11 Thread Martin Dulisch
Yes, you can create the WebDAVResource Object with a HttpsURL.

Maybe you also have to configure certificate handling. But this is no 
configuration in the slide client.

Martin

Gaurav Khanna wrote:
Are there any configuration settings required to enable it to support SSL?
 

-
Do you Yahoo!?
Yahoo! Search - Find what youre looking for faster.
--
Martin Dulisch
Open Source Group, SN AG
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Can any one provide help on how to relate with slide to have a feel of the basic

2004-03-01 Thread Martin Dulisch
Which version of slide are you using? Try it with the last beta. In 
this version the HttpURL class from commons HttpClient ist supported 
(not org.apache.util.HttpURL).

Martin

Gbenga Bello wrote:

Thanks 
I have tried the sample code in the page specified
But I am getting a error when I try to connect with this line of code
 
WebdavResource wdr =
new WebdavResource(hrl);
 
The error is that The class WebdavResource is a protected class ...

Here is full copy of the code
 
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;

import org.apache.commons.httpclient.HttpException;
import org.apache.util.HttpURL;
import org.apache.webdav.lib.WebdavResource;
public class SlideTest {

public static void main (String args[]) 
{
try
{
HttpURL hrl =
new HttpURL(http://webdav-server;);
hrl.setUserInfo(user,pass);
WebdavResource wdr =
new WebdavResource(hrl);
File fn = new File(remote-file);
wdr.getMethod(fn);
wdr.close();
}
catch(MalformedURLException mue)
{
}
catch(HttpException he)
{
}
catch(IOException ioe)
{
} 
}
}
 
I hope I can get assistance from any one
 
Thanks 
 
COGI

lixin chu [EMAIL PROTECTED] wrote:
I am also searching...
1.
http://www.onjava.com/pub/a/onjava/2003/12/23/slide.html
2. Slide web site

3. source code

--- Gbenga Bello wrote:

Hello People,

Please Can any one provide help on how to relate
with slide to have a feel of its basic
functionalities.
Pls I will appreciate a detailed instructional steps
on what to do.
Expecting your reply soon.
Thanks
-
Do you Yahoo!?
Get better spam protection with Yahoo! Mail


__
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
Do you Yahoo!?
Get better spam protection with Yahoo! Mail
--
Martin Dulisch
Open Source Group, SN AG
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: org.apache.webdav.lib.WebdavException

2004-03-01 Thread Martin Dulisch
Try to use WebDAVResource instead of WebdavFile.

Martin

Jean-Philippe Pattus wrote:

Another question, sorry it's my first time with dav and slide .
how can i create a subdirectory :
my code is :
	WebdavFile temp1 = new WebdavFile(new 
HttpURL(http://MyServer:80/Publish/titi;));
	temp1.mkdir();

where Publish is an alias on my http server. When i execute my code the 
result is :
org.apache.webdav.lib.WebdavException
	at org.apache.webdav.lib.WebdavFile.mkdir(WebdavFile.java:539)
	at org.apache.webdav.lib.WebdavFile.main(WebdavFile.java:658)

i don't understand what is exactly the problem. is there an authentication 
problem (i don't put authentication on my server), or is the problem 
between my chair and my screen.

regards,
 jp
Jean-Philippe Pattus
Sogitec Industries - www.sogitec.fr
Division Documentation et Systemes
Tel. : 02.99.05.34.25
Fax : 02.99.05.34.05


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

--
Martin Dulisch
Open Source Group, SN AG
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Slide and SSL

2004-02-26 Thread Martin Dulisch
Hi John,

WebDAVResource is able to handle HttpsURL. Why do you think it is not so?

Martin

John Kemp wrote:

Hi,

I apologize if this is a question answered somewhere already, although I 
have searched for such an answer in many places. I am new to Slide.

I am trying to use WebDAV to connect over SSL. The WebDAVResource will 
not take an org.apache.commons.httpclient.HttpsURL as an argument, so 
what is the method of accessing WebDAV resources over SSL from within a 
Slide-based client? Or is there not currently any support for this?

Thanks,

- JohnK

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

--
Martin Dulisch
Open Source Group, SN AG
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[ANN] WebDAVPilot plugin for eclipse

2004-02-17 Thread Martin Dulisch
I hope I do not bother anyone on the list with this announce. But it 
might be of interest in the scope of Slide. And it is for free.

We have developed a WebDAV administration plugin for eclipse. It is 
tested with eclipse 3.0M6 and Tamino webdav.

A complete list of features and the download link can be found here:

http://www.s-und-n.de/sunshine/ccos/produkte/english/webdavpilot

--
Martin Dulisch
Open Source Group, SN AG
[EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: How to create Groups/GroupNodes via WebDAV?

2003-12-23 Thread Martin Dulisch
Hi K.C.

WebDAV does not support this.

Martin
 

 -Original Message-
 From: K.C. Baltz [mailto:[EMAIL PROTECTED] 
 Sent: Montag, 22. Dezember 2003 20:47
 To: 'Slide Users Mailing List'
 Subject: How to create Groups/GroupNodes via WebDAV?
 
 Is it possible to create Groups via the WebDAV interface?  
 I'd like to 
 create a User Group and add/link users to it. 
 
 K.C.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: How to create Groups/GroupNodes via WebDAV?

2003-12-23 Thread Martin Dulisch
 

 -Original Message-
 From: news [mailto:[EMAIL PROTECTED] On Behalf Of Martin Holz
 
 K.C. Baltz [EMAIL PROTECTED] writes:
 
  Is it possible to create Groups via the WebDAV interface?  
 I'd like to
  create a User Group and add/link users to it. K.C.
 
 I think, there are no utility methods for doing this, but groups are
 normal resources with certain properties, which can be created
 using propatch. 
 

Martin, are you sure? Have you tried this? Principal resources are created
from the referenced user database (e.g. LDAP). Whe you create a principal
resource it has to be written to the user database too. I have never heared
that this is possible.

Martin


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Question about non-existent files.

2003-12-12 Thread Martin Dulisch
 From: Ingo Brunberg [mailto:[EMAIL PROTECTED] 
 
 The normal way of creating a new Resource would be to first create a
 WebdavResource of an existing URL, usually the top-level resource, and
 then call resource.putMethod(newPath, this is my data).
 
 Anyway, throwing an exception doesn't seem quite right. I guess this
 change was introduced to inform the user that something went wrong. In
 contrast to most of the methods in WebdavResource, propfindMethod()
 returns an Enumeration instead of a boolean. This means the old
 behavior gives you an empty Enumeration, so it doesn't become apparent
 that the resource does not exist.
 
 The more I deliberate about this, the more I tend to revert the
 change, because you can always query the status code of the
 WebdavResource.
 What do others think about this?
 

Ingo, for my it does not matter if a exception is thrown or not. But it is
important that all methods have the same behavior. Either the user has to
catch exceptions or check the status code. We could add a member
'isLastStatusCodeError()'.

Where do you see the disadvantages of throwing exceptions?

Martin


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Question about non-existent files.

2003-12-11 Thread Martin Dulisch
Hi Robert,

you have to use another constructor:
WebdavResource r = new WebdavResource(url,WebdavResource.NOACTION,0);

So no propfind is executed before you do the put request.

HTH
Martin

 

 -Original Message-
 From: Robert Bjornson [mailto:[EMAIL PROTECTED] 
 Sent: Donnerstag, 11. Dezember 2003 17:02
 To: [EMAIL PROTECTED]
 Subject: Question about non-existent files.
 
 
 I've been using the client library for Slide 1.0.16 for 
 several months.
 I've decided to attempt to move to the top of the development tree in
 order to pick up a bunch of bug fixes, and am having a 
 problem creating
 a reference to a non-existent file.
 
 In the past, in order to create a new file, I did:
 
 WebdavResource r = new WebdavResource(url) // where the url 
 refers to a 
 non existent file in an existing and writable directory
 
 r.putMethod(this is my data)
 
 This worked fine in 1.0.16, but using the top of the tree, I get an
 exception which I'm including at the bottom of the email.  
 The exception
 occurs when I construct the WebdavResource.
 (note that I'm actually invoking this from within jython).
 
 My Dav Server is a 2.0.45 Apache with dav support compiled in.
 It's worked just fine with the 1.0.16. release.
 
 Looking through the source, there is a change to the propfindMethod
 in WebdavResource.java (revision 1.54).  It's now looking for a 
 multistatus reply from the
 server and throwing an exception if the reply wasn't a multistatus.
 Using tcpmon, I can see that the response is, in fact, just a
 404 not found.  But the old code was ok with this.
 
 I'm a more than a little perplexed, since I imagine that I can't
 be the only one who would run into this.
 
 If anyone shed any light on this, I'd be very grateful.
 
 Rob Bjornson
 
 
 
 ==
 Listen Port: 6999
 Target Host: 127.0.0.1
 Target Port: 24162
  Request 
 PROPFIND /datarepository/test/newfile HTTP/1.1
 Content-Length: 207
 Content-Type: text/xml; charset=utf-8
 Host: 127.0.0.1
 Depth: 0
 User-Agent: Jakarta HTTP Client/1.0
 
 ?xml version=1.0 encoding=utf-8 ?D:propfind 
 xmlns:D=DAV:D:propD:displayname/D:getcontentlength/D
 :getcontenttype/D:resourcetype/D:getlastmodified/D:lockd
 iscovery//D:prop/D:propfind 
 Response 
 HTTP/1.1 404 Not Found
 Date: Thu, 11 Dec 2003 15:05:45 GMT
 Server: Apache/2.0.45 (Unix) DAV/2
 Content-Length: 306
 Content-Type: text/html; charset=iso-8859-1
 
 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
 htmlhead
 title404 Not Found/title
 /headbody
 h1Not Found/h1
 pThe requested URL /datarepository/test/newfile was not 
 found on this 
 server./p
 hr /
 addressApache/2.0.45 (Unix) DAV/2 Server at 127.0.0.1 Port 
 80/address
 /body/html
 
 ==
 
 
 org.apache.commons.httpclient.HttpException
  at 
 org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavReso
 urce.java:3150)
  at 
 org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavReso
 urce.java:3112)
  at 
 org.apache.webdav.lib.WebdavResource.setNamedProp(WebdavResour
 ce.java:881)
  at 
 org.apache.webdav.lib.WebdavResource.setBasicProperties(Webdav
 Resource.java:826)
  at 
 org.apache.webdav.lib.WebdavResource.setProperties(WebdavResou
 rce.java:1715)
  at 
 org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource
 .java:1153)
  at 
 org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource
 .java:1172)
  at 
 org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource
 .java:1251)
  at 
 org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource
 .java:1269)
  at 
 org.apache.webdav.lib.WebdavResource.init(WebdavResource.java:349)
  at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeCo
 nstructorAccessorImpl.java:39)
  at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Dele
 gatingConstructorAccessorImpl.java:27)
  at 
 java.lang.reflect.Constructor.newInstance(Constructor.java:274)
  at 
 org.python.core.PyReflectedConstructor.__call__(PyReflectedCon
 structor.java)
  at 
 org.python.core.PyJavaInstance.__init__(PyJavaInstance.java)
  at org.python.core.PyJavaClass.__call__(PyJavaClass.java)
  at org.python.core.PyObject.__call__(PyObject.java)
  at org.python.pycode._pyx0.f$0(bug.py:3)
  at org.python.pycode._pyx0.call_function(bug.py)
  at org.python.core.PyTableCode.call(PyTableCode.java)
  at org.python.core.PyCode.call(PyCode.java)
  at org.python.core.Py.runCode(Py.java)
  at 
 org.python.core.__builtin__.execfile_flags(__builtin__.java)
  at 
 org.python.util.PythonInterpreter.execfile(PythonInterpreter.java)
  at org.python.util.jython.main(jython.java)
 
 org.apache.commons.httpclient.HttpException: 
 org.apache.commons.httpclient.HttpException
  
 
 
 
 

Re: Newbie - client API examples?

2003-11-13 Thread Martin Dulisch
Have a look at the source code of the command line client. It
uses WebDavResource. You can find it here:
src\webdav\client\src\org\apache\webdav\cmd\Client.java

Martin

davout wrote:
 I'm trying to get a handle on how to use the Slide Java client
 API and can't find any examples or a tutorial.

 For instance... how would I ...
 * Connect to a slide server
 * Create a new folder tree
 * upload a WORD doc to a folder location
 * download content from a folder location
 * navigate the folder tree to find all available content

 If somebody can point me in the right direction I'll gladly
 prepare a doc that summarizes this info and offer it for
 publication on the Slide site

 TIA

  davout




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: Java Client Problem

2003-11-05 Thread Martin Dulisch
Eduardo Alfonso  wrote:
 Now I'm sure I'm using the latest nightly build and Commons
 Httpclient 2.0rc2.

 What I'm doing wrong ?

 or Where can I get some Slide sample code


Have a look at the command line client. It uses WebDavResource.
You can find the source in this directory:
src\webdav\client\src\org\apache\webdav\cmd

Do you still have the problem with authentication?

Martin




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Java Client Problem

2003-11-03 Thread Martin Dulisch
What is the exact problem? Do you get a exception?

Martin

 Hi

 I'm new to Slide and WebDav

 I want to use slide for a very simple application.  I want
 the application to save a file to the public html directory
 from a user on a web server.

 I guess it's very simple but I could no make it works.

 Here's the code I'm using to save the file

 WebdavResource wdres=null;
 String url = http://mywebserver/~user/public_html/dav.xml;;
 HttpURL httpURL = new HttpURL(url);
 httpURL.setUserInfo(user,password);
 wdres = new WebdavResource(httpURL);

 //boolean done = webres.putMethod(file);   //I tried this way
 but it didn't work

 WebdavFile webfile = new WebdavFile(wdres);


 Any Ideas will be very much appreciated and a sample code
 would be absolutely great

 Thanks

 Capital One Classic
 Mastercard
 60 second
 response online.
 http://mocda.com/1/c/681064/117934/307081/307081

 AOL users go here
 http://mocda.com/1/c/681064/117934/307081/307081






 --
---
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Java Client Problem

2003-11-03 Thread Martin Dulisch
What is the status code? You can get it from the HttpException.

Please configure you mail client so that you name is visible. Or
is it only for me that your name is displayed as null?

Martin

null  wrote:
 Sorry, Yes I've got an exception in the line where the
 webdavresource is created (webres = new
 WebdavResource(httpURL);)

 org.apache.commons.httpclient.HttpException: Unable to process
 request
 at

org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient
.java:657)
 at

org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResourc
e.java:2560)
 at

org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResourc
e.java:2529)
 at

org.apache.webdav.lib.WebdavResource.setNamedProp(WebdavResource.
java:682)
 at

org.apache.webdav.lib.WebdavResource.setBasicProperties(WebdavRes
ource.java:669)
 at

org.apache.webdav.lib.WebdavResource.setProperties(WebdavResource
.java:1528)
 at

org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.ja
va:976)
 at

org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.ja
va:995)
 at

org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.ja
va:1074)
 at

org.apache.webdav.lib.WebdavResource.init(WebdavResource.java:2
59)
 at WebDavTest.main(WebDavTest.java:22)


 Thanx



 --- Original message ---
 From:  Martin Dulisch  [EMAIL PROTECTED]
 Date: Mon, 3 Nov 2003 09:28:38 +0100
 Subject: Re: Java Client Problem

 What is the exact problem? Do you get a exception?

 Martin

 Hi

 I'm new to Slide and WebDav

 I want to use slide for a very simple application.  I want
 the application to save a file to the public html directory
 from a user on a web server.

 I guess it's very simple but I could no make it works.

 Here's the code I'm using to save the file

 WebdavResource wdres=null;
 String url = http://mywebserver/~user/public_html/dav.xml;;
 HttpURL httpURL = new HttpURL(url);
 httpURL.setUserInfo(user,password);
 wdres = new WebdavResource(httpURL);

 //boolean done = webres.putMethod(file);   //I tried this way
 but it didn't work

 WebdavFile webfile = new WebdavFile(wdres);


 Any Ideas will be very much appreciated and a sample code
 would be absolutely great

 Thanks

 Capital One Classic
 Mastercard
 60 second
 response online.
 http://mocda.com/1/c/681064/117934/307081/307081

 AOL users go here
 http://mocda.com/1/c/681064/117934/307081/307081






 -
-
 ---
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]




 ---
--
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]

 Win £10,000 cash
 Enter ScottishPower
 £10,000 prize draw
 http://mocda.com/1/c/681064/101990/307081/307081

 AOL users go here -
 http://mocda.com/1/c/681064/101990/307081/307081






 --
---
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Performance differences depending on the used port of the server

2003-08-14 Thread Martin Dulisch
The reason for this behavior is the JRE version. We used Java
1.4.0_01. 1.4.1 has no more differences depending on the port.

Sorry for the noise
Martin

Martin Dulisch wrote:
 Hello,

 we use the slide client lib to request a Tamino WebDAV server.
 The version of the HttpClient is 2.0 rc1.

 We have observed response time differences depending on the
 configured port of the server. When the server is configured
 on a port not equal to 80 the response time is 8 times lower
 than on port 80.

 The time trace is around the HttpClient.execute method.

 Has someone observed the same behavior? What could be the
 reason? HttpClient?

 Thanks for help!

 Martin




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Client: access to underlying HTTP request connection?

2003-07-11 Thread Martin Dulisch

Joachim Martin wrote:
 Torsten,

 So I would create the WebdavResource(url), catch the exception
 I *know*
 I'm going to get, get the HttpClient, set the cookie, and try
 again?  It would be nice if I could set that cookie in HttpURL
 before I made the connection, sort of like
 HttpURL.setUserInfo().


Joachim, what about creating an derived class that extends
WebDavResource, say ExtendedResource. And than override the
member getSessionInstance.

Than is the way I solved a semilar problem.

Martin




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problems understanding to use slide (next newbie)

2003-06-05 Thread Martin Dulisch
Hi Alexander,

we have implemented a tool with interface to mange ACL. It is
called sunDanceNG. If you are interested I could send you more
information.

Regards

Martin


sn AG, Competence Center Open Source
D-33100 Paderborn

email [EMAIL PROTECTED], voice (+49)5251/1581-75
internet  http://www.s-und-n.de


Wendt, Alexander wrote:
 Hi @ all.

 To make it clear to me: No one has yet implemented an
 interface or tool to manage neither ACL nor Groups/Users
 (except for :8082/slide (slide/server) to manage Users 
 locks)?

 Sorry, but I can't believe that.

 ..
 OK, do we say it is so, could someone help me to look in the
 structure of this framework? - Just a briefing to get out of
 the box.

 What I know about slide is what is published (equals null).
 I do have my experience in java and in using foreign packages.

 @opencms: I've tested it today but certainly this is not
 really what they need here. (What they need is: a kind of
 samba + metadata, + searchlocate(metadata), +
 ACL-management, + Group/User-management, +
 flexibleAuthentification(NIS, LDAP, ownMySQL, ..) .. so I
 thought slide would be great. It would actually, if it would
 be a product and not a framework.)


 Thx to all helping me 'till now.


 Yours sincerely Alex.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Slide Client + HTTPS/SSL?

2003-06-05 Thread Martin Dulisch
Try to replace the Http client with the current version. This
helped us to resolve the problem.

Which WebDAV server do you use?

Martin

K.C. Baltz wrote:
 I get the following message when I try to connect to my site:

 Error: Check! Connection refused: connect

 Is it possible that this is caused by our site not having a
 trusted certificate?  (I.e.  we self-signed)  DAVExplorer
 warns me about this, but it still connects.

 K.C.

 Martin Holz wrote:

 K.C. Baltz [EMAIL PROTECTED] writes:



 With the archives down, I'm having trouble finding
 information regarding connecting the Slide command-line
 client to a store via HTTPS/SSL.  It appears that it simply
 doesn't support HTTPS.  I can connect to the server using
 DAVExplorer in HTTPS mode, so the server is most likely not
 the problem.


 I've also tried the version in CVS to no avail.



 The command line client from CVS does support HTTPS. I am not
 aware, that I did anything special to enable it. Why do you
 think, it does not work?

 You can search the archives at
 http://search.gmane.org/.
 The group is gmane.comp.jakarta.slide.user


 --
 Martin Holz [EMAIL PROTECTED]

 Softwareentwicklung / Vernetztes Studium - Chemie
 FIZ CHEMIE Berlin
 Franklinstrasse 11
 D-10587 Berlin


 --
---
 To unsubscribe, e-mail:
 [EMAIL PROTECTED] For additional
 commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Http Session Question

2003-03-26 Thread Martin Dulisch
Hi Mark,

hope I have understood your question. But you can add the user info to
the URL: http://user:[EMAIL PROTECTED]/foo

Martin


Mark Wood wrote:
 I have a question about using the Slide Webdav Client libs and
 accessing http session info.  Essentially what I would like to be
 able to do is connect to my server (Tomcat 4.0.6) from a client
 application.  The server contains a filter which intercepts any
 requests, checks that the user is logged in and has appropriate
 permissions and then continues with the request, passing it on to
the
  standard Tomcat WebdavServlet. On the server-side, once the user
 logs in, the user info is added to the session.  What I can't figure
 out is how to construct the request on the client side to perform
the
 login (a servlet url with some parameters attached) and webDAV
 requests (get, lock, put, etc.) so that the user info gets properly
 added to the session by the filter, and how to access this user info
 in the session from the client.  Is this possible, and if so, what
 methods are used?  I've searched through the mail archives and seen
 some references to sessions and cookies, but so far have not had any
 luck getting it to work.  Any help appreciated.

 Mark Wood



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Slide status (was: newbie question about slide future)

2003-03-13 Thread Martin Dulisch
Hi,


 We will accept very happily any help, you did offer in your e-mails.

I would like to help with the WebDAV client API. I have sent yet one
extension and a patch to the list. But I got no reaction.

We are using the client API in our WebDAV enabled client application.
For this I have integrated a new ACL report method into the client.

What do you think about the following proposal: I think when the
client would be seperated from the server components the client would
be easier to use. I do not mean a seperate project. But a separate
build file. The build for the server is very complex and has much
dependencies. The build for the client API could be much more easier.
What about a small sub-project? Are there no other users (like me) who
use only the client part of slide?

A second point could be to make the return values of several method
more equal. Sometimes strings are returned. Sometimes special objects.
I had to look into the source to know what is returned.

I would be glad if I could help in the client API. The client was very
usefull for us.

Regards
Martin

-
sn AG  Tel.: 05251/1581-75
Fax : 05251/1581-71
Klingenderstr. 5mailto:[EMAIL PROTECTED]
D-33100 Paderborn   http://www.s-und-n.de
-


- Original Message -
From: Pill, Juergen [EMAIL PROTECTED]
To: 'Slide Users Mailing List' [EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 4:30 PM
Subject: Slide status (was: newbie question about slide future)


 Hello all,

 I regret, if you are unhappy with the current Slide situation. Slide
 consists of many pieces (e.g. WebDAV client API, server, cm API, GUI
and
 command line clients, etc). Some of those are actively worked on;
some of
 those are currently under lower development.

 1) Release of next slide version
 There was a call last year to release slide version 2. At this point
in time
 most responding people felt, that it would be too early to release.
There
 were some areas still under heavy construction. We could issue this
release
 call again.

 2) WebDAV client API
 The WebDAV client API contains basic support of Delta-V, but higher
level
 methods are not implemented. This is due to the fact, that JSR 147
is
 arising, which will be THE standard interface for a Delta-V enabled
client.
 Currently this JSR 147 implementation is under construction. We will
make it
 publicly available in Slide, when major parts can be used. Anyway
pre-views
 could be found in Slide soon.

 3) WebDAV command line client
 Currently this part is not completely Delta-V aware. I personally
would
 suggest to use the JSR 147 API, when available.

 4) CM API
 Remy just lately announced to support the JSR 170 support at the
Slide CM
 API level. The JSR 170 will be the basis for further extensions. I
have seen
 some JSR 170 related check-ins already.

 5) Documentation
 This is a major (missing) point too. It was mentioned as a release
blocking
 issue at last years next version call.


 We will accept very happily any help, you did offer in your e-mails.
 Especially documentation was mentioned more than once. We could make
Slide
 this good, that even newbies get an easy and comfortable jump to the
very
 powerful Slide functionality. You are part of the Slide community
(if you
 feel so) and with you together we make the open-source project
working.

 If you wish to get a ready-to-use product (integrated stores,
installation,
 with guarantied support, and lots more) I would recommend following
link:
 http://developer.softwareag.com/tamino/webdav/default.htm
 (Sorry, I could not resist)


 Best regards,

 Juergen


 P.S. I know all committers are extremely busy and hard working (not
only for
 Slide).





 
-
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]