AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones J2EE
  • Overview
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Overview
The following structure is used to pass parameters to a procedure run on a server of J2EE XML Web services:
VariableTypeDetails
J2EE.NameSpaceOptional character string"NameSpace" of parameter
J2EE.NameCharacter stringParameter name
J2EE.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.
J2EE.EncodingStyleOptional character stringEncoding style of parameter
J2EE.TypeConstantType of parameter
J2EE.ValueAny typeParameter value
The J2EE.Value variable is ignored if the J2EE.ExtendedValue is used.
For a character string (Unicode string or string used in WINDEV Mobile)
This string is automatically converted into ANSI format when it is sent.
Binary string
To transmit a binary string, use the J2EE.ExtendedValue variable.
J2EE.ExtendedValueAny typeParameter value
For a character string (Unicode string or string used in WINDEV Mobile)
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:
J2EE.Value[1] = 94010
J2EE.Name[1] = "PostalCode"
J2EE.Type[1] = J2EEStringType
This structure is equivalent to:
J2EE.XMLParam[1] = <PostalCode xsi:type="xsd:string">94010</PostalCode>
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 03/07/2023

Señalar un error o enviar una sugerencia | Ayuda local