5 Commits

Author SHA1 Message Date
Developer 02
dccaaf2feb chore(IISProfile): DesktopBuildPackageLocation-Pfad aktualisieren 2025-04-08 15:39:29 +02:00
Developer 02
1957626ef2 Bump version to 1.1.0 in project file
Updated the `DigitalData.Gateway.csproj` to reflect the new versioning information, changing `Version`, `AssemblyVersion`, and `FileVersion` from `1.0.0` to `1.1.0`. This release may include new features or fixes.
2025-04-08 15:34:24 +02:00
Developer 02
7069938d34 merge 2025-04-08 15:31:49 +02:00
Developer 02
84a25752b5 Merge branch 'master' into feat/envelope-generator.gen.api 2025-04-08 11:07:33 +02:00
Developer 02
693a835191 Update routing and configuration for EnvelopeGeneratorGenApi
- Changed `DesktopBuildPackageLocation` in `IISProfile.pubxml` to point to the new `EnvelopeGeneratorGenApi` project directory.
- Updated routing in `ocelot.Development.json` and `ocelot.json`:
  - Changed `DownstreamScheme` from `https` to `http` for multiple routes.
  - Updated `Port` for `DownstreamHostAndPorts` from `7120` and `7192` to `8088`.
  - Expanded `UpstreamHttpMethod` to include `Post`, `Put`, and `Delete`.
  - Added new routes for `/scalar`, `/scalar/{route}`, and `/scalar/{route1}/{route2}`.
- Modified `GlobalConfiguration` `BaseUrl` from `https://localhost:7052` to `http://localhost:8443`.
2025-04-08 10:44:46 +02:00
4 changed files with 146 additions and 34 deletions

View File

@@ -4,9 +4,9 @@
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks> <TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.0</Version> <Version>1.1.0</Version>
<AssemblyVersion>1.0.0</AssemblyVersion> <AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion> <FileVersion>1.1.0</FileVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@@ -11,7 +11,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish> <LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<ExcludeApp_Data>false</ExcludeApp_Data> <ExcludeApp_Data>false</ExcludeApp_Data>
<ProjectGuid>329f45bf-4c79-4a7b-9086-d6205617aa42</ProjectGuid> <ProjectGuid>329f45bf-4c79-4a7b-9086-d6205617aa42</ProjectGuid>
<DesktopBuildPackageLocation>P:\Install .Net\0 DD - Smart UP\Gateway\WorkFlow\\.zip</DesktopBuildPackageLocation> <DesktopBuildPackageLocation>P:\Install .Net\0 DD - Smart UP\Gateway\EnvelopeGeneratorGen\Net9Win64\$(Version)\$(Version).zip</DesktopBuildPackageLocation>
<PackageAsSingleFile>true</PackageAsSingleFile> <PackageAsSingleFile>true</PackageAsSingleFile>
<DeployIisAppPath>Gateway</DeployIisAppPath> <DeployIisAppPath>Gateway</DeployIisAppPath>
<_TargetId>IISWebDeployPackage</_TargetId> <_TargetId>IISWebDeployPackage</_TargetId>

View File

@@ -2,67 +2,124 @@
"Routes": [ "Routes": [
{ {
"DownstreamPathTemplate": "/swagger/{route}", "DownstreamPathTemplate": "/swagger/{route}",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7120 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/swagger/{route}", "UpstreamPathTemplate": "/swagger/{route}",
"UpstreamhttpsMethod": [ "UpstreamHttpMethod": [
"Get" "Get",
"Post",
"Put",
"Delete"
] ]
}, },
{ {
"DownstreamPathTemplate": "/swagger/{route}", "DownstreamPathTemplate": "/swagger/{route1}/{route2}",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7192 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/swagger/auth/{route}", "UpstreamPathTemplate": "/swagger/{route1}/{route2}",
"UpstreamhttpsMethod": [ "UpstreamHttpMethod": [
"Get" "Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar/{route}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar/{route}",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar/{route1}/{route2}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar/{route1}/{route2}",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
] ]
}, },
{ {
"DownstreamPathTemplate": "/api/Auth/work-flow?cookie=false", "DownstreamPathTemplate": "/api/Auth/work-flow?cookie=false",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7192 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/api/Auth", "UpstreamPathTemplate": "/api/Auth",
"UpstreamhttpsMethod": [ "Post" ] "UpstreamHttpMethod": [ "Post" ]
}, },
{ {
"DownstreamPathTemplate": "/api/Auth/check", "DownstreamPathTemplate": "/api/Auth/check",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7120 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/api/Auth/check", "UpstreamPathTemplate": "/api/Auth/check",
"UpstreamhttpsMethod": [ "Post" ] "UpstreamHttpMethod": [ "Post" ]
}, },
{ {
"DownstreamPathTemplate": "/api/{route}", "DownstreamPathTemplate": "/api/{route}",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7120 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/api/{route}", "UpstreamPathTemplate": "/api/{route}",
"UpstreamhttpsMethod": [ "UpstreamHttpMethod": [
"Get", "Get",
"Post", "Post",
"Put", "Put",
@@ -71,21 +128,20 @@
}, },
{ {
"DownstreamPathTemplate": "/api/{route}/{id}", "DownstreamPathTemplate": "/api/{route}/{id}",
"DownstreamScheme": "https", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 7120 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/api/{route}{id}", "UpstreamPathTemplate": "/api/{route}{id}",
"UpstreamhttpsMethod": [ "UpstreamHttpMethod": [
"Get", "Get",
"Delete" "Delete"
] ]
} }
], ],
"GlobalConfiguration": { "GlobalConfiguration": {
"BaseUrl": "https://localhost:7052"
} }
} }

View File

@@ -11,21 +11,78 @@
], ],
"UpstreamPathTemplate": "/swagger/{route}", "UpstreamPathTemplate": "/swagger/{route}",
"UpstreamHttpMethod": [ "UpstreamHttpMethod": [
"Get" "Get",
"Post",
"Put",
"Delete"
] ]
}, },
{ {
"DownstreamPathTemplate": "/swagger/{route}", "DownstreamPathTemplate": "/swagger/{route1}/{route2}",
"DownstreamScheme": "http", "DownstreamScheme": "http",
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 9090 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/swagger/auth/{route}", "UpstreamPathTemplate": "/swagger/{route1}/{route2}",
"UpstreamHttpMethod": [ "UpstreamHttpMethod": [
"Get" "Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar/{route}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar/{route}",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/scalar/{route1}/{route2}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
}
],
"UpstreamPathTemplate": "/scalar/{route1}/{route2}",
"UpstreamHttpMethod": [
"Get",
"Post",
"Put",
"Delete"
] ]
}, },
{ {
@@ -34,7 +91,7 @@
"DownstreamHostAndPorts": [ "DownstreamHostAndPorts": [
{ {
"Host": "localhost", "Host": "localhost",
"Port": 9090 "Port": 8088
} }
], ],
"UpstreamPathTemplate": "/api/Auth", "UpstreamPathTemplate": "/api/Auth",
@@ -86,6 +143,5 @@
} }
], ],
"GlobalConfiguration": { "GlobalConfiguration": {
"BaseUrl": "https://localhost:8443"
} }
} }