Hi,
I got the code working on Windows without any problems (using .NET)
I will test the code using mono to see wether this is Linux specific or
not. If so, it might be due to a bug in mono... but I don't know at this
time. I'll check it out.

Currently using the library for my ASP.NET 2.0 blog system.

On Sat, 2007-06-02 at 13:41 +0200, Jacobo Polavieja wrote:
> Hi Timothy,
> 
> I've been experimenting the same problem as yours... Did you find a
> solution? I've been trying specificating some proxies but that didn't
> work neither. I'm a completely newbie in C# (this is my first "program")
> and don't know how to address the problem.
> 
> Any tip would be a lot a of help.
> 
> Thanks. Cheers!
> 
> 
> Timothy Parez escribió:
> > Hi,
> > 
> > I checked out the current SVN and tried the following
> > // project created on 4/27/2007 at 8:25 AM
> > 
> > using System;
> > using Deveel.Delicious;
> > namespace DelTest
> > {
> >     class MainClass
> >     {
> >             public static void Main(string[] args)
> >             {
> >                     DeliciousClient client = new
> > DeliciousClient("myusernamehere","myverysecretpass");
> >                     Console.ReadLine();
> >                     DeliciousPostCollection posts = client.GetAllPosts();
> >                     
> >                     foreach(DeliciousPost post in posts)
> >                     {
> >                             Console.WriteLine("{0}\n
> > \t{1}",post.Description,post.Url.ToString());
> >                     }
> >                     Console.ReadLine();
> >                     Console.WriteLine("done");
> >             }
> >     }
> > }
> > 
> > I get the following:
> > Unhandled Exception: Deveel.Delicious.DeliciousClientException: Error
> > getting response stream (Trust failure): TrustFailure
> >   at Deveel.Delicious.DeliciousClient.GetAllPosts (System.String tag)
> > [0x00000] 
> >   at Deveel.Delicious.DeliciousClient.GetAllPosts () [0x00000] 
> >   at DelTest.MainClass.Main (System.String[] args) [0x00016]
> > in /home/timothy/sources/delicious/DelTest/DelTest/Main.cs:12 
> > 
> > but my username/password configuration is correct, unless I need to
> > specify it in a different way ?
> > 
> > Looking forward to using this library !! :)
> > 
> > Timothy.
> > 
> > _______________________________________________
> > Mono-list maillist  -  [email protected]
> > http://lists.ximian.com/mailman/listinfo/mono-list
> > 
> 
> 
> 
> 
> 
> 
> 
> ---------------------------------
> 
> WARNING: Computer viruses can be transmitted via email. The recipient should 
> check this email and any attachments for the presence of viruses. The company 
> accepts no liability for any damage caused by any virus transmitted by this 
> email. E-mail transmission cannot be guaranteed to be secure or error-free as 
> information could be intercepted, corrupted, lost, destroyed, arrive late or 
> incomplete, or contain viruses. The sender therefore does not accept 
> liability for any errors or omissions in the contents of this message, which 
> arise as a result of e-mail transmission.
> 
> Warning: Although the company has taken reasonable precautions to ensure no 
> viruses are present in this email, the company cannot accept responsibility 
> for any loss or damage arising from the use of this email or attachments
> 

_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to