Hi there, Last wednesday the Sitecore User Group Netherlands (SUGNL) had a get together meeting in a café in Utrecht. This evening also the Dutch Umbraco User Group (DUUG) held their meeting in the same cafe. This time it wasn’t a batlle of Sitecore vs Umbraco, but a great meeting on Web Content Management software and on two great Content Management Systems. Here are some pictures: gr, Robbert
Hi there, Two weeks ago I wrote a blogpost on Sitecore Rock’s Query Analyzer (http://newguidnet/sitecore/2012/sitecore-rocks-query-analyzer-handy-queries/). Tonight I have some more queries that could come in handy! Get all the items from the MASTER database that have configured an assembly name in it: use master; select * from /sitecore//*[contains(@Assembly, '')] Get all the items from the CORE database that have configured an assembly name in it: use core; select * from /sitecore//*[contains(@Assembly, '')] By using a specific database, Sitecore Rock’s Query analyzer automatically More Info »
We optimized the RSS feed with Feedburner. This way we offer a RSS feed with multiple direct sharing options and nice statistics. Go ahead and subscribe to the NewGuid.Net RSS feed.
I disabled the comments because of the huge amounts of spam I’m receiving. So if you have any questions you can contact me trough linked-in. Sorry for the inconvenience.
I was using a ObjectDataSource to generate a listing including paging. The ObjectDataSource used the GetItems method of my usercontrol. See this previous post. This construction works great. But now I needed to do some custom filtering in the GetItems method based on a property of the usercontrol. At first I tried to use the property directly in the GetItems method, this didn’t work the property the property returned NULL. After a small search on the internet I found the following blog post. More Info »
#pragma warning disable 1591 #pragma warning restore 1591
Informatie: http://www.sitepoint.com/article/amazon-web-services-asp-net/ http://www.awszone.com/scratchpads/aws/ecs.us/ItemLookup.aws
http://forum.fluorinefx.com/viewtopic.php?f=17&t=151&p=536&hilit=iis7#p536
I got the following errors when trying to run WCF on Vista: The remote server returned an unexpected response: (404) Not Found. HTTP Error 404.2 – Not Found Description: The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server. – Add Mime Type: .svc : application/octet-stream – run C:WindowsMicrosoft.NETFrameworkv3.0Windows Communication FoundationServiceModelReg.exe -i http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/ce4c440a-1664-4695-b89c-a4790e2e865f/ Set: IIS Handler Mappings: *.svc extentsion to script SILVERLIGHT WCF XAP Clientconfig:<endpoint address="http://hu.bachelor/HU%20Bachelor%203.Web/WebService.svc"
HtmlGenericControl obj = new HtmlGenericControl("object"); obj.Attributes.Add("classid", "CLSID:…");
An example of a clientaccesspolicy.xml [code:xml] <?xml version="1.0" encoding="utf-8"?> <access-policy> <cross-domain-access> <policy> <allow-from http-request-headers="*"> <domain uri="*"/> </allow-from> <grant-to> <resource path="/" include-subpaths="true"/> </grant-to> </policy> </cross-domain-access> </access-policy> [/code] An example of a crossdomain.xml [code:xml] <?xml version="1.0"?> <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> <cross-domain-policy> <allow-http-request-headers-from domain="*" headers="*"/> </cross-domain-policy> [/code] For more info you can read this weblog post.
This weekend it happened the 200.000th guid has been generated on NewGuid.Net!! A success I never expected to happen Most of the guids are generated by the IGoogle widget a must for every developer
I updated the blog to BlogEnginge.Net 1.4.5. Changed the design and added some widgets.
[...] using Sitecore Rocks Query. There are some really handy blog post ...