This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.

Syntax

C# Copy imageCopy Code
                                  public class WebserviceParameters
Visual Basic (Declaration) Copy imageCopy Code
                                  Public Class WebserviceParameters

The type exposes the following properties.

Public Properties

  Name Description
Public property Arguments
Gets/sets the Webservice Method arguments.
Public property BindingConfigurationName
Gets or sets the name of the binding configuration.
Public property BindingType
Gets or sets the type of the binding (e.g. "wsHttpBinding").
Public property EndpointConfigurationName
Gets or sets the name of the endpoint configuration.
Public property LiteralMethodNode
Gets/sets the literal method node. The literal method node is an alternative for providing WebserviceMethodArguments, and it contents will be appended as method node within the SoapEnvelope.
Public property MaxReceivedMessageSize
Gets or sets the max received message size.
Public property MethodName
Gets/sets the method name.
Public property MethodNamespacePrefix
Gets/sets the namespace prefix used for the method.
Public property MethodNamespaceUri
Gets/sets the namespace-uri used for the method.
Public property ParametersNamespace
Gets/sets the namespace to be used on the parameters within the body element.
Public property Password
Gets or sets the password.
Only needed when the webservice is restricted by means of basic http authentication.
Public property RawSoapHeaders
Gets or sets the raw SOAP headers.
Public property SendTimeout
Gets or sets the send timeout (in seconds).
When you need to set one of the other timeout values, use a binding configuration section and specify its name using the parameter BindingConfigurationName.
Public property SoapAction
Gets/sets the SOAP Action HTTP header
Public property UserName
Gets or sets the name of the user.
Only needed when the webservice is restricted by means of basic http authentication.
Public property WriteTypeAttributes
Determines if type-information (e.g. xsi:type="xsd:int") should be included on the parameter(s). Defaults to true.

See Also

Advanced