RE: I: problem with getting contentstream of object

2015-01-20 Thread Florian Müller
Hi Erwin, The SSL/TLS configuration is not DotCMIS specific. Please check the .Net documentation. But maybe this works. Before you make the first request with DotCMIS, set this: System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | Securit

RE: I: problem with getting contentstream of object

2015-01-20 Thread Erwin Moll - Nazca-I
Hello, I run into a little problem. We have an IIS webservice on 2003 server and i'm using DotCmis 0.6 dll version to connect to the repository. This worked fine before, but the provider of cmis repository has disabled SSL3 recently (poodle problem) and now the connection fails! Exce

RE: I: problem with getting contentstream of object

2014-09-08 Thread Erwin Moll - Nazca-I
apache.org] Verzonden: zaterdag 6 september 2014 10:10 Aan: dev@chemistry.apache.org CC: Erwin Moll - Nazca-I Onderwerp: Re: I: problem with getting contentstream of object Hi Erwin, Which repository are you connected to and which CMIS binding are you using? You get a "Property 'gu:

RE: I: problem with getting contentstream of object

2014-09-08 Thread Erwin Moll - Nazca-I
Müller [mailto:f...@apache.org] > Verzonden: zaterdag 6 september 2014 10:10 > Aan: dev@chemistry.apache.org > CC: Erwin Moll - Nazca-I > Onderwerp: Re: I: problem with getting contentstream of object > > Hi Erwin, > > Which repository are you connected to and which CMIS

Re: I: problem with getting contentstream of object

2014-09-06 Thread Florian Müller
he.org] > Verzonden: zaterdag 6 september 2014 10:10 > Aan: dev@chemistry.apache.org > CC: Erwin Moll - Nazca-I > Onderwerp: Re: I: problem with getting contentstream of object > > Hi Erwin, > > Which repository are you connected to and which CMIS binding are you using? > &g

Re: I: problem with getting contentstream of object

2014-09-06 Thread Florian Müller
Hi Erwin, Which repository are you connected to and which CMIS binding are you using? You get a "Property 'gu:letterCharacteristic' doesn't exist!" error message if either the repository returns incorrect type definitions or if you try to connect to a CMIS 1.1 endpoint. (DotCMIS does not support

I: problem with getting contentstream of object

2014-09-05 Thread Erwin Moll - Nazca-I
Hello, Using DotCMIS 0.7 version and trying to download a document using IObjectId _oid = session.CreateObjectId(co["cmis:objectId"].FirstValue.ToString()); IDocument cmdoc = session.GetObject(_oid) as IDocument; IContentStream re