Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / Visual Basic

WSSE Authentication for WebRequest/Response

Rate me:
Please Sign up or sign in to vote.
4.60/5 (4 votes)
25 Jun 20074 min read 79.7K   2.8K   20  
An implementation of WSSE authentication method for AtomAPI using IAuthenticationModule interface
'------------------------------------------------------------------------------
' <auto-generated>
'     このコードはツールによって生成されました。
'     ランタイム バージョン:2.0.50727.312
'
'     このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
'     コードが再生成されるときに損失したりします。
' </auto-generated>
'------------------------------------------------------------------------------

Option Strict On
Option Explicit On


Namespace My
    
    'メモ: このファイルは自動生成されました。直接変更しないでください。変更したり、
    ' ビルド エラーが発生した場合は、プロジェクト デザイナ へ移動し (プロジェクト
    ' プロパティに移動するか、またはソリューション エクスプローラのマイ プロジェクト
    ' ノード上でダブルクリック)、アプリケーション タブ上で変更を行います。
    '
    Partial Friend Class MyApplication
        
        <Global.System.Diagnostics.DebuggerStepThroughAttribute()>  _
        Public Sub New()
            MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
            Me.IsSingleInstance = false
            Me.EnableVisualStyles = true
            Me.SaveMySettingsOnExit = true
            Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
        End Sub
        
        <Global.System.Diagnostics.DebuggerStepThroughAttribute()>  _
        Protected Overrides Sub OnCreateMainForm()
            Me.MainForm = Global.WSSEClientTest.Form1
        End Sub
    End Class
End Namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Japan Japan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions