+ All Categories
Home > Documents > WebFoundation 2.0 Kurs

WebFoundation 2.0 Kurs

Date post: 12-Jan-2016
Category:
Upload: raheem
View: 36 times
Download: 3 times
Share this document with a friend
Description:
WebFoundation 2.0 Kurs. Prepare labb Auto register in Autofac ConfigMapper Smaller Functionality Web events Demo Labb WebFoundation , Wipcore. Innehåll. WebFoundation 2.0 Kurs. Prepare labb. Download WF from: http:// win.wipcore.se/Downloads/Item/WebFoundation-2.0.0.117 - PowerPoint PPT Presentation
Popular Tags:
28
Prepare labb Auto register in Autofac ConfigMapper Smaller Functionality Web events Demo Labb WebFoundation, Wipcore WEBFOUNDATION 2.0 KURS INNEHÅLL
Transcript
Page 1: WebFoundation  2.0 Kurs

Prepare labb Auto register in Autofac ConfigMapper Smaller Functionality Web events Demo Labb WebFoundation, Wipcore

WEBFOUNDATION 2.0 KURSINNEHÅLL

Page 3: WebFoundation  2.0 Kurs

Speed up your development with Auto register in Autofac. No need to know and write Autofac register code anymore, just follow naming convention of classes. If you find something to customize in Webfoundation just inherit interface or class and override functionality.

[AutoRegisterAsSingleInstance], "Service", "Repository", "Provider", "Listener", "Factory“

[AutoRegisterAsInstancePerDependency], "Model", "Mapper", "Filter", "ViewData”

WebFoundation.AutoRegister.ExceptTypes

WEBFOUNDATION 2.0 KURSAUTO REGISTER IN AUTOFAC

Page 4: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSAUTO REGISTER IN AUTOFAC

Page 5: WebFoundation  2.0 Kurs

DependencyResolver.Current.GetService<>() Func <> to create x number of classes from another class

(you could also use in-argument). IEnumerable <> to get all the classes that are registered

with an interface. http://win.wipcore.se/Library/Index/WebFoundation.Auto.reg

ister.in.Autofac

WEBFOUNDATION 2.0 KURSAUTO REGISTER IN AUTOFAC

Page 6: WebFoundation  2.0 Kurs

A new alternative to the Factory layer in Webfoundation called ConfigMapper.The purpose of this layer is to get data from Enova, transform (cache) it so it can be displayed . By configuration in xml file (or backoffice) you specify what to map from Enova to the site. The goal is to improve developer speed, Site speed and flexibility.

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 7: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 8: WebFoundation  2.0 Kurs

Just write “?” in configuration to get existing properties (sometimes you need to clear the cache with url /debugcache/clear ):

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 9: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 10: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 11: WebFoundation  2.0 Kurs

http://win.wipcore.se/Library/Index/WebFoundation.ConfigMapper

WEBFOUNDATION 2.0 KURSCONFIGMAPPER

Page 12: WebFoundation  2.0 Kurs

A new Enova dependency cache wich will cache as long the object is not changed in Enova. Only supported when Enova is started in process. This might result in that changes in backoffice will not affect a web started in remote mode.

var policy = new CacheItemPolicy();policy.ChangeMonitors AddEnovaChangeMonitor(product.ID);MemoryCache.Default.Add("testkey", "testValue", policy);

Built on:

WEBFOUNDATION 2.0 KURSSMALLER FUNCTIONALITY

Page 13: WebFoundation  2.0 Kurs

Providers:EnovaContextProviderHttpContextProviderHttpRequestProviderHttpSessionProvider

Extensions (using Wipcore.WebFoundation.Base.Extensions):T GetItem<T>(this HttpContextBase httpContextBase,string key, Func<T> createItem)

T GetItem<T>(this HttpSessionStateBase httpSessionStateBase, string key, Func<T> createItem)

T Get<T>(this ObjectCache objectCache, string key, Func<T> createValue, DateTimeOffset absoluteExpiration, string regionName = null)

T Get<T>(this NameValueCollection appSettings, string key, T defaultValue = default(T))

I.e.

WEBFOUNDATION 2.0 KURSSMALLER FUNCTIONALITY

Page 14: WebFoundation  2.0 Kurs

Updated Enova Generics: http://win.wipcore.se/Library/Index/Wipcore.eNOVA.Generics

WEBFOUNDATION 2.0 KURSSMALLER FUNCTIONALITY

Page 15: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSSMALLER FUNCTIONALITY

Page 16: WebFoundation  2.0 Kurs

ATimerListener makes it possible to schedule events on the web. This might be good if you want to make less complex things without creating integration. If it is not finished on time, it skips to the next opportunity.

AControllerTimerListener makes it possible to schedule an MVC controller on the web, i.e. for caching a page.

IApplicationListener application_start and end error. IRequestListener RequestBegin, RequestEnd , PreRequestExecute,

PostRequestExecutePlease also consider MVC GlobalFilters!

ISessionListener Begin,End You could also set the order to: First, Normal, Last which intentionally is

a rough range.

WEBFOUNDATION 2.0 KURSWEB EVENTS

Page 18: WebFoundation  2.0 Kurs

http://webfoundation.wipcore.se/ Check My.Web for best practice!!! i.e. Nuget for references (js in script folder) Enova CMS Template MyPage.cs, just follow instructions to create a new Page

type. Build event for update portable bs. http://

win.wipcore.se/Library/Index/Wipcore.eNOVA.Remoting.with.IPC

WEBFOUNDATION 2.0 KURSDEMO

Page 19: WebFoundation  2.0 Kurs

MVC RenderAction:

WEBFOUNDATION 2.0 KURSDEMO

Page 20: WebFoundation  2.0 Kurs

http://www.webfoundation.se/debugcache/index http://www.webfoundation.se/debugcache/clear

WEBFOUNDATION 2.0 KURSDEMO

Page 21: WebFoundation  2.0 Kurs

WEBFOUNDATION 2.0 KURSDEMO

Page 22: WebFoundation  2.0 Kurs

MVC Miniprofiler

WEBFOUNDATION 2.0 KURSDEMO

Page 23: WebFoundation  2.0 Kurs

Less,MVC bundle

WEBFOUNDATION 2.0 KURSDEMO

Page 24: WebFoundation  2.0 Kurs

Xml transformation, SlowSheeta

WEBFOUNDATION 2.0 KURSDEMO

Page 25: WebFoundation  2.0 Kurs

One click deploy!

WEBFOUNDATION 2.0 KURSDEMO

Page 26: WebFoundation  2.0 Kurs

Best practice Autofac and override of WF controllers:

WEBFOUNDATION 2.0 KURSDEMO

Page 27: WebFoundation  2.0 Kurs

Elmah view and mail errors:

WEBFOUNDATION 2.0 KURSDEMO

Page 28: WebFoundation  2.0 Kurs

Tips Debug Webfoundation: http://enovaleaks.se/2012/12/17/hur-man-debuggar-webfoundation/

2 branches \tfs\WipcoreWebFoundationDev\tfs\WipcoreWebFoundationRelease\V2.0.0

Don’t miss to read “WebFoundation Release notes.docx” and “WebFoundation installation manual.docx” in the zip which explains how to upgrade your WF project.

Send suggestions and fixes!!!! Read your homework: http://enovaleaks.se/

WEBFOUNDATION 2.0 KURSWEBFOUNDATION, WIPCORE


Recommended