Re: CMISUrl

2013-06-25 Thread Rajath Shashidhara
Hello Juergen, The standard for AtomPub Urls is: cmis://localhost:8080/inmemory/atom/A1/path?path=/My_Folder-0-0 source: https://chemistry.apache.org/java/developing/dev-url.html On Tue, Jun 25, 2013 at 12:37 PM, Jürgen Schmidt wrote: > On 6/24/13 7:29 PM, Rajath Shashidhara wrote: > > Hello J

Re: CMISUrl

2013-06-25 Thread Jürgen Schmidt
On 6/24/13 7:29 PM, Rajath Shashidhara wrote: > Hello Juergen, > > My doubt: > Suppose there is a folder call My_Folder-0-0 on a repository A1 on local > server > > The actual url for this is: > http://localhost:8080/inmemory/atom/A1/path?path=/My_Folder-0-0 > > So, Should i implement it the sam

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello Juergen, My doubt: Suppose there is a folder call My_Folder-0-0 on a repository A1 on local server The actual url for this is: http://localhost:8080/inmemory/atom/A1/path?path=/My_Folder-0-0 So, Should i implement it the same way or should i do it like this: cmis://localhost:8080/inmemory/

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello Juergen, Yes, a server can support multiple repositories. But, the problem I'm facing is that I'm not able to separate the server path and the path of the object on the server. So, I'm trying to do this by trial and error. Let me see how this comes out, I'm planning on refining my code. I'l

Re: CMISUrl

2013-06-24 Thread Jürgen Schmidt
On 6/24/13 5:11 PM, Rajath Shashidhara wrote: > Hello juergen, > About http and https, > Webdav ucp uses dav:// and davs:// as respective schemes. > Should I do it as cmis and cmiss? sounds ok to me > > > On Mon, Jun 24, 2013 at 6:41 PM, Rajath Shashidhara < > rajaths.raja...@gmail.com> wrote:

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello juergen, About http and https, Webdav ucp uses dav:// and davs:// as respective schemes. Should I do it as cmis and cmiss? On Mon, Jun 24, 2013 at 6:41 PM, Rajath Shashidhara < rajaths.raja...@gmail.com> wrote: > Hello Juergen, > We could also do this by trial and error, > for example try

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello Juergen, We could also do this by trial and error, for example try to connect to: localhost:8080 if it fails try localhost:8080/inmemory if it fails try localhost:8080/inmemory/atom now it connects so, now connect to repo id:A1. then the path of folder relative to repo can be determined. O

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello Juergen, I feel more than the authentication thing right now, its important to break the url into parts like: hostname, portname, ,repositoryid, path on repository from the given url. This is hard because, there seems to be no standard or it. https://chemistry.apache.org/java/developing/dev-u

Re: CMISUrl

2013-06-24 Thread Jürgen Schmidt
On 6/24/13 11:29 AM, Rajath Shashidhara wrote: > Hello, > > Can i follow the uri format mentioned on this page: > https://camel.apache.org/cmis.html in general yes, but I would say the configuration of the CMIS stores should be http/https. Internally you will replace http/https with "cmis" and wi

Re: CMISUrl

2013-06-24 Thread Rajath Shashidhara
Hello, Can i follow the uri format mentioned on this page: https://camel.apache.org/cmis.html On Mon, Jun 24, 2013 at 2:53 PM, Rajath Shashidhara < rajaths.raja...@gmail.com> wrote: > Hello, > > As of now I'm by default connected to my inmemory repository and my path > supplied to ucp is relat