ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / .Net functions
  • Details
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Details
To pass parameters to a procedure run on a server of Web XML .Net services, the following structure is used by WLanguage:
VariableTypeDetails
DotNet.NameSpaceOptional character string"NameSpace" of parameter
DotNet.NameCharacter stringParameter name
DotNet.XMLParamOptional character stringStructures of a parameter expressed in XML format. The other parameters (Value, Name, Type, NameSpace and EncodingStyle) are ignored if this parameter is specified.
DotNet.EncodingStyleOptional character stringEncoding style of parameter
DotNet.TypeConstantType of parameter
DotNet.ValueAny typeParameter value

The DotNet.Value variable is ignored if the DotNet.ExtendedValue is used.

Character string (Unicode string)
This string is automatically converted into ANSI format when it is sent.

Binary string
To transmit a binary string, use the DotNet.ExtendedValue variable.
DotNet.ExtendedValueAny typeParameter value

Character string (Unicode string)
This string is not modified when it is sent. No conversion is performed.

Useful when a character string in UNICODE format must be transmitted for instance.

This structure must be used for each parameter. For example:
DotNet.Value[1] = 94010
DotNet.Name[1] = "ZipCode"
DotNet.Type[1] = DotNetStringType
This structure is equivalent to:
DotNet.XMLParam[1] = <ZipCode xsi:type="xsd:string">94010</ZipCode>
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help