fixing url's

broken/ef
Paul Schneider 2 years ago
parent edc9628b67
commit c06f518836
2 changed files with 3 additions and 3 deletions

@ -33,7 +33,7 @@ namespace isn
try
{
Console.WriteLine("Connecting to "+pubRes.Id);
Console.WriteLine("Connecting to "+ pubRes.Id);
return UploadFilesToServerUsingHttpClient.UploadFilesToServer(new Uri(pubRes.Id), fi, apikey);
}
catch (WebException ex)

@ -46,7 +46,7 @@ dataTable.Rows.Add(dataRow);
[Fact]
public async Task TestHttpClient()
{
string url = "http://localhost:88/index.json";
string url = "http://isn.pschneider.fr/index.json";
HttpClient client = new HttpClient();
// var json = await client.GetStringAsync(new System.Uri(url));
var response = await client.GetAsync(url);
@ -66,7 +66,7 @@ dataTable.Rows.Add(dataRow);
[Fact]
public async Task GetServerResourcesUsingWebRequestAsyncTest()
{
var model = await SourceHelpers.GetServerResourcesUsingWebRequestAsync("Http://localhost:88/index.json");
var model = await SourceHelpers.GetServerResourcesUsingWebRequestAsync("Http://isn.pschneider.fr/index.json");
Console.WriteLine(JsonConvert.SerializeObject(model));
Assert.NotNull(model.Resources);
var pub = model.Resources.FirstOrDefault((r) => r.Type == "PackagePublish/2.0.0");

Loading…