MID314. demo Endpoint Service WSDL C C B B A C C B B A A Address Where? C C Contract What? Contract What? B B Binding How? Binding How? Client.

Slides:



Advertisements
Similar presentations
WSV405. IPv6 Ready Logo Program
Advertisements

DEV302. Best Practice Visual Studio Ultimate Web Performance Tests Load Tests Load Test Rigs Visual Studio Premium Profiling Tools.
SIM201. Announcing… copyright chappellseminars.com some hosts comply; RST = closed no = response open some hosts comply; RST = closed no = response.
WSV304 Manual Deployment High cost Fully Automated Low cost.
OSP303. demo Status Bar Notification.
SIM Separate solution install paths can be taken, stand alone and SCOM integrated. Both require core AVIcode web apps and DB’s.
DBI331. Cube Measure Group Measure Partition Cube Dimension Dimension Attribute Relationship Hierarchy Level Cube Attribute Cube Hierarchy Measure.
DBI209 demo Deploy & Future Proof Monitor & Manage Share & Collaborate Mash-up & Analyze Connect & ProvisionFind & Access.
DBI330. Use the SSRS Execution Log, capture SSAS trace Look for peak times Gather workload usage How many more users? Double estimate just in.
Fun with Scorecards and Indicators Wrap Up & Questions.
DEV309.
SIM346. General information about the software application.
DEV207. SSDT Database Services Database Services Analysis Services Reporting Services Integration Services.
DEV314. Entity Data Model demo Entity Data Model.
OSP202. Business Need Business Creates Application DeploySupport The SharePoint Application Lifecycle Business Self-Service.
DEV202 Before I get started... …is too expensive. …is too complex. …requires a server.
WCL309. Demo.
SIM329. Certificate Enrollment Without CEP/CES Certificate Authority Active Directory Client Workstations LDAP RPC/DCOM.
EXL326. demo Address Book Policy A Address Book Policy Assignment Saved Filter = LDAP=AL1+AL2+AL5+AL6+RM AL 1+ GAL1 AL1 AL2.
EXL319. *Baseline for 80,000 user pool with 8 FEs and 1 BE Lync Server 2010 Capacity Calculator released.
WPH203 Content Choice Discoverability demo.
SIM314 Introduction Transport Layer Summary Network Layer.
demo.
Account Service Contacts Service Contacts Service Client.
EXL318. “The voice diagnostics feature is very popular. In general, having that kind of feedback shows that quality is better overall. I think feedback.
Web Server Database Web Server Web Server Auction Web App Auction Service Items and Bids Items and Bids Cache Session State Checkout Service Payment.
DBI329. video.
DBI326. PhraseGoal “Data Mining”Inform actionable decisions “Machine Learning”Determine best performing algorithm.
WCL308. (While you’re sitting there, sign up for the GPanswers.com Tip of the Week … (Scan a tag.. Fill out the little form…) and enter to win a copy.
DPR302.
2.
DEV331. class Tweet : TimelineItem {…} class DirectMessage : TimelineItem {…} class Notification : TimelineItem {…} … TimelineItem[] items = new.
WCL304.
DPR306. Process and tools Individuals and interactions over Following a plan Responding to change over Source: Comprehensive.
DPR305. Controller Model View Client Business Objects Server Business Objects Data.
MID305. AppFabric / Host WF Runtime Extensions Tracking Persistence … … Tooling VS Designer VS Debugger Rehosted Designer Workflow Activity Library.
OSP402 Required Slide Track PMs will supply the content for this slide, which will be inserted during the final scrub.
DEV211. The simplest way to create business applications for the desktop and the cloud.
DBI325. Monitoring Analytics Support will extend to Analysis Services in the Denali release.
DEV340. Chief Architect IDesign Inc. ( Microsoft Regional Director ( Microsoft MVP Silverlight Publishing Developers.
DPR301 demo Executable Requirements.
WSV Not much to see in terms of DEMO. So, this session focuses on architecture and best fit for your environment.
OSP318. ProfileSynchronizationServiceInstanceProfileSynchronizationServiceInstance Profile Service Instance Instance.
WPH303 announcement demo.
VIR326. Dell Compellent always puts the right data in the right place at the right time at the right cost. That’s Fluid Data.
DEV351.
DEV332. Required Slide Speakers, please list the Breakout Sessions, Interactive Discussions, Labs, Demo Stations and Certification Exam that.
VIR306. VM Memory Host Computer Balloon Disk VM Host Computer Memory Balloon Disk Inflate Swap Out Ballloon Deflate VM Host Computer Memory.
WSV207. Cluster Public Cloud Servers On-Premises Servers Desktop Workstations Application Logic.
DEV321. demo Rule: Any slide about UX must be charcoal gray or black.
#TEDEV342 A A B B I currently deploy via FTP directly to my host. My deployment is manual because I need to set permissions on the target server.
Learn more: Download SCM: Join the TechNet Wiki community:
DEV349 Minifig by Dunechaser: Support the
DEV303. Tiny Functions Why Does It Need a Name?
OSP-302. DescriptionUri All lists on a site.../_vti_bin/ListData.svc All Items in a named list.../_vti_bin/ListData.svc/MyList 2nd Item in the list.../_vti_bin/ListData.svc/MyList(2)
DEV348. demo Valid HTML5 Syntax demo.
SIM323. Active Directory ? ? ? ? ? ? ? ? ?
WCL402. “While it’s true that Windows ___ sports some impressive technical features, I believe that Windows owes most of its success to the third-
WSV303. I live here... DC DNS DHCP WDS Clients DC DNS WDS/DHCP DC/DNS.
DEV354. Describe your data Create screens for common tasks Author business logic Customize screen layouts Define custom queries Create custom Silverlight.
SIM End users Web servers Application servers Data servers ? How do I know I have a problem? How do I isolate the problem? How do I diagnose.
MID Deploy Workflow Service definition (.xamlx) T Contracts inferred from Receive / Reply activities Endpoints opened A Persistence.
WCL301. demo Basic Custom XML-file.
About Me AUTHENTICATION Identity Provider.

DEV355 Jack Swigert demo my wife demo.
DBI407. Oracle 10g CDF SSAS Cube Builder NAS SSAS Query Servers HW NLB Partition 1 Partition 2 Partition N Partition 1 Partition.
DEV353. Required Slide Speakers, please list the Breakout Sessions, Interactive Discussions, Labs, Demo Stations and Certification.
COS307. demo Required Slide Track PMs will supply the content for this slide, which will be inserted during the final scrub. Website:
利用IIS部署與維護 SOA應用程式的技巧
Presentation transcript:

MID314

demo

Endpoint Service WSDL C C B B A C C B B A A Address Where? C C Contract What? Contract What? B B Binding How? Binding How? Client A B B C C Be Behavior Local Only Details

service.svc web.config service.cs [ServiceContract] public interface ICalculator { … } public class CalculatorService : ICalculator { … } [ServiceContract] public interface ICalculator { … } public class CalculatorService : ICalculator { … } <endpoint address="" binding="basicHttpBinding" contract="Microsoft.ServiceModel.Samples.ICalculator" /> <endpoint address="" binding="basicHttpBinding" contract="Microsoft.ServiceModel.Samples.ICalculator" />

service.svc service.cs [ServiceContract] public interface ICalculator { … } public class CalculatorService : ICalculator { … } [ServiceContract] public interface ICalculator { … } public class CalculatorService : ICalculator { … } web.config is not needed!

A: B:BasicHttpBinding, C:IService1 A:net.tcp://localhost/Services/IService1 B:NetTcpBinding, C:IService1 A: B:BasicHttpBinding C:IService2 A:net.tcp//localhost/Services/IService2 B:NetTcpBinding C:IService2 A: B:BasicHttpBinding, C:IService1 A:net.tcp://localhost/Services/IService1 B:NetTcpBinding, C:IService1 A: B:BasicHttpBinding C:IService2 A:net.tcp//localhost/Services/IService2 B:NetTcpBinding C:IService2 ? ? Contracts(Base Addresses Protocol Mappings) EndpointsX → = public class Service1 : IService1, IService2 { …… } public class Service1 : IService1, IService2 { …… } net.tcp://localhost/Services net.tcp://localhost/Services http → BasicHttpBinding net.tcp → NetTcpBinding net.pipe → NetNamedPipeBinding net.msmq → NetMsmqBinding http → BasicHttpBinding net.tcp → NetTcpBinding net.pipe → NetNamedPipeBinding net.msmq → NetMsmqBinding

…… ……

Throttlings.NET 3.5.NET 4 MaxConcurrentSessions10100 * ProcessorCount MaxConcurrentCalls1616 * ProcessorCount MaxConcurrentInstances26MaxConcurrentSessions + MaxConcurrentCalls

demo

AppFabric Runtime Services and Components Management APIs (PowerShell command-lets) IIS Manager IIS/WAS WF and WCF IIS Manager Modules Visual Studio System Center Server Manager

demo

.svclog

demo

PropertyOnOld ValueNew Value MaxArrayLengthReaderQuotas (buffered+text only)16384 elementsInt32.MaxValue MaxBytesPerReadReaderQuotas (buffered+text only)4096 bytesInt32.MaxValue MaxDepthReaderQuotas (buffered+text only)32 nodes deep128 MaxNameTableCharCountReaderQuotas (buffered+text only)16384 charsInt32.MaxValue MaxStringContentLengthReaderQuotas (buffered+text only)8192 charsInt32.MaxValue ChannelInitializationTimeoutNetTcpBinding5 sec30 secs ListenBacklogNetTcpBinding SMSvcHost.exe.config 1012 * # of procs MaxPendingAcceptsTcpTransportBindingelement/ NamedPipeTransportBindingElement, SMSvcHost.exe.config 1, 22 * # of procs, 4 * # of procs MaxPendingConnectionsTcpTransportBindingelement/ NamedPipeTransportBindingElement 1012 * # of procs ReceiveTimeoutSMSvcHost.exe.config10 seconds30 seconds

Sessions On-Demand & CommunityMicrosoft Certification & Training Resources Resources for IT ProfessionalsResources for Developers Connect. Share. Discuss.

Scan the Tag to evaluate this session now on myTechEd Mobile