Thanx a lot for the reply!!

Well, here is my sample code:

        HttpURL homeUrl = new
HttpURL("http://ragia:8888/webapp/slide/files";);                        
        res = new WebdavResource(homeUrl);
        File f = new File("c:\\test.txt");
        boolean b = res.putMethod("/webapp/slide/files/test.txt", f);

That was how to add a document to slide.


And that is how I can retrieve documents from Slide store

        for (Iterator i = res.listBasic().iterator(); i.hasNext(); )
        {
         
          String []arr2 = (String [])i.next();
          
          for (int j=0 ; j< arr2.length; j++)
          {
          
            System.out.println(arr2[j]);
          }
          
        
        }
 

So that I can add/view documents, Now I need to know how to respond to the
addition/deletion and all the actions that happens from Windows Explorer.
I also need to let My CMS access rules apply on The Wndows Explorer
repository.

Am I going on the right way??

Regards,

Ragia


-----Original Message-----
From: James Mason [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 29, 2004 5:49 PM
To: [EMAIL PROTECTED]
Subject: Re: Need Help !

How did you achieve the integration? Was it by writing a Store
implementation? If so, I'm not sure what you mean by letting your CMS
respond to the addition/deletion of files.

As for access, if you implement SecurityStore you can decide how to map the
NodePermission objects to access rights in your CMS.

-James

>>> [EMAIL PROTECTED] 07/29/04 6:55 AM >>>
 
Hi,
 
I am trying to integrate my own CMS (Content Management System) to Slide, I
succeeded in adding/viewing my documents from my own CMS client to the slide
repository.

My next step is that I need to let my CMS responds to the addition/deletion
of files from my Windows web folder, is this possible through the Slide
API's ??
Also I need to apply my OWN CMS access rules to the windows web folders.

Any tiny idea will be highly appreciated..
Thanx in advance,

Ragia


---------------------------------------------------------------------
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]


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

Reply via email to