Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / ExportFileRequest.cs / 1 / ExportFileRequest.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Collections; using System.IO; using System.Runtime.InteropServices; using System.Collections.Generic; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; using System.Security.Principal; using System.Xml; using System.Security.Cryptography.Xml; using System.Security; using System.Security.AccessControl; using System.Security.Cryptography; using System.Text; using System.Xml.Schema; // // Export cards to a file protected by a passphrase // class ExportFileRequest : UIAgentRequest { string m_filename; string m_passphrase; string[ ] m_cardIds; public ExportFileRequest( IntPtr rpcHandle, Stream inArgs, Stream outArgs, ClientUIRequest parent ) : base( rpcHandle, inArgs, outArgs, parent ) { } // // Summary // Read the arguments // protected override void OnMarshalInArgs() { BinaryReader reader = new InfoCardBinaryReader( InArgs, System.Text.Encoding.Unicode ); m_filename = Utility.DeserializeString( reader ); m_passphrase = Utility.DeserializeString( reader ); UInt32 count = reader.ReadUInt32(); m_cardIds = new string[ count ]; for( UInt32 i = 0; i < count; i++ ) { m_cardIds[ i ] = Utility.DeserializeString( reader ); } } // // Summary // Selectively export the cards to the file and protect is with a passphrase // protected override void OnProcess() { IDT.Assert( !String.IsNullOrEmpty( m_filename ), "No file name was specified" ); IDT.Assert( !String.IsNullOrEmpty( m_passphrase ), " No passphrase specified for the file" ); StoreConnection connection = StoreConnection.GetConnection(); try { // // Start exporting the card to an xml format // RoamingStoreFile storeFile = new RoamingStoreFile(); try { for( int i = 0; i < m_cardIds.Length; i++ ) { IDT.TraceDebug( "Exporting card {0}", m_cardIds[ i ] ); InfoCard card = new InfoCard( new Uri( m_cardIds[ i ] ) ); card.Get( connection ); card.GetMasterKey( connection ); storeFile.Cards.Add( card ); } ; using( FileStream exportfile = new FileStream( m_filename, FileMode.Create ) ) { XmlWriterSettings settings = new XmlWriterSettings(); settings.CloseOutput = false; using( XmlWriter writer = XmlWriter.Create( exportfile, settings ) ) { storeFile.WriteTo( m_passphrase, writer ); writer.Flush(); } exportfile.Flush(); #if DEBUG exportfile.Seek( 0, SeekOrigin.Begin ); using( XmlReader reader = InfoCardSchemas.CreateReader( exportfile ) ) { while( reader.Read() ); } #endif } } finally { foreach( InfoCard card in storeFile.Cards ) { card.ClearSensitiveData(); } } AuditLog.AuditStoreExport(); } catch( XmlSchemaValidationException e ) { throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.SchemaValidationFailed ), e ) ); } catch( XmlException e ) { throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.InvalidImportFile ), e ) ); } catch( UnauthorizedAccessException e ) { throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.ImportInaccesibleFile ), e ) ); } catch( IOException e ) { throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.InvalidImportFile ), e ) ); } catch( ArgumentException ae ) { // // FileInfo.Open can throw this exception for reserved file names // throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.ImportInaccesibleFile),ae ) ); } catch ( SerializationIncompleteException sie ) { // // This is an export, so we should expect to recover from all serialization failures // throw IDT.ThrowHelperError( new ExportException( SR.GetString( SR.FailedToSerializeObject, sie.ObjectType ), sie ) ); } finally { connection.Close(); } } protected override void OnMarshalOutArgs() { } } } // 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
- ValidationError.cs
- AlternateViewCollection.cs
- FlowDocumentReaderAutomationPeer.cs
- SingletonConnectionReader.cs
- SqlWriter.cs
- SchemaNamespaceManager.cs
- DependencyPropertyChangedEventArgs.cs
- InboundActivityHelper.cs
- GeometryGroup.cs
- ContextStaticAttribute.cs
- RelationshipWrapper.cs
- TextModifier.cs
- CompModSwitches.cs
- ValidationErrorEventArgs.cs
- SqlException.cs
- ProgressiveCrcCalculatingStream.cs
- StringArrayConverter.cs
- PropertyFilterAttribute.cs
- CommandEventArgs.cs
- IOException.cs
- ZoneMembershipCondition.cs
- UdpTransportSettings.cs
- TypeSemantics.cs
- CacheEntry.cs
- VersionPair.cs
- ByteAnimation.cs
- HelpProvider.cs
- UIElementIsland.cs
- ResourceProviderFactory.cs
- Separator.cs
- SourceChangedEventArgs.cs
- EntityCollection.cs
- FrugalList.cs
- CodeGenerator.cs
- AssemblyNameProxy.cs
- NetCodeGroup.cs
- basenumberconverter.cs
- OdbcErrorCollection.cs
- GridViewRowCollection.cs
- MergeFailedEvent.cs
- TypeName.cs
- ActivitiesCollection.cs
- MarkupExtensionParser.cs
- DesignerSelectionListAdapter.cs
- CodeSubDirectoriesCollection.cs
- QilStrConcat.cs
- AliasedSlot.cs
- BaseValidator.cs
- BookmarkManager.cs
- IisTraceWebEventProvider.cs
- XmlComplianceUtil.cs
- MsmqChannelListenerBase.cs
- KeyGestureConverter.cs
- DataControlImageButton.cs
- FutureFactory.cs
- PersonalizationState.cs
- SqlDataSource.cs
- ParameterElementCollection.cs
- TraceRecords.cs
- TripleDESCryptoServiceProvider.cs
- ManageRequest.cs
- VirtualizingStackPanel.cs
- ToolbarAUtomationPeer.cs
- FormsAuthenticationConfiguration.cs
- FreezableOperations.cs
- GroupDescription.cs
- GPPOINTF.cs
- DirectionalAction.cs
- BuildProviderAppliesToAttribute.cs
- EndpointNotFoundException.cs
- FormViewDeleteEventArgs.cs
- ObjectStateEntry.cs
- ExternalCalls.cs
- AlphabetConverter.cs
- ParameterCollection.cs
- ObjectDataSourceDisposingEventArgs.cs
- BitmapCodecInfoInternal.cs
- DockProviderWrapper.cs
- BaseServiceProvider.cs
- hresults.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- FileDialog.cs
- UrlPropertyAttribute.cs
- DbConnectionPoolOptions.cs
- CodeExporter.cs
- DataObjectCopyingEventArgs.cs
- WmlTextBoxAdapter.cs
- SoapFault.cs
- ObjectResult.cs
- SqlInternalConnectionSmi.cs
- SqlInternalConnection.cs
- StackBuilderSink.cs
- CreateUserWizardStep.cs
- SqlEnums.cs
- EventDescriptor.cs
- EventDescriptor.cs
- IISMapPath.cs
- ObjectManager.cs
- recordstatefactory.cs
- CustomLineCap.cs