Re: [Mono-dev] How to report bug in mono/monodevelop/nuget?

2014-12-02 Thread Adar Wesley
Hi, NuGet home appears to be at: https://nuget.codeplex.com/ They have Issue Tracking there. --- Adar Wesley On Tue, Dec 2, 2014 at 11:42 AM, Federico Di Gregorio wrote: > Hi, > > I think I found a little bug in NuGet when running the package manager > from inside MonoDevelop,

Re: [Mono-dev] JSON Deserialization

2011-04-24 Thread Adar Wesley
Hi, You need to quote the property name too. See in the JSON I quoted the Name property name as follows: {\"Name\":\"1\"} That's what the error message tells you. It is expecting the " character and finding the N of Name. --- Adar Wesley On Sun, Apr 24, 2011 a

Re: [Mono-dev] JSON Deserialization

2011-04-24 Thread Adar Wesley
quot;Name\":\"1\"}, {\"Name\":\"2\"}]". Only after making these changes does it work on MS.NET. Hope this helps. --- Adar Wesley On Sun, Apr 24, 2011 at 8:03 PM, Troy Hamilton wrote: > > On Sun, Apr 24, 2011 at 8:53 AM, Antoine Cailliau < > an

Re: [Mono-dev] csproj files for Mono's class libraries.

2011-02-14 Thread Adar Wesley
: http://visualstudiogallery.msdn.microsoft.com/c074d3c6-71e2-4628-9e7c-7690e706aef4?SRC=VSIDE to name just a few. And for the express editions of VS2010, one could always use the NUnit Gui and NUnit console applications to run the test suites. --- Adar Wesley On Mon, Feb 14, 2011 at 12:52 PM

Re: [Mono-dev] WCF: InstanceContextMode.PerSession

2011-01-11 Thread Adar Wesley
osoft.com/en-us/library/system.servicemodel.servicebehaviorattribute.releaseserviceinstanceontransactioncomplete.aspx> Hope this helps. --- Adar Wesley On Tue, Jan 11, 2011 at 8:07 AM, Atsushi Eno < atsushi...@veritas-vos-liberabit.com> wrote: > Hi again, > > To my understanding

Re: [Mono-dev] Fwd: webservice under mono/xsp

2010-09-15 Thread Adar Wesley
Together they should form the Fully Qualified class name of the implementation. Also, I seem to remember there was an issue about Mono not supporting Web Sites, but only Web Application. I am not sure if this is still the case. Hope this helps, --- Adar Wesley On Wed, Sep 15, 2010 at 9:59 AM

Re: [Mono-dev] Error CS0246: The type or namespace name `Spotify' could not be found. (CS0246)

2010-08-21 Thread Adar Wesley
... --- Adar Wesley On Sat, Aug 21, 2010 at 1:54 PM, KillerSponge wrote: > > Hello, > > I'm quite new with C#/Mono, so this is probably a very simple problem, but > I > just can't seem to figure it out. > > I've been trying to write a Spotify plugin for Banshee us

Re: [Mono-dev] GroupBy Bug (Bug 601101)

2010-04-30 Thread Adar Wesley
Check out the MSDN documentation of System.Collections.Specialized.OrderedDictionary, you may want to use that. --- Adar Wesley On Fri, Apr 30, 2010 at 12:18 AM, Richard Kiene wrote: > I have filed Bug 601101 https://bugzilla.novell.com/show_bug.cgi?id=601101 for > this issue. In addit

Re: [Mono-dev] ThreadPool unhandled exceptions

2009-12-23 Thread Adar Wesley
Just verified that on MS .NET this has the following output: About to throw an exception UnhandledException ! Application Complete Press any key to continue . . . So it seems to me this is a bug in Mono implementation. --- Adar Wesley On Wed, Dec 23, 2009 at 9:27 PM, Thad Thompson wrote: >

Re: [Mono-dev] Mono Regex not working the same as MS .NET

2009-07-26 Thread Adar Wesley
Hi, I would suspect the \r\n part of the pattern. On UNIX systems new line does not include the \r. --- Adar Wesley On Sun, Jul 26, 2009 at 7:57 PM, Alan McGovern wrote: > Hey, > > Could you take that testcase and info a file a bug report on > bugzilla.novell.com > . This way

Re: [Mono-dev] System.Environment.CurrentDirectory problem

2009-07-23 Thread Adar Wesley
Hi, System.Environment.CurrentDirectory is inherited from the calling process. This is probably your shell. Try looking at AppDomain.CurrentDomain.BaseDirectory or Assembly.GetExecutingAssembly().CodeBase Maybe that's what your looking for. --- Adar Wesley On Thu, Jul 23, 2009 at 7:

Re: [Mono-dev] Patch to fix comparison of DateTime objects in Mono.Data.SqlExpressions

2009-07-23 Thread Adar Wesley
ead. CurrentThread.CurrentCulture != CultureInfo.InvariantCulture) { What happens if (o2 is<http://www.google.com/search?q=is+msdn.microsoft.com>DateTime && o1 is <http://www.google.com/search?q=is+msdn.microsoft.com> string && Thread. CurrentThread.CurrentCulture == CultureI

Re: [Mono-dev] correction for "Compiling Mono on WIndows' page.

2009-02-16 Thread Adar Wesley
Hi Miguel, Good to hear about the Visual Studio script. Where can we see instructions on how to use it? --- Adar Wesley On Mon, Feb 16, 2009 at 6:14 AM, Miguel de Icaza wrote: > Aha. The dot at the beginning off the line threw me off. Since I'm used >> to run shell scripts

Re: [Mono-dev] correction for "Compiling Mono on WIndows' page.

2009-02-14 Thread Adar Wesley
ource' command is wrong because the commands in the mentioned file are /bin/bash or /bin/sh commands. Have a good day, --- Adar Wesley On Sat, Feb 14, 2009 at 2:05 PM, Lucas Meijer wrote: > Hey, > > Note sure if this list is the right place to send this, but on this page: > h

Re: [Mono-dev] Mono and IBM

2009-01-31 Thread Adar Wesley
Hi, Take a look at Mainsoft's Grasshopper, which does exactly that. It compiles your .NET code into Java. Then you can deploy the java onto the AS400. Hope this helps ... --- Adar Wesley 2009/1/31 BGB > > > - Original Message - > *From:* Carlos Ruiz Di

Re: [Mono-dev] Class loading related problem with mono xsp and ikvm

2008-10-19 Thread Adar Wesley
Hi, Try naming the configuration file web.config and putting it in the root directory of your web application. --- Adar Wesley On Sat, Oct 18, 2008 at 12:52 AM, KyuHwan Kim <[EMAIL PROTECTED]> wrote: > Hi, everyone. > > I am doing some project with mono xsp and ikvm. > Bu

Re: [Mono-dev] Thread creation failed

2008-09-10 Thread Adar Wesley
Hi Sagiv, Is your application leaking Threads, Memory, Virtual Memory, Handles? Any such leakage can prevent the system from being able to create threads. --- Adar Wesley On Mon, Sep 8, 2008 at 12:19 PM, sagiv <[EMAIL PROTECTED]>wrote: > > Hi guys > > i wrote a server ap

Re: [Mono-dev] Unit tests for WCF

2008-04-01 Thread Adar Wesley
unit testing. The sample itself is copyright protected. However, I think that just knowing that such a solution exists can put you on the right track. Hope this helps. --- Adar Wesley 2008/4/1 Roei Erez <[EMAIL PROTECTED]>: > Hi, > > We are currently writing integrative tests

Re: [Mono-dev] Patch for System.IO.Ports.SerialPort ReadLinefunction

2007-11-06 Thread Adar Wesley
cient implementation of keeping track of multiple possible matches. Just google for AGREP algorithm, or check out here: http://webglimpse.net/pubs/TR94-17.pdf Hope this helps, and sorry if it's not relevant. --- Adar Wesley On 11/6/07, Michael Mattess <[EMAIL PROTECTED]> wrote: &g

Re: [Mono-dev] Winforms WebBrowser control - call for apps

2007-10-09 Thread Adar Wesley
window.open and window.close methods so I can control where popup windows are opened. If this seams like a good test case, let me know and we will see how to procede. (I don't have a mono version that I can test on at the moment.) --- Adar Wesley On 10/9/07, Andreia Gaita <[EMAIL P

Re: [Mono-dev] Replicating System.Web.Script.Serialization bugs

2007-10-01 Thread Adar Wesley
"xxx" and the type is "int?"? This should probably throw the error and not silently assign the null value. (Requires a test with MS code...) Just my two cents. --- Adar Wesley On 10/1/07, Konstantin Triger <[EMAIL PROTECTED]> wrote: > > Try/catc

Re: [Mono-dev] .Net 2.0 asynchronous web pages

2007-08-05 Thread Adar Wesley
Hi Sunny, As far as I know the Async pages feature is not fully implemented. --- Adar Wesley Mainsoft. On 8/6/07, Sunny <[EMAIL PROTECTED]> wrote: > > Hi, > what is the state of asynchronous web pages? looks like it is broken. > I set Async="true" in the @Page di

Re: [Mono-dev] Compiler bug with Generics and where constraints

2007-07-16 Thread Adar Wesley
n the decleration of GetQueryObjects or remove the constraint from GetBusinessQueryObjectFromReader. --- Adar Wesley On 7/16/07, John Anderson <[EMAIL PROTECTED]> wrote: I tried making a smaller example but couldn't reproduce the error because i'm not exactly sure whats causing it.

Re: [Mono-dev] Problem with Request.Browser.MSDomVersion and Firefox

2007-04-24 Thread Adar Wesley
in Microsoft's definitions in the C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers folder. I hope this helps. Adar Wesley Mainsoft On 4/24/07, Hubert FONGARNAND <[EMAIL PROTECTED]> wrote: try this aspx with firefox <%@ Page Language="C#" %> void

Re: [Mono-dev] Control.UniqueID Please review

2007-02-04 Thread Adar Wesley
Hi Eyal, We got that one right after I committed the UniqueId change, so I commited this fix right after that. --- Adar Wesley On 2/4/07, Eyal Alaluf <[EMAIL PROTECTED]> wrote: Hi, Adar. You need also to change WebForm_GetFormFromCtrl in 'resources/webform.js' where

Re: [Mono-dev] update to machine.config

2007-02-01 Thread Adar Wesley
Hi, The tests use a fake Membership provider to simplify the test. The provider is fake in the sense that it returns hardcoded values. --- Adar Wesley Mainsoft On 2/1/07, Miguel de Icaza <[EMAIL PROTECTED]> wrote: Hey, > > I added the section: > > > > This l

[Mono-dev] update to machine.config

2007-02-01 Thread Adar Wesley
was not registered in machine.config I updated my local machine.config so I can test this, and updated machine.config at mono/data/net_2_0/machine.config so it can be committed. Please approve this commit of machine.config. Thanks, --- Adar Wesley Mainsoft

[Mono-dev] Control.UniqueID Please review

2007-01-29 Thread Adar Wesley
ce this is such a low level API in System.Web, I am submitting it here for review before committing. Please let me know if you see any problem with this implementation or if I can commit. Thanks, --- Adar Wesley Mainsoft Control.UniqueID.Patch Description: Control.Uniq

Re: [Mono-dev] Please approve commit change toSystem.Web.Hosting/ApplicationHost.cs

2007-01-17 Thread Adar Wesley
let me know. Thanks, --- Adar Wesley Mainsoft -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier Sent: Friday, January 12, 2007 8:01 AM To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Please approve commit change

[Mono-dev] Please approve commit change to System.Web.Hosting/ApplicationHost.cs

2007-01-09 Thread Adar Wesley
new Uri (physicalDir); - physicalDir = HttpUtility.UrlDecode (u.AbsolutePath); The reasoning is that physicalDir should have file system semantics and not URI semantics. The Path.GetFullPath() API fixes all the slashes to be correct for the OS. This is true both for version 1.1 and 2.0.