代码搜索:WebService
找到约 1,279 项符合「WebService」的源代码
代码结果 1,279
www.eeworm.com/read/189857/5191493
java hello.java
package endpoint;
import javax.jws.WebService;
@WebService
public class Hello
{
public String getHello(String name)
{
return "Hello " + name + "!";
}
}
www.eeworm.com/read/481000/1303206
asmx applicationwebservice.asmx
using System;
using System.Web.Services;
public class UseApplication : WebService
{
[WebMethod]
public String GetAppTimes() {
www.eeworm.com/read/201516/5058547
asmx secure.asmx
Imports System.Web.Services
Imports System
Public Class SecureSample
Inherits WebService
_
Public Function WhoAreYou()
www.eeworm.com/read/201514/5058787
asmx sessionstate.asmx
using System.Web.Services;
public class SessionStateExample : WebService
{
[WebMethod(EnableSession=true)]
public void SetSessi
www.eeworm.com/read/199484/5077109
asmx secure.asmx
Imports System.Web.Services
Imports System
Public Class SecureSample
Inherits WebService
_
Public Function WhoAreYou()
www.eeworm.com/read/201516/5058488
asmx secure.asmx
Imports System.Web.Services
Imports System.Web.Security
Public Class SecureSample
Inherits WebService
_
Public Function WhoAreYou()
www.eeworm.com/read/201514/5058812
asmx secure.asmx
using System.Web.Services;
using System;
public class SecureSample : WebService
{
[WebMethod]
public string WhoAreYou()
{
ret