Re: [OT] Accepting a one off credit card payment

2017-01-12 Thread Tristan Reeves
How about https://pin.net.au ? On Fri, Jan 13, 2017 at 12:40 PM, Tom Rutter wrote: > They're not with cba unfortunately > > > On Fri, Jan 13, 2017 at 12:35 PM, mike smith wrote: > >> With the combank app they could pay into your BSB / account number. >>

Re: Bare bones web app

2014-09-28 Thread Tristan Reeves
Hi, You consider using asp.net to be bypassing all frameworks completely?? Interesting. Now a belt-and-braces type of person might have said a console app with a socket was a bit more like the old days... Tristan. On Sat, Sep 27, 2014 at 9:51 AM, Greg Keogh g...@mira.net wrote: Folks, as an

Re: [OT] Specflow

2014-04-29 Thread Tristan Reeves
We've used it. In my experience you have to exercise a lot of discipline in order to keep the code-behind clean, especially when related scenarios start to get many in number. Tristan On Tue, Apr 29, 2014 at 5:45 PM, Kirsten Greed kirst...@jobtalk.com.au wrote: Hi All Not sure if this is OT

Re: Buffer to XML problem

2014-01-30 Thread Tristan Reeves
According to http://stackoverflow.com/questions/2111586/parsing-xml-string-to-an-xml-document-fails-if-the-string-begins-with-xml this could be a problem with the pre-amble. One reply says to use using (var xmlStream = new MemoryStream(fileContent)) using (var xmlReader = new

Re: Runtime log4net configuration

2013-11-16 Thread Tristan Reeves
Hi, I've worked on plenty of serious apps with log4net and as far as I know we've never had a need to change the logfile at runtime. Why would you need to change the logfile? We've normally regarded the logging information as static information which requires a redeployment to change. In our

how to get a code signing certificate

2013-09-23 Thread Tristan Reeves
Hi List, Title says it all...can anyone advise what steps need to be taken to get a code-signing certificate? It seems quite a murky subject for some reason. At least for me...then again perhaps it's my google-fu which is lacking. I suppose one uses SignTool.exe (on windows) to actually do the

Re: how to get a code signing certificate

2013-09-23 Thread Tristan Reeves
. To create a test cert. http://msdn.microsoft.com/en-us/library/ff699202.aspx Anthony On 23/09/13 7:27 PM, Tristan Reeves tree...@gmail.com wrote: Hi List, Title says it all...can anyone advise what steps need to be taken to get a code-signing

3rd party component for sftp

2013-09-09 Thread Tristan Reeves
Hi List, Does anyone know of a good 3rd party (free + OS) component that can do sftp? I was using ftplib for ftp but it seems it can't do anything with sftp. Also I do not want to use FtpWebRequest. Thanks, Tristan.

Re: 3rd party component for sftp

2013-09-09 Thread Tristan Reeves
Thanks for your suggestions. Tristan. On Mon, Sep 9, 2013 at 6:47 PM, William Luu will@gmail.com wrote: I'm using SSH.NET, which is hosted on codeplex — Sent from Mailbox for iPhone On Mon, Sep 9, 2013 at 4:57 PM, Tristan Reeves tree...@gmail.com wrote: Hi List, Does anyone know

Re: Visual studio and SharpDevelop: who uses which on this list and why?

2013-05-03 Thread Tristan Reeves
full featured meaning, um, not full featured. Or at least not if you consider having any plugin work with VS a feature. LOL. Ah Microsoft, gotta love 'em. :) On Sat, May 4, 2013 at 3:57 AM, Katherine Moss katherine.m...@gordon.edu wrote: If they are full-featured, then what is the difference

Re: Visual accessibility Re: field/button/control labeling enforcement in Visual Studio sometime: who agrees with this proposal?

2012-12-16 Thread Tristan Reeves
Hi, IMHO adding restrictions by fiat on what will and won't compile wouldn't work. Let's say you have a compiler that complains when labels are not present. The solution for many devs would be to add a label off screen with blank text or with a single dot or something. Perhaps some work could go

Re: Anyone using structs in C# Business Applications?

2012-08-22 Thread Tristan Reeves
writers, do you use structs any where for any reasons? In all the usuall VS demos I have not seen structs being used ( graphics demos do not count!) Regards Arjang Tristan Reeves wrote: Hi, To answer your specific question, int, double, bool, DateTime are all structs. I can't see any

Re: Anyone using structs in C# Business Applications?

2012-08-22 Thread Tristan Reeves
Hi, Int, DateTime, bool. They are all structs. Are you saying they are not useful in a vanilla business app? Tristan. On Thu, Aug 23, 2012 at 9:23 AM, Arjang Assadi arjang.ass...@gmail.comwrote: Heinrich, I still don't understand in plain vanilla business app i.e. GUI ( WinForm/WPF/Asp.net

Using reg-free com with asp.net

2012-08-05 Thread Tristan Reeves
Hi, Can anyone point me to a resource on how to set up registry-free com for use within an asp.net (IIS7) website? I can't seem to find much, all I can find is for executables. Thanks, Tristan.

Re: PGP (free/open source) component for .NET

2012-05-02 Thread Tristan Reeves
Hi, I've used GPG, which is a gnu implementation. It worked well for me so far, but you'd have to use its command line (no 'native' .net components). Regards, Tristan. On Wed, May 2, 2012 at 3:23 PM, etmi...@iinet.net.au wrote: Hi Everyone, Can anyone share their experience with free/open

Re: Distributed Logging Experiences

2012-04-18 Thread Tristan Reeves
log4net has a RabbitMQ appender, so that messages go to a RabbitMQ queue. http://nuget.org/packages/log4net.RabbitMQAppender http://www.rabbitmq.com/ Maybe that will help you? Regards, Tristan. On Fri, Apr 6, 2012 at 11:20 PM, Dave Walker rangitat...@gmail.com wrote: Hey guys, looking for

Re: log4net sample

2012-03-26 Thread Tristan Reeves
Hi, http://www.codeproject.com/Articles/140911/log4net-Tutorial (hit #2 for log4net tutorial, at least for me) yields: [assembly: log4net.Config.XmlConfigurator(Watch = true)] At work we use log4net and have never had any issues. One thing it's very useful for is sending email messages when

Re: unit testing gone mad

2011-06-06 Thread Tristan Reeves
, Stephen On Mon, Jun 6, 2011 at 10:42 AM, Heinrich Breedt heinrichbre...@gmail.com wrote: As an exercise, try making the method name articulate what you are testing. Use underscore for space. Don't be afraid to use longish sentence On Jun 6, 2011 12:32 PM, Tristan Reeves tree

Re: unit testing gone mad

2011-06-05 Thread Tristan Reeves
over inheritance - move the shared behaviour into an entirely different class and inject that as a dependency. It certainly sounds like the tests don't explain what the class does or why. Sorry about the rant. I hope some of that made sense. On Sun, Jun 5, 2011 at 5:06 PM, Tristan Reeves

Re: unit testing gone mad

2011-06-05 Thread Tristan Reeves
ClassForUseInheritsBaseClass On Mon, Jun 6, 2011 at 6:22 AM, Heinrich Breedt heinrichbre...@gmail.comwrote: Just wondering, what is the name of the test? On Jun 5, 2011 5:06 PM, Tristan Reeves tree...@gmail.com wrote: Hi list, I'll describe the situation in as little detail as possible

Re: building the domain model - what tools to use?

2011-05-31 Thread Tristan Reeves
Is there any reason it has to be a *visual* designer? There are non-visual (scripted, or template based) solutions available. On Tue, May 31, 2011 at 3:22 PM, Kirsten Greed kirst...@jobtalk.com.auwrote: Dear all I want to have a visual tool that will generate business objects and the

Re: Any thoughts on products from Infralution

2011-05-30 Thread Tristan Reeves
I found them to be rather average...but it was so long ago I can't remember the exact reasons. I ended up getting something called reactor I think. From eziriz. It was many times superior to the infralution product. That was all many years ago, however. On Mon, May 30, 2011 at 11:14 PM, Glenn

Re: LINQ extensions

2011-02-16 Thread Tristan Reeves
` then you won't seen the `.Length` property. *From:* ozdotnet-boun...@ozdotnet.com [mailto: ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Tristan Reeves *Sent:* Wednesday, 16 February 2011 11:54 *To:* ozDotNet *Subject:* Re: LINQ extensions But Length is always a (valid) property of arrays

Re: LINQ extensions

2011-02-15 Thread Tristan Reeves
But Length is always a (valid) property of arrays, whether or not LINQ is reference. Or are you saying that Length disappears when LINQ is referenced? Tristan. On Tue, Feb 15, 2011 at 4:23 PM, Ian Thomas il.tho...@iinet.net.au wrote: Michael – slip of the fingers – yes, it was a .Count method

Re: Points, Gotchyaz to consider with Asp.net Membership Moving from 3.5 to 4.0?

2011-01-23 Thread Tristan Reeves
Revert to 3.5 On Mon, Jan 24, 2011 at 3:34 PM, Arjang Assadi arjang.ass...@gmail.comwrote: I have moved a site from 3.5 to 4.0 , now after logging in all is shown is : Server Application Unavailable The web application you are attempting to access on this web server is currently

Re: ObjectDataSource SelectParameters to URL query string

2011-01-19 Thread Tristan Reeves
Since the very first sentence of that wikipedia entry, A *comma-separated values* or *character-separated values* (*CSV*) file is a simple text format for a database http://en.wikipedia.org/wiki/Database table, is at best poorly worded (database table?!), I wouldn't necessarily give too much