Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / Tools / xws_reg / System / ServiceModel / Install / HttpNamespaceReservationInstallComponent.cs / 1 / HttpNamespaceReservationInstallComponent.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Install { using System.ComponentModel; using System.Runtime.InteropServices; class HttpNamespaceReservationInstallComponent : ServiceModelInstallComponent { internal override string DisplayName { get {return SR.GetString(SR.HttpNamespaceReservationsName); } } protected override string InstallActionMessage { get {return SR.GetString(SR.HttpNamespaceReservationsInstall); } } internal override string[] InstalledVersions { get { string[] result; if (this.IsInstalled) { result = new string[] {ServiceModelInstallStrings.ReservedNamespace}; } else { result = new string[] {}; } return result; } } internal override bool IsInstalled { get { bool result; try { int retVal = NativeMethods.HttpInitialize(NativeMethods.HTTPAPI_VERSION, NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); if (retVal != ErrorCodes.NoError) { #pragma warning suppress 56503 // [....]; not a publicly accessible API throw new Win32Exception(retVal); } HTTP_SERVICE_CONFIG_URLACL_QUERY query = new HTTP_SERVICE_CONFIG_URLACL_QUERY(); query.QueryDesc = HTTP_SERVICE_CONFIG_QUERY_TYPE.HttpServiceConfigQueryExact; query.KeyDesc = new HTTP_SERVICE_CONFIG_URLACL_KEY(ServiceModelInstallStrings.ReservedNamespace); int returnLength; retVal = NativeMethods.HttpQueryServiceConfiguration(IntPtr.Zero, HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo, ref query, Marshal.SizeOf(query), IntPtr.Zero, 0, out returnLength, IntPtr.Zero); switch (retVal) { case ErrorCodes.NoError: case ErrorCodes.ErrorInsufficientBuffer: result = true; break; case ErrorCodes.ErrorFileNotFound: result = false; break; default: #pragma warning suppress 56503 // [....]; not a publicly accessible API throw new Win32Exception(retVal); } } finally { #pragma warning disable 56523 //[....]; Win32 errors tracked through method return value #pragma warning disable 56031 //[....]; No need to check return value since shutting down NativeMethods.HttpTerminate(NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); #pragma restore } return result; } } protected override string ReinstallActionMessage { get {return SR.GetString(SR.HttpNamespaceReservationsReinstall); } } protected override string UninstallActionMessage { get {return SR.GetString(SR.HttpNamespaceReservationsUninstall); } } static void FreeURL(string networkURL) { int retVal = ErrorCodes.NoError; try { #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpInitialize(NativeMethods.HTTPAPI_VERSION, NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); if (ErrorCodes.NoError == retVal) { HTTP_SERVICE_CONFIG_URLACL_KEY urlAclKey = new HTTP_SERVICE_CONFIG_URLACL_KEY(networkURL); HTTP_SERVICE_CONFIG_URLACL_SET configInformation = new HTTP_SERVICE_CONFIG_URLACL_SET(); configInformation.KeyDesc = urlAclKey; int configInformationSize = Marshal.SizeOf(configInformation); #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpDeleteServiceConfiguration(IntPtr.Zero, HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo, ref configInformation, configInformationSize, IntPtr.Zero); } } finally { #pragma warning disable 56523 //[....]; Win32 errors tracked through method return value #pragma warning disable 56031 //[....]; No need to check return value since shutting down NativeMethods.HttpTerminate(NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); #pragma restore } if (ErrorCodes.NoError != retVal) { throw new Win32Exception(retVal); } } internal override void Install(OutputLevel outputLevel) { if (this.IsInstalled) { EventLogger.LogWarning(SR.GetString(SR.HttpNamespaceReservationsAlreadyExist), (OutputLevel.Verbose == outputLevel)); } else { bool throwing = true; try { ReserveURL(ServiceModelInstallStrings.ReservedNamespace, ServiceModelInstallStrings.ReservedNamespaceAcl); throwing = false; } finally { if (throwing) { FreeURL(ServiceModelInstallStrings.ReservedNamespace); } } } } static void ReserveURL(string networkURL, string securityDescriptor) { int retVal = ErrorCodes.NoError; try { #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpInitialize(NativeMethods.HTTPAPI_VERSION, NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); if (ErrorCodes.NoError == retVal) { HTTP_SERVICE_CONFIG_URLACL_KEY keyDesc = new HTTP_SERVICE_CONFIG_URLACL_KEY(networkURL); HTTP_SERVICE_CONFIG_URLACL_PARAM paramDesc = new HTTP_SERVICE_CONFIG_URLACL_PARAM(securityDescriptor); HTTP_SERVICE_CONFIG_URLACL_SET configInformation = new HTTP_SERVICE_CONFIG_URLACL_SET(); configInformation.KeyDesc = keyDesc; configInformation.ParamDesc = paramDesc; int configInformationLength = Marshal.SizeOf(configInformation); #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpSetServiceConfiguration(IntPtr.Zero, HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo, ref configInformation, configInformationLength, IntPtr.Zero); if (ErrorCodes.ErrorAlreadyExists == retVal) { #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpDeleteServiceConfiguration(IntPtr.Zero, HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo, ref configInformation, configInformationLength, IntPtr.Zero); if (ErrorCodes.NoError == retVal) { #pragma warning suppress 56523 //[....]; Win32 errors tracked through method return value retVal = NativeMethods.HttpSetServiceConfiguration(IntPtr.Zero, HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo, ref configInformation, configInformationLength, IntPtr.Zero); } } } } finally { #pragma warning disable 56523 //[....]; Win32 errors tracked through method return value #pragma warning disable 56031 //[....]; No need to check return value since shutting down NativeMethods.HttpTerminate(NativeMethods.HTTP_INITIALIZE_CONFIG, IntPtr.Zero); #pragma restore } if (ErrorCodes.NoError != retVal) { throw new Win32Exception(retVal); } } internal override void Uninstall(OutputLevel outputLevel) { if (!this.IsInstalled) { EventLogger.LogWarning(SR.GetString(SR.HttpNamespaceReservationsNotInstalled), (OutputLevel.Verbose == outputLevel)); } else { try { FreeURL(ServiceModelInstallStrings.ReservedNamespace); } catch (Win32Exception exception) { EventLogger.LogWarning(SR.GetString(SR.FreeHttpNamespaceFailed, exception), (OutputLevel.Quiet < outputLevel)); } } } internal override InstallationState VerifyInstall() { return this.IsInstalled ? InstallationState.InstalledDefaults : InstallationState.NotInstalled; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GridItem.cs
- QilChoice.cs
- ColorTranslator.cs
- TextPattern.cs
- DrawingContext.cs
- ListBox.cs
- Vector3DAnimationBase.cs
- WebPartRestoreVerb.cs
- Repeater.cs
- HotSpot.cs
- IMembershipProvider.cs
- Relationship.cs
- ProcessHostConfigUtils.cs
- SqlLiftIndependentRowExpressions.cs
- EqualityComparer.cs
- SettingsContext.cs
- BezierSegment.cs
- SqlProcedureAttribute.cs
- ListCollectionView.cs
- SingleSelectRootGridEntry.cs
- SqlDataAdapter.cs
- TypeContext.cs
- MemberHolder.cs
- CaseInsensitiveOrdinalStringComparer.cs
- EntitySqlQueryCacheKey.cs
- ListViewTableRow.cs
- XPathNodeList.cs
- OverflowException.cs
- HttpPostedFile.cs
- PerformanceCounterPermission.cs
- Matrix.cs
- RangeExpression.cs
- formatstringdialog.cs
- SqlCommand.cs
- ObjectTypeMapping.cs
- _ConnectionGroup.cs
- RuleSettings.cs
- HttpPostedFileBase.cs
- Ticks.cs
- WebPartConnectionsCancelVerb.cs
- _RequestLifetimeSetter.cs
- FileNameEditor.cs
- SettingsPropertyNotFoundException.cs
- ICspAsymmetricAlgorithm.cs
- StateChangeEvent.cs
- XmlEncodedRawTextWriter.cs
- CFGGrammar.cs
- FileDetails.cs
- StringValidator.cs
- DCSafeHandle.cs
- DBCommandBuilder.cs
- EntityProviderFactory.cs
- CharEnumerator.cs
- TextTrailingCharacterEllipsis.cs
- ElementsClipboardData.cs
- ApplicationManager.cs
- DoubleLinkList.cs
- DNS.cs
- RootProfilePropertySettingsCollection.cs
- LinearGradientBrush.cs
- GridViewRowCollection.cs
- PixelFormat.cs
- ConfigurationManagerInternal.cs
- GenericIdentity.cs
- NewArrayExpression.cs
- DataGridViewLayoutData.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- ButtonField.cs
- URI.cs
- DataGridViewAccessibleObject.cs
- BindingExpressionBase.cs
- PageRouteHandler.cs
- SerializationObjectManager.cs
- RawMouseInputReport.cs
- DataGridViewColumn.cs
- AnimatedTypeHelpers.cs
- JournalEntryListConverter.cs
- SafeBitVector32.cs
- MultiBindingExpression.cs
- PriorityQueue.cs
- ScopelessEnumAttribute.cs
- LocatorGroup.cs
- BaseTemplateCodeDomTreeGenerator.cs
- InvalidProgramException.cs
- ServiceSecurityAuditBehavior.cs
- ServiceElement.cs
- QueryOptionExpression.cs
- FastEncoderWindow.cs
- SerialReceived.cs
- PublishLicense.cs
- SchemaManager.cs
- AccessDataSourceView.cs
- TemplateNameScope.cs
- TypeInfo.cs
- Number.cs
- EventBuilder.cs
- AnimationStorage.cs
- XmlCountingReader.cs
- ThemeInfoAttribute.cs
- _NetRes.cs