Lukas Wiedemann

Results 20 comments of Lukas Wiedemann
trafficstars

I couldn't find any incompatible API usages via the GitHub search. Updating `sinceBuild` and `untilBuild` in `build.gradle` might be enough. Great work on the plugin by the way. I use...

In the meantime you can use [Git Flow Integration Plus](https://github.com/RubinCarter/gitflow4idea-plus) which is a fork of this plugin.

```c# using Microsoft.OData.Client; new DataServiceContext(new Uri("http://192.168.0.1:1234/Instance/ODataV4/Company('123-Customer Place Süd-Ost')/"), ODataProtocolVersion.V4); ``` results in ``` Unhandled exception. System.ArgumentException: Expected an absolute, well formed http URL without a query or fragment. (Parameter 'serviceRoot')...

@KenitoInc I don't know if fully understand. My endpoints + filter etc. would follow after the DataServiceContext's URI. For example `http://192.168.0.1:1234/Instance/ODataV4/Company('123-Customer Place Süd-Ost')/UsersTableEndpoint?$filter=Id eq 1` My data access via OData...

I tried to implement a basic workaround that fixes the issue for me [here](https://github.com/AntiGuideAkquinet/odata.net/commit/351d54167105bc59ccff6ca6cc8ff6856b0cbe68). There are very likely better and more elegant ways to implement this but I believe it...

As stated in my first comment: > The issue seems to occur only when a space and a non ASCII character like ä is present. To reproduce the issue you'll...

@chrisspre That ist true but misses the point that > a space **and** a non ASCII character must be present. The problem is that `Uri.IsWellFormedUriString("http://192.168.0.1:1234/Instance/ODataV4/Company('123-Cust%C3%B6mer%20')", UriKind.Absolute);` and `Uri.IsWellFormedUriString("http://192.168.0.1:1234/Instance/ODataV4/Company('123-Custömer ')", UriKind.Absolute);`...

It is already filed [here](https://github.com/dotnet/runtime/issues/21626) and scheduled for .NET 7. My request is for a fix considering .NET versions I did that [here](https://github.com/AntiGuideAkquinet/odata.net/commit/351d54167105bc59ccff6ca6cc8ff6856b0cbe68) - A `Func validateUri` that can be...

It seem to work perfectly for now. My quick fix is in active use. If there are issues with it I have not discovered them yet.

Is there anything I can do to help you to resolve the issue?