Search found 147 matches

by Oliver Heilig
Thu Mar 28, 2019 4:00 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Where can I get the xServer.NET 1.7 Setup?
Replies: 3
Views: 5160

Re: Where can I get the xServer.NET 1.7 Setup?

Hello Bernd, you can find the current resources for xServer.NET here: Releases https://github.com/ptv-logistics/xserver.net/releases Documentation https://ptv-logistics.github.io/xserver.net-docs Samples https://github.com/ptv-logistics/xserver.net-samples/blob/master/README.md We don't provide an I...
by Oliver Heilig
Wed Feb 27, 2019 1:17 pm
Forum: PTV xRouteServer
Topic: Toll costs details (c#) (xsers-1330)
Replies: 18
Views: 19495

Re: Toll costs details (c#)

Hello vnsilva,

do you need C# sample code for a specific xServer API function, or a general sample that shows which api to use for getting detailed toll?

Regards

Oli
by Oliver Heilig
Thu Feb 21, 2019 2:20 pm
Forum: PTV xMapServer
Topic: Improve mapping performance
Replies: 1
Views: 7091

Re: Improve mapping performance

The configuration for a tile-cache when using xServer on-premise is now documented in the manual.

https://xserver2-europe-eu-test.cloud.p ... ration.htm

Regards

Oli
by Oliver Heilig
Wed Jan 02, 2019 3:16 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Where to download latest version of xServer.NET or the demo
Replies: 5
Views: 13576

Re: Where to download latest version of xServer.NET or the d

Hello Bend, happy Neuer! There was some confusion regarding strong-naming of assemblies even among Microsoft. This is why i didn't add the strong name key to the project. But this is settled now https://www.pedrolamas.com/2018/09/11/start-strong-naming-your-assemblies I've added the strong name key ...
by Oliver Heilig
Mon Dec 17, 2018 12:45 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Where to download latest version of xServer.NET or the demo
Replies: 5
Views: 13576

Re: Where to download latest version of xServer.NET or the d

Hello, after Microsoft announced open sourcing WPF and WinForms , i am proud to provide the open source links for xServer.NET. Source code for the latest stable version https://github.com/ptv-logistics/xserver.net Online Documentation https://ptv-logistics.github.io/xserver.net-docs Code-Samples (In...
by Oliver Heilig
Sun Dec 16, 2018 8:54 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: c# example res/json web API ?
Replies: 14
Views: 24298

Re: c# example res/json web API ?

Hello, this is part three: ... while the sample above also works well with .NET Core, it doesn't use pascal-casing. Pascal-casing is default for .NET fields while camel-casing is default for JSON/JavaScript. Another caveat is that xServer (especially xServer-2) uses polymorphic parameter types. Thes...
by Oliver Heilig
Fri Nov 30, 2018 1:34 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: c# example res/json web API ?
Replies: 14
Views: 24298

Re: c# example res/json web API ?

Addendum: i'd rather use the async version (using HttpClient) these days: using System; using System.Threading.Tasks; using System.Net.Http; using System.Text; using Newtonsoft.Json; namespace XServerJson { class Program { // Make a request on xServer with JSON, using JSON.NET and dynamic/anonymous ...