Re: Microsoft BUILD / Windows 8

2011-09-19 Thread Stephen Price
Does that mean I'm going to get it all over me, and make a mess? Thanks for the link, some cool resources there. I'm a little hesitant to accept that the site is targeted at me though. Probably the developer in me screaming. The designer in me seems ok with it. (the internal conflict continues)

Re: Assembly binding woes

2011-09-19 Thread Mark Hurd
Can't help, but that sounds like a well enough explained problem for stackoverflow.com. -- Regards, Mark Hurd, B.Sc.(Ma.)(Hons.) On 19 September 2011 15:57, Matt Siebert mlsieb...@gmail.com wrote: Hi all, I have some assembly binding weirdness happening that I don't fully understand.  I have

Re: Assembly binding woes

2011-09-19 Thread Preet Sangha
Matt, can you try and use a probe path using a symbolic linked subdirectory to the real directory? On 19 September 2011 18:27, Matt Siebert mlsieb...@gmail.com wrote: Hi all, I have some assembly binding weirdness happening that I don't fully understand. I have some theories but I'd like to

RE: Assembly binding woes

2011-09-19 Thread David Kean
If overrides are not getting called, then is a sign that the runtime seeing that that the virtual method takes a different ContainerBuilder type (ie 3.5) to the override (4.0 or vice versa) and hence are not seen as compatible. I just ran this by Nick (who owns Autofac and is down the hall from

Fwd: SharePoint client object model for Site[Collections]

2011-09-19 Thread Stephen Liedig
Hi all, not sure if anyone can help me with this. We need to find a way to be able to create a SharePoint 2010 Site (Site Collection) only using the client object model. So far we've managed to create a SP Web, no problem, but because of the architectural requirements each of these needs a must

Re: SharePoint client object model for Site[Collections]

2011-09-19 Thread Stephen Liedig
I think we sorted this. We are using the Admin web services to create the site. We then plan to use the client object model to change the site properties. This should give us what we need. Regards, Steve On 20 September 2011 09:28, Stephen Liedig slie...@gmail.com wrote: Hi all, not sure if

How to diagnose WCF 'NotFound'

2011-09-19 Thread Greg Keogh
Folks, I have a WCF service hosted in IIS that is called by an SL4 app to send client files to the server. Years ago I updated various configuration values to allow up to 20MB transfer. This is on the server side: binding name=Bind1 maxBufferSize=20971520 maxReceivedMessageSize=20971520

Re: SharePoint client object model for Site[Collections]

2011-09-19 Thread Peter Arvoll
Hi Steve I have been looking into working with SharePoint sites today (via the web services) and I think that I read somewhere that the object model only works if you're running on the machine where SharePoint is hosted. Throwing the question to a wider audience, I have a client who wants to

Re: How to diagnose WCF 'NotFound'

2011-09-19 Thread Wallace Turner
believe there is a way of sending a Stream that can be read in chunks and allow progress reporting. Is that right? Anyone done it? Yep, define this contract |[ServiceContract] public interface ISoftwareUpdater { [OperationContract()] *Stream*GetDownloadStream(FileUpdate fileUpdate);