微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

.net webservice

Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols

Imports kemet.Never.DA
Imports kemet.Never.BL
Imports System.Data.sqlClient
Imports System.Data

 

' To allow this Web Service to be called from script,using ASP.NET AJAX,uncomment the following line.
' <System.Web.Script.Services.ScriptService()> _
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class Service
    Inherits System.Web.Services.WebService

    Private _DBTrans As kemet.Never.DA.DBTransaction
    Private _BL As kemet.Never.BL.Query
    Private _connectionString As String = ""

 


    <WebMethod()> _
    Public Function HelloWorld() As String
        Return "Hello World"
    End Function

    'Public Sub New(ByVal connectionString As String)
    '    _connectionString = connectionString
    'End Sub

    <WebMethod()> _
    Public Function Binding(ByVal r As re) As DataSet

        _connectionString = r.connec
        ' "Data Source=LDBYYQ3R1\MysqLTEST;  Initial Catalog=MES_TRANS_MCD; User ID=sa; PassWord=admin; Persist Security Info=False;"

        _DBTrans = New kemet.Never.DA.DBTransaction("",_connectionString)
        _BL = New kemet.Never.BL.Query(_DBTrans)
        Dim resultDS As New DataSet


        Try

            resultDS = _BL.GetJobInfo2("FPI162236TMW3N")
            Return resultDS
        Catch ex As Exception
            Throw ex

        End Try

    End Function
    'Public Sub New()
    '    MyBase.New()


    '    InitialLizeComponet()

    'End Sub
    'Private components As System.ComponentModel.IContainer
    '<System.Diagnostics.DebuggerStepThrough()> Private Sub InitialLizeComponet()
    '    components = New System.ComponentModel.Container()

    'End Sub
    'Protected Overrides Sub dispose(ByVal disposing As Boolean)
    '    If disposing Then
    '        If Not (components Is nothing) Then
    '            components.dispose()

    '        End If
    '    End If
    '    MyBase.dispose(disposing)
    'End Sub

End Class

Public Class re
    Public pn As String
    Public job As String
    Public connec As String

End Class

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐