Win32 API 日本語リファレンス
ホームNetworking.WindowsWebServices › WsCreateServiceProxy

WsCreateServiceProxy

関数
指定設定でサービスプロキシを作成する。
DLLwebservices.dll呼出規約winapi対応OSWindows 7 以降

シグネチャ

// webservices.dll
#include <windows.h>

HRESULT WsCreateServiceProxy(
    WS_CHANNEL_TYPE channelType,
    WS_CHANNEL_BINDING channelBinding,
    const WS_SECURITY_DESCRIPTION* securityDescription,   // optional
    const WS_PROXY_PROPERTY* properties,   // optional
    DWORD propertyCount,
    const WS_CHANNEL_PROPERTY* channelProperties,   // optional
    DWORD channelPropertyCount,
    WS_SERVICE_PROXY** serviceProxy,
    WS_ERROR* error   // optional
);

パラメーター

名前方向
channelTypeWS_CHANNEL_TYPEin
channelBindingWS_CHANNEL_BINDINGin
securityDescriptionWS_SECURITY_DESCRIPTION*inoptional
propertiesWS_PROXY_PROPERTY*inoptional
propertyCountDWORDin
channelPropertiesWS_CHANNEL_PROPERTY*inoptional
channelPropertyCountDWORDin
serviceProxyWS_SERVICE_PROXY**out
errorWS_ERROR*inoptional

戻り値の型: HRESULT

各言語での呼び出し定義

// webservices.dll
#include <windows.h>

HRESULT WsCreateServiceProxy(
    WS_CHANNEL_TYPE channelType,
    WS_CHANNEL_BINDING channelBinding,
    const WS_SECURITY_DESCRIPTION* securityDescription,   // optional
    const WS_PROXY_PROPERTY* properties,   // optional
    DWORD propertyCount,
    const WS_CHANNEL_PROPERTY* channelProperties,   // optional
    DWORD channelPropertyCount,
    WS_SERVICE_PROXY** serviceProxy,
    WS_ERROR* error   // optional
);
[DllImport("webservices.dll", ExactSpelling = true)]
static extern int WsCreateServiceProxy(
    int channelType,   // WS_CHANNEL_TYPE
    int channelBinding,   // WS_CHANNEL_BINDING
    IntPtr securityDescription,   // WS_SECURITY_DESCRIPTION* optional
    IntPtr properties,   // WS_PROXY_PROPERTY* optional
    uint propertyCount,   // DWORD
    IntPtr channelProperties,   // WS_CHANNEL_PROPERTY* optional
    uint channelPropertyCount,   // DWORD
    IntPtr serviceProxy,   // WS_SERVICE_PROXY** out
    IntPtr error   // WS_ERROR* optional
);
<DllImport("webservices.dll", ExactSpelling:=True)>
Public Shared Function WsCreateServiceProxy(
    channelType As Integer,   ' WS_CHANNEL_TYPE
    channelBinding As Integer,   ' WS_CHANNEL_BINDING
    securityDescription As IntPtr,   ' WS_SECURITY_DESCRIPTION* optional
    properties As IntPtr,   ' WS_PROXY_PROPERTY* optional
    propertyCount As UInteger,   ' DWORD
    channelProperties As IntPtr,   ' WS_CHANNEL_PROPERTY* optional
    channelPropertyCount As UInteger,   ' DWORD
    serviceProxy As IntPtr,   ' WS_SERVICE_PROXY** out
    [error] As IntPtr   ' WS_ERROR* optional
) As Integer
End Function
' channelType : WS_CHANNEL_TYPE
' channelBinding : WS_CHANNEL_BINDING
' securityDescription : WS_SECURITY_DESCRIPTION* optional
' properties : WS_PROXY_PROPERTY* optional
' propertyCount : DWORD
' channelProperties : WS_CHANNEL_PROPERTY* optional
' channelPropertyCount : DWORD
' serviceProxy : WS_SERVICE_PROXY** out
' error : WS_ERROR* optional
Declare PtrSafe Function WsCreateServiceProxy Lib "webservices" ( _
    ByVal channelType As Long, _
    ByVal channelBinding As Long, _
    ByVal securityDescription As LongPtr, _
    ByVal properties As LongPtr, _
    ByVal propertyCount As Long, _
    ByVal channelProperties As LongPtr, _
    ByVal channelPropertyCount As Long, _
    ByVal serviceProxy As LongPtr, _
    ByVal error As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

WsCreateServiceProxy = ctypes.windll.webservices.WsCreateServiceProxy
WsCreateServiceProxy.restype = ctypes.c_int
WsCreateServiceProxy.argtypes = [
    ctypes.c_int,  # channelType : WS_CHANNEL_TYPE
    ctypes.c_int,  # channelBinding : WS_CHANNEL_BINDING
    ctypes.c_void_p,  # securityDescription : WS_SECURITY_DESCRIPTION* optional
    ctypes.c_void_p,  # properties : WS_PROXY_PROPERTY* optional
    wintypes.DWORD,  # propertyCount : DWORD
    ctypes.c_void_p,  # channelProperties : WS_CHANNEL_PROPERTY* optional
    wintypes.DWORD,  # channelPropertyCount : DWORD
    ctypes.c_void_p,  # serviceProxy : WS_SERVICE_PROXY** out
    ctypes.c_void_p,  # error : WS_ERROR* optional
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('webservices.dll')
WsCreateServiceProxy = Fiddle::Function.new(
  lib['WsCreateServiceProxy'],
  [
    Fiddle::TYPE_INT,  # channelType : WS_CHANNEL_TYPE
    Fiddle::TYPE_INT,  # channelBinding : WS_CHANNEL_BINDING
    Fiddle::TYPE_VOIDP,  # securityDescription : WS_SECURITY_DESCRIPTION* optional
    Fiddle::TYPE_VOIDP,  # properties : WS_PROXY_PROPERTY* optional
    -Fiddle::TYPE_INT,  # propertyCount : DWORD
    Fiddle::TYPE_VOIDP,  # channelProperties : WS_CHANNEL_PROPERTY* optional
    -Fiddle::TYPE_INT,  # channelPropertyCount : DWORD
    Fiddle::TYPE_VOIDP,  # serviceProxy : WS_SERVICE_PROXY** out
    Fiddle::TYPE_VOIDP,  # error : WS_ERROR* optional
  ],
  Fiddle::TYPE_INT)
#[link(name = "webservices")]
extern "system" {
    fn WsCreateServiceProxy(
        channelType: i32,  // WS_CHANNEL_TYPE
        channelBinding: i32,  // WS_CHANNEL_BINDING
        securityDescription: *const WS_SECURITY_DESCRIPTION,  // WS_SECURITY_DESCRIPTION* optional
        properties: *const WS_PROXY_PROPERTY,  // WS_PROXY_PROPERTY* optional
        propertyCount: u32,  // DWORD
        channelProperties: *const WS_CHANNEL_PROPERTY,  // WS_CHANNEL_PROPERTY* optional
        channelPropertyCount: u32,  // DWORD
        serviceProxy: *mut *mut isize,  // WS_SERVICE_PROXY** out
        error: *mut isize  // WS_ERROR* optional
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("webservices.dll")]
public static extern int WsCreateServiceProxy(int channelType, int channelBinding, IntPtr securityDescription, IntPtr properties, uint propertyCount, IntPtr channelProperties, uint channelPropertyCount, IntPtr serviceProxy, IntPtr error);
"@
$api = Add-Type -MemberDefinition $sig -Name 'webservices_WsCreateServiceProxy' -Namespace Win32 -PassThru
# $api::WsCreateServiceProxy(channelType, channelBinding, securityDescription, properties, propertyCount, channelProperties, channelPropertyCount, serviceProxy, error)
#uselib "webservices.dll"
#func global WsCreateServiceProxy "WsCreateServiceProxy" sptr, sptr, sptr, sptr, sptr, sptr, sptr, sptr, sptr
; WsCreateServiceProxy channelType, channelBinding, varptr(securityDescription), varptr(properties), propertyCount, varptr(channelProperties), channelPropertyCount, serviceProxy, error   ; 戻り値は stat
; channelType : WS_CHANNEL_TYPE -> "sptr"
; channelBinding : WS_CHANNEL_BINDING -> "sptr"
; securityDescription : WS_SECURITY_DESCRIPTION* optional -> "sptr"
; properties : WS_PROXY_PROPERTY* optional -> "sptr"
; propertyCount : DWORD -> "sptr"
; channelProperties : WS_CHANNEL_PROPERTY* optional -> "sptr"
; channelPropertyCount : DWORD -> "sptr"
; serviceProxy : WS_SERVICE_PROXY** out -> "sptr"
; error : WS_ERROR* optional -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "webservices.dll"
#cfunc global WsCreateServiceProxy "WsCreateServiceProxy" int, int, var, var, int, var, int, int, int
; res = WsCreateServiceProxy(channelType, channelBinding, securityDescription, properties, propertyCount, channelProperties, channelPropertyCount, serviceProxy, error)
; channelType : WS_CHANNEL_TYPE -> "int"
; channelBinding : WS_CHANNEL_BINDING -> "int"
; securityDescription : WS_SECURITY_DESCRIPTION* optional -> "var"
; properties : WS_PROXY_PROPERTY* optional -> "var"
; propertyCount : DWORD -> "int"
; channelProperties : WS_CHANNEL_PROPERTY* optional -> "var"
; channelPropertyCount : DWORD -> "int"
; serviceProxy : WS_SERVICE_PROXY** out -> "int"
; error : WS_ERROR* optional -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; HRESULT WsCreateServiceProxy(WS_CHANNEL_TYPE channelType, WS_CHANNEL_BINDING channelBinding, WS_SECURITY_DESCRIPTION* securityDescription, WS_PROXY_PROPERTY* properties, DWORD propertyCount, WS_CHANNEL_PROPERTY* channelProperties, DWORD channelPropertyCount, WS_SERVICE_PROXY** serviceProxy, WS_ERROR* error)
#uselib "webservices.dll"
#cfunc global WsCreateServiceProxy "WsCreateServiceProxy" int, int, var, var, int, var, int, int, int
; res = WsCreateServiceProxy(channelType, channelBinding, securityDescription, properties, propertyCount, channelProperties, channelPropertyCount, serviceProxy, error)
; channelType : WS_CHANNEL_TYPE -> "int"
; channelBinding : WS_CHANNEL_BINDING -> "int"
; securityDescription : WS_SECURITY_DESCRIPTION* optional -> "var"
; properties : WS_PROXY_PROPERTY* optional -> "var"
; propertyCount : DWORD -> "int"
; channelProperties : WS_CHANNEL_PROPERTY* optional -> "var"
; channelPropertyCount : DWORD -> "int"
; serviceProxy : WS_SERVICE_PROXY** out -> "int"
; error : WS_ERROR* optional -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	webservices = windows.NewLazySystemDLL("webservices.dll")
	procWsCreateServiceProxy = webservices.NewProc("WsCreateServiceProxy")
)

// channelType (WS_CHANNEL_TYPE), channelBinding (WS_CHANNEL_BINDING), securityDescription (WS_SECURITY_DESCRIPTION* optional), properties (WS_PROXY_PROPERTY* optional), propertyCount (DWORD), channelProperties (WS_CHANNEL_PROPERTY* optional), channelPropertyCount (DWORD), serviceProxy (WS_SERVICE_PROXY** out), error (WS_ERROR* optional)
r1, _, err := procWsCreateServiceProxy.Call(
	uintptr(channelType),
	uintptr(channelBinding),
	uintptr(securityDescription),
	uintptr(properties),
	uintptr(propertyCount),
	uintptr(channelProperties),
	uintptr(channelPropertyCount),
	uintptr(serviceProxy),
	uintptr(error),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function WsCreateServiceProxy(
  channelType: Integer;   // WS_CHANNEL_TYPE
  channelBinding: Integer;   // WS_CHANNEL_BINDING
  securityDescription: Pointer;   // WS_SECURITY_DESCRIPTION* optional
  properties: Pointer;   // WS_PROXY_PROPERTY* optional
  propertyCount: DWORD;   // DWORD
  channelProperties: Pointer;   // WS_CHANNEL_PROPERTY* optional
  channelPropertyCount: DWORD;   // DWORD
  serviceProxy: Pointer;   // WS_SERVICE_PROXY** out
  error: Pointer   // WS_ERROR* optional
): Integer; stdcall;
  external 'webservices.dll' name 'WsCreateServiceProxy';
result := DllCall("webservices\WsCreateServiceProxy"
    , "Int", channelType   ; WS_CHANNEL_TYPE
    , "Int", channelBinding   ; WS_CHANNEL_BINDING
    , "Ptr", securityDescription   ; WS_SECURITY_DESCRIPTION* optional
    , "Ptr", properties   ; WS_PROXY_PROPERTY* optional
    , "UInt", propertyCount   ; DWORD
    , "Ptr", channelProperties   ; WS_CHANNEL_PROPERTY* optional
    , "UInt", channelPropertyCount   ; DWORD
    , "Ptr", serviceProxy   ; WS_SERVICE_PROXY** out
    , "Ptr", error   ; WS_ERROR* optional
    , "Int")   ; return: HRESULT
●WsCreateServiceProxy(channelType, channelBinding, securityDescription, properties, propertyCount, channelProperties, channelPropertyCount, serviceProxy, error) = DLL("webservices.dll", "int WsCreateServiceProxy(int, int, void*, void*, dword, void*, dword, void*, void*)")
# 呼び出し: WsCreateServiceProxy(channelType, channelBinding, securityDescription, properties, propertyCount, channelProperties, channelPropertyCount, serviceProxy, error)
# channelType : WS_CHANNEL_TYPE -> "int"
# channelBinding : WS_CHANNEL_BINDING -> "int"
# securityDescription : WS_SECURITY_DESCRIPTION* optional -> "void*"
# properties : WS_PROXY_PROPERTY* optional -> "void*"
# propertyCount : DWORD -> "dword"
# channelProperties : WS_CHANNEL_PROPERTY* optional -> "void*"
# channelPropertyCount : DWORD -> "dword"
# serviceProxy : WS_SERVICE_PROXY** out -> "void*"
# error : WS_ERROR* optional -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。