A Web service class that utilizes a SOAP header (VB) : WebService « Development « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Development » WebService 
9.47.8.A Web service class that utilizes a SOAP header (VB)
<WebService(Namespace:="http://www.wrox.com/helloworld")> _
<WebServiceBinding(ConformanceClaims:=WsiClaims.BasicProfile1_1, _
  EmitConformanceClaims:=True)> _  
Public Class HelloSoapHeader
    Inherits System.Web.Services.WebService
    
    Public myHeader As HelloHeader
    
    <WebMethod(), SoapHeader("myHeader")> _
    Public Function HelloWorld() As String
        If (myHeader Is NothingThen
           Return "Hello World"
        Else
           Return "Hello " & myHeader.Username & ". " & _
              "<br>Your password is: " & myHeader.Password
        End If
    End Function

End Class
9.47.WebService
9.47.1.Contents of the Service.asmx file
9.47.2.An XML Web service that exposes the Default table from Northwind (C#)
9.47.3.An XML Web service that exposes the Default table from Northwind (VB)
9.47.4.WebMethod overloading in .NET
9.47.5.Turning off conformance using the web.config file
9.47.6.Utilizing the CacheDuration property
9.47.7.A Web service class that utilizes a SOAP header (C#)
9.47.8.A Web service class that utilizes a SOAP header (VB)
9.47.9.WebServiceBinding
9.47.10.WebMethod
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.