Search the Community
Showing results for tags 'webservice'.
Found 3 results
-
Web Service with Certificate
interact2020 posted a topic in General
How do you use the Webservice module to to a HTTPS Post Request with a certificate for authentication? Under the options TAB for the module there is Simple Authentication (username and password) and No Athentication. Where is the certicate accommodated?- 12 replies
-
- ssl certificates
- webservice
-
(and 1 more)
Tagged with:
-
converting result to string
Guest posted a topic in General
Hi , I have result from RESTApi GET call like {{"today":{"times":{"id":"Persembe_0","checked":true,"time":"09:00"}}}} I am trying to pass "time":"09:00" to next RESTApi POST as JSON. But if I try to send POST data like {"rzv":{ "username":$RV[TC_NO_SES], "time" :$RV[CheckTC_today_times_time], "type" : "today" } } it replace "time" :$RV[CheckTC_today_times_time] to => "time" :09:00 and it give JSON parse error. Because 09:00 not a string. How can I convert it to String? I tried adding "time" :$RV[CheckTC_today_times_time_string] but it gave me not found error like below 225249.359 8 2 2 3 rv replace start ------------------------------ {"rzv":{ "username":$RV[TC_NO_SES], "time" :$RV[CheckTC_today_times_time_string], "type" : "today" } } ------------------------------ 225249.359 8 2 2 3 rv dbg rv_retrieve did not find [CheckTC_today_times_time_string] 225249.359 8 2 2 3 rv replace end ------------------------------ {"rzv":{ "username":11111111111, "time" :, "type" : "today" } } ------------------------------- 1 reply
-
- json
- webservice
-
(and 2 more)
Tagged with:
-
Webservice Content Analysis
invoso.com posted a topic in General
I try to create tracking script. answer from source server looks like this: <?xml version="1.0" encoding="UTF-8"?> <Odpowiedz> <Wyniki> <DaneTrackingowe> <Przesylka> <NumerPrzesylki>830224172</NumerPrzesylki> <Status>Magazyn nadający</Status> <DataNadania>2013-11-25 11:55:54</DataNadania> <DataDoreczenia></DataDoreczenia> <HistoriaLista> <Historia> <Data>2013-11-25</Data> <Godzina>10:45:40</Godzina> <Status>Wprowadzona</Status> <Komentarz>Wprowadzona do systemu i oczekuje na przyjazd kuriera</Komentarz> <DaneDodatkowe></DaneDodatkowe> <Oddzial>Warszawa</Oddzial> </Historia> <Historia> <Data>2013-11-25</Data> <Godzina>11:55:54</Godzina> <Status>Przyjęta</Status> <Komentarz>Przyjęta przez kuriera w miejscu nadania</Komentarz> <DaneDodatkowe>dddd</DaneDodatkowe> <Oddzial>Warszawa</Oddzial> </Historia> <Historia> <Data>2013-11-25</Data> <Godzina>12:01:43</Godzina> <Status>Magazyn nadający</Status> <Komentarz>Przesyłka została wprowadzona na magazyn nadający</Komentarz> <DaneDodatkowe></DaneDodatkowe> <Oddzial>Warszawa</Oddzial> </Historia> </HistoriaLista> </Przesylka> </DaneTrackingowe> </Wyniki> </Odpowiedz> In VG logs I see: 153747.417 22 49 17 rv add kex_http_resp_hdr_Connection|close 153747.417 22 49 17 rv add kex_http_resp_hdr_Content-Type|text/html 153747.417 22 49 17 rv add kex_http_resp_hdr_Date|Wed, 27 Nov 2013 14:38:01 GMT 153747.418 22 49 17 rv add kex_http_resp_hdr_Server|IdeaWebServer/v0.80 153747.418 22 49 17 rv add NumerPrzesylki|830224172 153747.418 22 49 17 rv add NumerPrzesylki_1|830224172 153747.418 22 49 17 rv add Status|Magazyn nadający 153747.418 22 49 17 rv add Status_1|Magazyn nadający 153747.418 22 49 17 rv add DataNadania|2013-11-25 11:55:54 153747.419 22 49 17 rv add DataNadania_1|2013-11-25 11:55:54 153747.419 22 49 17 rv add Data|2013-11-25 153747.419 22 49 17 rv add Data_1|2013-11-25 153747.419 22 49 17 rv add Godzina|10:45:40 153747.419 22 49 17 rv add Godzina_1|10:45:40 153747.419 22 49 17 rv add Status_2|Wprowadzona 153747.421 22 49 17 rv add Komentarz|Wprowadzona do systemu i oczekuje na przyjazd kuriera 153747.421 22 49 17 rv add Komentarz_1|Wprowadzona do systemu i oczekuje na przyjazd kuriera 153747.421 22 49 17 rv add Oddzial|Warszawa 153747.421 22 49 17 rv add Oddzial_1|Warszawa 153747.422 22 49 17 rv add Data_2|2013-11-25 153747.422 22 49 17 rv add Godzina_2|11:55:54 153747.422 22 49 17 rv add Status_3|Przyjęta 153747.422 22 49 17 rv add Komentarz_2|Przyjęta przez kuriera w miejscu nadania 153747.422 22 49 17 rv add DaneDodatkowe|dddd 153747.422 22 49 17 rv add DaneDodatkowe_1|dddd 153747.422 22 49 17 rv add Oddzial_2|Warszawa 153747.423 22 49 17 rv add Data_3|2013-11-25 153747.423 22 49 17 rv add Godzina_3|12:01:43 153747.423 22 49 17 rv add Status_4|Magazyn nadający 153747.423 22 49 17 rv add Komentarz_3|Przesyłka została wprowadzona na magazyn nadający 153747.423 22 49 17 rv add Oddzial_3|Warszawa 153747.423 22 49 17 rv add kex_Result_Code|OK 153747.424 22 49 17 rv add kex_Result_Desc|OK How to recognize data like last <Historia>...</Historia> content? I can't change or customize source data. I need to read (tts) each Historia (history) record, but for example variable Status in history 3rd listed data has number Status_4 because on top is current Status as Status_1 How to count how many elements (or max value) including data? eg. max Status_X value?