Re: How to diagnose WCF 'NotFound'

2011-09-20 Thread Neil Young
Greg, You can also put this in the config file on the server side and see if you get a file generated. If so there will more than likely be some info in there for you. Warning it does generate a lot of data quickly. system.diagnostics trace autoflush=true / sources source

RE: How to diagnose WCF 'NotFound'

2011-09-20 Thread Greg Keogh
Neil, Wallace, I created an ASP.NET client (instead of SL4) and attempted to upload 7MB and I get this stack of exceptions: ♦ CommunicationException: An error occurred while receiving the HTTP response to http://localhost/service/Aggregation.svc. This could be due to the service endpoint

RE: How to diagnose WCF 'NotFound'

2011-09-20 Thread Jake Ginnivan
Add a WCF error handler behaviour which changes the http return code to 200 even if there is an error (on the server side). The browser sees the http 500 return code which WCF returns when an exception is thrown, which the browser gets before Silverlight, then all Silverlight sees is a http

Re: Assembly binding woes

2011-09-20 Thread Matt Siebert
Just getting back to this now... Both assemblies are referencing the .NET 3.5 version of Autofac and the 4.0 version is out because these assemblies are being loaded into a .NET 3.5 process (3rd party native app that hosts .NET 3.5 for plugins). To add a probing path it would need to go in the

RE: How to diagnose WCF 'NotFound'

2011-09-20 Thread Greg Keogh
Add a WCF error handler behaviour which changes the http return code to 200 even if there is an error (on the server side). I've seen a few samples where people do this trick. However, I would rather have a naked wrestling match with a rabid grizzly bear than write some WCF behaviour code.

Re: How to diagnose WCF 'NotFound'

2011-09-20 Thread Stephen Price
Now I know what WCF really stands for. Wrestling Championship Federation. Have you seen my bear, Tibbers? :) On Wed, Sep 21, 2011 at 8:01 AM, Greg Keogh g...@mira.net wrote: Add a WCF error handler behaviour which changes the http return code to 200 even if there is an error (on the server

Re: SharePoint client object model for Site[Collections]

2011-09-20 Thread Nathan Schultz
Hi Steve, In regards to the Powershell question - I'm reading between the lines a bit about your exact requirements. You do not have to use the Sharepoint 2010 Management Shell. The only difference between Windows Powershell and the Sharepoint 2010 Management Shell is the Sharepoint providers

Re: How to diagnose WCF 'NotFound'

2011-09-20 Thread Grant Maw
Ye I think this whole naked bear wrestling thing is a wonderful idea. Perhaps @ the next TechEd or CodeCamp Greg could do something like this. I for one would pay good money to see it :) On 21 September 2011 10:52, Stephen Price step...@littlevoices.com wrote: Now I know what WCF really stands

Launching email client

2011-09-20 Thread Greg Keogh
Ye I think this whole naked bear wrestling thing is a wonderful idea. Perhaps @ the next TechEd or CodeCamp Greg could do something like this. I for one would pay good money to see it :) If you double my pay I'll do it in a pit full of cobras. But seriously, I was just about to post a

Re: Launching email client

2011-09-20 Thread Richard Mason
Hi Greg, You're looking at the results of a URL protocol handler. See here for more info: http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx ciao, Richard Aussie Bushwalking It's like Wikipedia... but for Bushwalkers! http://www.aussiebushwalking.com/ On Wed, Sep 21, 2011 at 1:18

RE: Launching email client

2011-09-20 Thread Greg Keogh
You're looking at the results of a URL protocol handler. See here for more info: http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx Aha! You can see them under here: HKEY_CLASSES_ROOT\PROTOCOLS\Handler Greg

Re: Launching email client

2011-09-20 Thread Stephen Price
I'm looking for; System.Diagnostics.Process.Start(wrestle:g...@mira.net ?subject=grizzlyoption=cobras); Seriously though, only double your pay? We could pass around a collection tin and make this happen guys! On Wed, Sep 21, 2011 at 11:18 AM, Greg Keogh g...@mira.net wrote: *Ye I think this

Re: Launching email client

2011-09-20 Thread noonie
Cool... WOAH! CDL: Asychronous Pluggable Protocol Handler Even Google returns results for Asynchronous and that key is littered with the mis-spelt Asychronous... Now to find out what CDL and friends are... -- noonie On 21 September 2011 13:50, Greg Keogh g...@mira.net wrote: PROTOCOLS

RE: Launching email client

2011-09-20 Thread Peter Maddin
Hi Greg I have used this class https://blazeapps.svn.codeplex.com/svn/BlazeAppplications/BA/Mail/MapiUtilit y.cs I wanted to invoke the existing clients default email client and pass information including attachments to it. I did not want to write an embedded email client using

RE: Launching email client

2011-09-20 Thread Ian Thomas
CDL - http://en.wikipedia.org/wiki/Common_Data_Link (military protocol) ? established 1991 There is a W3C spec for WS-CDL so maybe that's what the asy(n)chronous pluggable derives from. The MSDN docs surrounding this URL http://msdn.microsoft.com/en-us/library/aa767739(v=VS.85).aspx are

Re: Launching email client

2011-09-20 Thread noonie
Thanks, There's a whole bunch of interesting protocols in there. And who uses gopher anymore anyway... -- Regards, noonie On 21 September 2011 15:01, Ian Thomas il.tho...@iinet.net.au wrote: CDL - http://en.wikipedia.org/wiki/Common_Data_Link (military protocol) ? established 1991

Re: SharePoint client object model for Site[Collections]

2011-09-20 Thread Stephen Liedig
Thanks for the responses guys. We got what we needed through the Admin WebServices - it has a method that allows you to create Sites (CreateSite(...)). Once the site is created we can then use the client object model to assign the necessary permissions and make any other changes we need to the

RE: How to diagnose WCF 'NotFound'

2011-09-20 Thread Greg Keogh
Thanks Jake, I'll save that code sample. The reason I was so hostile to the idea of writing behaviours comes from last year where I thought I had to write one to allow an SL4 app to send authentication data with each WCF call. I wanted to use the equivalent of a SOAP header which was really easy