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
- ScriptingJsonSerializationSection.cs
- RoleGroup.cs
- TranslateTransform.cs
- FacetValues.cs
- CallContext.cs
- WebPartConnectionsCloseVerb.cs
- WindowsToolbar.cs
- WebMessageBodyStyleHelper.cs
- HttpMethodConstraint.cs
- HashCodeCombiner.cs
- QilNode.cs
- NotifyCollectionChangedEventArgs.cs
- UnaryOperationBinder.cs
- AttributeCollection.cs
- SelectionRangeConverter.cs
- BasicKeyConstraint.cs
- UserNameServiceElement.cs
- MultiView.cs
- TraceContext.cs
- Function.cs
- BasicHttpBindingCollectionElement.cs
- Light.cs
- XmlValidatingReader.cs
- NumberSubstitution.cs
- CurrentTimeZone.cs
- XmlSchemaValidator.cs
- ToolStripItemImageRenderEventArgs.cs
- XamlBrushSerializer.cs
- EntityStoreSchemaFilterEntry.cs
- StorageEndPropertyMapping.cs
- CompositeActivityDesigner.cs
- ExpressionEvaluator.cs
- Menu.cs
- PointConverter.cs
- MinimizableAttributeTypeConverter.cs
- IdentityManager.cs
- XmlSchemaImporter.cs
- QueryFunctions.cs
- Application.cs
- ObfuscateAssemblyAttribute.cs
- PeerResolverSettings.cs
- NodeFunctions.cs
- SamlSubjectStatement.cs
- BitmapEffectGroup.cs
- XmlValidatingReaderImpl.cs
- Binding.cs
- WindowsFormsLinkLabel.cs
- ScriptBehaviorDescriptor.cs
- CqlParserHelpers.cs
- TraceHandler.cs
- ReadOnlyMetadataCollection.cs
- RefreshPropertiesAttribute.cs
- CapabilitiesSection.cs
- OdbcEnvironment.cs
- smtppermission.cs
- ObjectDataSourceMethodEventArgs.cs
- PrePostDescendentsWalker.cs
- CompoundFileStreamReference.cs
- ColumnTypeConverter.cs
- ClickablePoint.cs
- PaintValueEventArgs.cs
- SqlHelper.cs
- SpellerInterop.cs
- ImageCodecInfo.cs
- MimeMultiPart.cs
- Models.cs
- SurrogateSelector.cs
- ValueTable.cs
- EntityException.cs
- QueryMath.cs
- DataObjectPastingEventArgs.cs
- SiteMapPath.cs
- CustomGrammar.cs
- Token.cs
- FileCodeGroup.cs
- FilterableData.cs
- QueryStringHandler.cs
- CompilerResults.cs
- TransformedBitmap.cs
- _ChunkParse.cs
- CssClassPropertyAttribute.cs
- CodePageUtils.cs
- DataBoundControlAdapter.cs
- SelectionProcessor.cs
- PathSegment.cs
- BatchStream.cs
- ValueChangedEventManager.cs
- DbProviderFactoriesConfigurationHandler.cs
- XomlSerializationHelpers.cs
- MouseWheelEventArgs.cs
- DayRenderEvent.cs
- RowsCopiedEventArgs.cs
- ResetableIterator.cs
- AssemblyNameProxy.cs
- SqlServices.cs
- WhitespaceRule.cs
- AssemblyNameProxy.cs
- TrackingMemoryStreamFactory.cs
- _StreamFramer.cs
- GenericWebPart.cs