コード例 #1
0
ImagingBindingProxy::ImagingBindingProxy(soap_mode imode, soap_mode omode)
{	ImagingBindingProxy_init(imode, omode);
}
コード例 #2
0
void ImagingBindingProxy::reset()
{	destroy();
	soap_done(this);
	soap_init(this);
	ImagingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT);
}
コード例 #3
0
ImagingBindingProxy::ImagingBindingProxy(soap_mode iomode)
{	ImagingBindingProxy_init(iomode, iomode);
}
コード例 #4
0
ImagingBindingProxy::ImagingBindingProxy(const char *url, soap_mode iomode)
{	ImagingBindingProxy_init(iomode, iomode);
	soap_endpoint = url;
}
コード例 #5
0
ImagingBindingProxy::ImagingBindingProxy()
{	ImagingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT);
}
コード例 #6
0
ImagingBindingProxy::ImagingBindingProxy(const char *url)
{	ImagingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT);
	soap_endpoint = url;
}
コード例 #7
0
ImagingBindingProxy::ImagingBindingProxy(soap_mode imode, soap_mode omode)
{	this->soap = soap_new();
	this->own = true;
	ImagingBindingProxy_init(imode, omode);
}
コード例 #8
0
ImagingBindingProxy::ImagingBindingProxy(const char *url, soap_mode iomode)
{	this->soap = soap_new();
	this->own = true;
	ImagingBindingProxy_init(iomode, iomode);
	soap_endpoint = url;
}
コード例 #9
0
ImagingBindingProxy::ImagingBindingProxy(const char *url)
{	this->soap = soap_new();
	this->own = true;
	ImagingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT);
	soap_endpoint = url;
}
コード例 #10
0
ImagingBindingProxy::ImagingBindingProxy(struct soap *_soap)
{	this->soap = _soap;
	this->own = false;
	ImagingBindingProxy_init(_soap->imode, _soap->omode);
}
コード例 #11
0
ImagingBindingProxy::ImagingBindingProxy()
{	this->soap = soap_new();
	this->own = true;
	ImagingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT);
}