Beppe Magistro
Members-
Content Count
20 -
Joined
-
Last visited
Community Reputation
1 Neutral-
in manifest i have already added this : android:usesCleartextTraffic="true">
-
same on delphi 10.4.2
-
yes same result 'http://10.11.10.50/APplusTest7/masterdata/Artikel.asmx' result : Project Client_Wms.apk raised exception class ESOAPHTTPException with message 'Unauthorized (401) - 'http://10.11.10.50/APplusTest7/masterdata/Artikel.asmx''.
-
the url is an internal one and is working if i run on windows , i tried to modify to https://masterdata/Artikel.asmx" but the connection is refused by the server under windows too.
-
please tell my what to change
-
Hi All, I have a D11 small fmx app consuming a Soap web service authorized by user/password , if i run on WIndows all is working good, if i try to run on Android i Have this error : Project Client_Wms.apk raised exception class ESOAPHTTPException with message 'Unauthorized (401) - 'http:/masterdata/Artikel.asmx''. this is the code : indirizzo:= THTTPRIO.Create(nil); indirizzo.HTTPWebNode.UserName := 'user'; indirizzo.HTTPWebNode.Password := 'password'; indirizzo.HTTPWebNode.UseDefaultCredentials :=true; art := GetartikelSoap(false,'http:/masterdata/Artikel.asmx',indirizzo); APP_ART:= art.getDBValue('ARTIKEL','ARTIKEL','EANCODE','8007057433524'); in the Android manifest i added : android:usesCleartextTraffic="true" Thanks in Advance
-
hi all , Apple will discontinue notification in binary mode at the end of march and will work only in HTTP/2 mode. anybody has a working example? Thanks in advance Beppe
-
thank you very much !!!!
-
thank you Wil , do you have a small code example ? Beppe
-
Hi all , there is in delphi 10.4.2 a way to understand if MAC is in dark mode and switch theme ? Thanks in advance Beppe
-
i have the same issue , delphi 10.4.1 ,xcode 12.3 ios 14.3 Beppe
-
PushService := TPushServiceManager.Instance.GetServiceByName(TPushService.TServiceNames.FCM); if PushService <> nil then begin ...... remain nil !
-
hi , this example do not compile on 10.4.1 , PushService: TPushService; ServiceConnection: TPushServiceConnection; Notifications: TArray<TPushServiceNotification>; these variables remain in red , may be are not more defined in FMX.PushNotification.Android; if i include System.PushNotification; the sample compile but hang