rasor.wordpress.com
VS2013 – DB Project – Issues and Tips | RaSor's Tech Blog
https://rasor.wordpress.com/2015/08/04/vs2013-db-project-issues
RaSor's Tech Blog. August 4, 2015 /. VS2013 – DB Project – Issues and Tips. I’ve recently stumpled upon a couple of problems in a DB project in Visual Studio. 1) Could not update. DB with a script after Schema Compare. Solution: Remove build errors. In my case it was a matter of commenting out some users and permissions. 2) Could not build. System.MethodAccessException: Attempt by method ‘Microsoft.Data.Tools.Schema.Sql.Build.SqlTaskHost.OnCreateCustomSchemaData. Download Latest SQL Server Data Tools.
rasor.wordpress.com
Using Curl | RaSor's Tech Blog
https://rasor.wordpress.com/2015/05/26/using-curl
RaSor's Tech Blog. May 26, 2015 /. Some links for Curl. Download Curl for win64. Http:/ curl.haxx.se/dlwiz/? Type=bin&os=Win64&flav=-&ver=-. Http:/ callejoabel.blogspot.fi/2013/09/making-curl-work-on-windows-7.html. Https:/ support.signicat.com/pages/viewpage.action? Use eg. Fiddler for catching a request send from a client on localhost. Save request to xml file. Use xml file from curl. Http:/ www.soapui.org/getting-started/your-first-soapui-project.html. EPiServer7.x: Get Aboslute Url from page. Rasmus ...
rasor.wordpress.com
EPiServer7.x: Get Aboslute Url from page | RaSor's Tech Blog
https://rasor.wordpress.com/2015/04/24/episerver7-x-get-aboslute-url-from-page
RaSor's Tech Blog. April 24, 2015 /. EPiServer7.x: Get Aboslute Url from page. Sometimes you need an absolute url from a page within EPiServer. Dejan Caric made this nice HowTo: http:/ www.dcaric.com/blog/episerver-how-to-get-external-page-url. Here the same code is put in an extension method and a method including wanted language is added:. Public static string GetExternalUrl(this PageReference pageReference) { var internalUrl = UrlResolver.Current.GetUrl(pageReference); var externalUrl = Extern...Var e...
rasor.wordpress.com
EPiServer7x: Hooking up to Quicknavigator | RaSor's Tech Blog
https://rasor.wordpress.com/2015/04/07/episerver7x-hooking-up-to-quicknavigator
RaSor's Tech Blog. April 7, 2015 /. EPiServer7x: Hooking up to Quicknavigator. Alf Nilsson provided this great post about Hooking up to EPiServer Quicknavigator. I our solution we use StructureMap. It looks a little different then:. Using StructureMap; using StructureMap.Configuration.DSL; public class ServiceRegistry : Registry { public ServiceRegistry() { / . some other registrations For IQuickNavigatorItemProvider ().Use LogoutQuickNavigatorItemProvider (); }. ASPNET: Base Url and Absolute Url. Rasmus...
rasor.wordpress.com
TeamCity: Cleanup | RaSor's Tech Blog
https://rasor.wordpress.com/2015/06/24/teamcity-cleanup
RaSor's Tech Blog. June 24, 2015 /. In our TeamCity setup our BuildAgent ran out of disk space. To find the problem I had to learn how our setup was. It was a single server with two folders:. In c: programdata jetbrains teamcity. Was inside the Program folder. Was running two tasks. Build (called Main branch Build). Deploy (called Deploy to ITest from Main branch). The output of the Build task. Was built in the temp folder. Task output folder) of the BuildAgent. The output was a Nuget package (.nupkg).
rasor.wordpress.com
ASP.NET: Base Url and Absolute Url | RaSor's Tech Blog
https://rasor.wordpress.com/2015/03/30/asp-net-base-url-and-absolute-url
RaSor's Tech Blog. March 30, 2015 /. ASPNET: Base Url and Absolute Url. Seems like I have to dig everytime I need an absolute url. From http:/ stackoverflow.com/questions/689678/request-url-host-and-applicationpath-in-one-call. Various helpers: https:/ gist.github.com/huanlin/6086030. ResolveUrl: http:/ www.codeproject.com/Articles/53460/ResolveUrl-in-ASP-NET-The-Perfect-Solution. EPiServer7x: Hooking up to Quicknavigator. EPiServer: Change block on page. Leave a Reply Cancel reply. Jon Skeet – UK. Søren...
rasor.wordpress.com
EPiServer – Changing hostname on single website | RaSor's Tech Blog
https://rasor.wordpress.com/2015/06/19/episerver-changing-hostname-on-single-website
RaSor's Tech Blog. June 19, 2015 /. EPiServer – Changing hostname on single website. Re-add “*” to Hostname in EPiServer. Have you tried to delete websites in EPiServer then added a new one and not adding “*” as hostname? In my case our code failed somewhere deep down, so it felt as the easiest solution to add the “*” directly in the DB. Leave a Reply Cancel reply. Enter your comment here. Please log in using one of these methods to post your comment:. Address never made public). Diederik Krols (of U2U).
rasor.wordpress.com
Async Tasks over WCF | RaSor's Tech Blog
https://rasor.wordpress.com/2015/07/28/async-tasks-over-wcf
RaSor's Tech Blog. July 28, 2015 /. Async Tasks over WCF. This is a sample of using async tasks over WCF. The client handles possible errors (exceptions) from the server in a separate task. The server just runs in sync, but it can be changed to await some async response. The client already have just set up an Async call anyway. When the server throws an error the task in the client will be faulted and the client takes action on that. Https:/ rasor.wordpress.com/2014/07/16/c-snippets/. Jon Skeet – UK.
rasor.wordpress.com
VS: Convert WebForms WebSite to WebApp | RaSor's Tech Blog
https://rasor.wordpress.com/2015/07/20/vs-convert-webforms-website-to-webapp
RaSor's Tech Blog. July 20, 2015 /. VS: Convert WebForms WebSite to WebApp. Converting a Visual Studio Web Site to a Web Application makes it easier to have control of all the references. Here are steps todo for that procedure. Create an empty ASP.NET application with WebForms. Drag’n’drop files from the old website project into your new webapp project (except for web.config). On the imported .cs files change Build Action from Content to Compile. For each MyPage . aspx. Cs, MyMaster . master. WCF: Enable...
rasor.wordpress.com
WCF: Enable WSDL on a WCF Service (Ajax-enabled) | RaSor's Tech Blog
https://rasor.wordpress.com/2015/07/22/wcf-enable-wsdl-on-a-wcf-service-ajax-enabled
RaSor's Tech Blog. July 22, 2015 /. WCF: Enable WSDL on a WCF Service (Ajax-enabled). System.serviceModel behaviors endpointBehaviors behavior name=MyServiceAspNetAjaxBehavior enableWebScript / /behavior /endpointBehaviors /behaviors serviceHostingEnvironment aspNetCompatibilityEnabled=true / services service name=MyService endpoint address= behaviorConfiguration=MyServiceAspNetAjaxBehavior binding=webHttpBinding contract=MyService / /service /services /system.serviceModel. System.serviceModel behavi...
SOCIAL ENGAGEMENT