diff --git a/BeWo/BeWoApp.xaml.cs b/BeWo/BeWoApp.xaml.cs index 38755f7ae..4c7898ff7 100644 --- a/BeWo/BeWoApp.xaml.cs +++ b/BeWo/BeWoApp.xaml.cs @@ -778,9 +778,9 @@ namespace BeWo //{ // url += "/service45"; //} - if (url.IndexOf("/service_developer") < 0) + if (url.IndexOf("/service") < 0) { - url += "/service_developer"; + url += "/service"; } return new Uri(String.Format("https://{0}", url)); diff --git a/Host/GkvAbrechnungServer.aspx.cs b/Host/GkvAbrechnungServer.aspx.cs index 340494250..4ac9b6fe7 100644 --- a/Host/GkvAbrechnungServer.aspx.cs +++ b/Host/GkvAbrechnungServer.aspx.cs @@ -125,7 +125,7 @@ namespace Host if (string.IsNullOrEmpty(server)) return false; - var loginurl = string.Format(LOGINSERVER_URL, $"https://{server}/service_developer"); + var loginurl = string.Format(LOGINSERVER_URL, $"https://{server}/service"); #if DEBUG if (server.IndexOf("localhost") >= 0) diff --git a/Shared/AppSender/GkvSender.cs b/Shared/AppSender/GkvSender.cs index e94a3d523..99ea4254a 100644 --- a/Shared/AppSender/GkvSender.cs +++ b/Shared/AppSender/GkvSender.cs @@ -39,7 +39,7 @@ namespace BS.Shared.AppSender public static Res SendApp8Request(Req request, string tenant) where Req : GkvServerRequestDC where Res : GkvResponseDC { - string url = "https://app8.bewoplaner.de/service_developer/GkvAbrechnungServer.aspx"; + string url = "https://app8.bewoplaner.de/service/GkvAbrechnungServer.aspx"; #if DEBUG //url = "http://localhost:3777/Host/GkvAbrechnungServer.aspx"; @@ -69,7 +69,7 @@ namespace BS.Shared.AppSender if (string.IsNullOrEmpty(server)) return null; - var url = string.Format(GKVCLIENT_URL, $"https://{server}/service_developer"); + var url = string.Format(GKVCLIENT_URL, $"https://{server}/service"); #if DEBUG if (server.IndexOf("localhost") > 0)