service_developer

This commit is contained in:
2025-11-19 14:47:04 +01:00
parent 39d346fc74
commit b405d07230
3 changed files with 5 additions and 5 deletions

View File

@@ -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));

View File

@@ -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)

View File

@@ -39,7 +39,7 @@ namespace BS.Shared.AppSender
public static Res SendApp8Request<Req, Res>(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)