PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WB 18] Webservice SOAP
[WB 18] Webservice SOAP
Iniciado por guest, 11,nov. 2015 18:01 - No hay respuesta
Publicado el 11,noviembre 2015 - 18:01
I need to generate one webservice to be used by one external app.
When i try to use my webservice i always get the error in attach.

Any tips are welcome.

Sample code:

wstruct is Structure
str_number is int
str_name is string
END
wstruct1 is wstruct

warr_struct is array of wstruct

wstruct1:str_number=1
wstruct1:str_name="a_"+wstruct1:str_number
ArrayAdd(warr_struct,wstruct1)
wstruct1:str_number=2
wstruct1:str_name="a_"+wstruct1:str_number
ArrayAdd(warr_struct,wstruct1)
wstruct1:str_number=3
wstruct1:str_name="a_"+wstruct1:str_number
ArrayAdd(warr_struct,wstruct1)

RESULT warr_struct
[attachment 1770 WS_ERROR.pdf]