Skip to content

Commit 870272c

Browse files
committed
Initial Commit
1 parent 3f6adc4 commit 870272c

12 files changed

+314
-0
lines changed

RabbitMQ.sln

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26124.0
5+
MinimumVisualStudioVersion = 15.0.26124.0
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "publisher", "publisher\publisher.csproj", "{960AB111-D315-40D4-B8A5-DC546A3AB500}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "worker", "worker\worker.csproj", "{942B617E-4285-4FA2-981E-500195A3C118}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Debug|x64 = Debug|x64
14+
Debug|x86 = Debug|x86
15+
Release|Any CPU = Release|Any CPU
16+
Release|x64 = Release|x64
17+
Release|x86 = Release|x86
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|x64.ActiveCfg = Debug|Any CPU
26+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|x64.Build.0 = Debug|Any CPU
27+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|x86.ActiveCfg = Debug|Any CPU
28+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Debug|x86.Build.0 = Debug|Any CPU
29+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|x64.ActiveCfg = Release|Any CPU
32+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|x64.Build.0 = Release|Any CPU
33+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|x86.ActiveCfg = Release|Any CPU
34+
{960AB111-D315-40D4-B8A5-DC546A3AB500}.Release|x86.Build.0 = Release|Any CPU
35+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|x64.ActiveCfg = Debug|Any CPU
38+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|x64.Build.0 = Debug|Any CPU
39+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|x86.ActiveCfg = Debug|Any CPU
40+
{942B617E-4285-4FA2-981E-500195A3C118}.Debug|x86.Build.0 = Debug|Any CPU
41+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|Any CPU.ActiveCfg = Release|Any CPU
42+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|Any CPU.Build.0 = Release|Any CPU
43+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|x64.ActiveCfg = Release|Any CPU
44+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|x64.Build.0 = Release|Any CPU
45+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|x86.ActiveCfg = Release|Any CPU
46+
{942B617E-4285-4FA2-981E-500195A3C118}.Release|x86.Build.0 = Release|Any CPU
47+
EndGlobalSection
48+
EndGlobal
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Http;
6+
using Microsoft.AspNetCore.Mvc;
7+
using System.Text;
8+
using System.Text.Json;
9+
10+
namespace publisher.Controllers
11+
{
12+
[Route("api/[controller]")]
13+
[ApiController]
14+
public class ValuesController : ControllerBase
15+
{
16+
[HttpGet]
17+
public ActionResult<IEnumerable<string>> Index()
18+
{
19+
return new string[] { "Value1", "Value2" };
20+
}
21+
22+
[HttpPost]
23+
public IActionResult Post([FromBody]JsonElement body) {
24+
string json = System.Text.Json.JsonSerializer.Serialize(body);
25+
return Ok("{\"success\": \"true\"}");
26+
}
27+
28+
29+
}
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using Microsoft.Extensions.Logging;
7+
8+
namespace publisher.Controllers
9+
{
10+
[ApiController]
11+
[Route("[controller]")]
12+
public class WeatherForecastController : ControllerBase
13+
{
14+
private static readonly string[] Summaries = new[]
15+
{
16+
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
17+
};
18+
19+
private readonly ILogger<WeatherForecastController> _logger;
20+
21+
public WeatherForecastController(ILogger<WeatherForecastController> logger)
22+
{
23+
_logger = logger;
24+
}
25+
26+
[HttpGet]
27+
public IEnumerable<WeatherForecast> Get()
28+
{
29+
var rng = new Random();
30+
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
31+
{
32+
Date = DateTime.Now.AddDays(index),
33+
TemperatureC = rng.Next(-20, 55),
34+
Summary = Summaries[rng.Next(Summaries.Length)]
35+
})
36+
.ToArray();
37+
}
38+
}
39+
}

publisher/Program.cs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Hosting;
6+
using Microsoft.Extensions.Configuration;
7+
using Microsoft.Extensions.Hosting;
8+
using Microsoft.Extensions.Logging;
9+
10+
namespace publisher
11+
{
12+
public class Program
13+
{
14+
public static void Main(string[] args)
15+
{
16+
CreateHostBuilder(args).Build().Run();
17+
}
18+
19+
public static IHostBuilder CreateHostBuilder(string[] args) =>
20+
Host.CreateDefaultBuilder(args)
21+
.ConfigureWebHostDefaults(webBuilder =>
22+
{
23+
webBuilder.UseStartup<Startup>();
24+
});
25+
}
26+
}
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"$schema": "http://json.schemastore.org/launchsettings.json",
3+
"iisSettings": {
4+
"windowsAuthentication": false,
5+
"anonymousAuthentication": true,
6+
"iisExpress": {
7+
"applicationUrl": "http://localhost:62829",
8+
"sslPort": 44322
9+
}
10+
},
11+
"profiles": {
12+
"IIS Express": {
13+
"commandName": "IISExpress",
14+
"launchBrowser": true,
15+
"launchUrl": "weatherforecast",
16+
"environmentVariables": {
17+
"ASPNETCORE_ENVIRONMENT": "Development"
18+
}
19+
},
20+
"Nerium_Api": {
21+
"commandName": "Project",
22+
"launchBrowser": true,
23+
"launchUrl": "weatherforecast",
24+
"applicationUrl": "https://localhost:5001;http://localhost:5000",
25+
"environmentVariables": {
26+
"ASPNETCORE_ENVIRONMENT": "Development"
27+
}
28+
}
29+
}
30+
}

publisher/Startup.cs

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Builder;
6+
using Microsoft.AspNetCore.Hosting;
7+
using Microsoft.AspNetCore.HttpsPolicy;
8+
using Microsoft.AspNetCore.Mvc;
9+
using Microsoft.Extensions.Configuration;
10+
using Microsoft.Extensions.DependencyInjection;
11+
using Microsoft.Extensions.Hosting;
12+
using Microsoft.Extensions.Logging;
13+
14+
namespace publisher
15+
{
16+
public class Startup
17+
{
18+
public Startup(IConfiguration configuration)
19+
{
20+
Configuration = configuration;
21+
}
22+
23+
public IConfiguration Configuration { get; }
24+
25+
// This method gets called by the runtime. Use this method to add services to the container.
26+
public void ConfigureServices(IServiceCollection services)
27+
{
28+
services.AddMvc(options => options.EnableEndpointRouting = false);
29+
services.AddControllers();
30+
}
31+
32+
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
33+
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
34+
{
35+
if (env.IsDevelopment())
36+
{
37+
app.UseDeveloperExceptionPage();
38+
}
39+
40+
app.UseHttpsRedirection();
41+
app.UseRouting();
42+
app.UseAuthorization();
43+
app.UseEndpoints(endpoints =>
44+
{
45+
endpoints.MapControllers();
46+
});
47+
}
48+
}
49+
}

publisher/WeatherForecast.cs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System;
2+
3+
namespace publisher
4+
{
5+
public class WeatherForecast
6+
{
7+
public DateTime Date { get; set; }
8+
9+
public int TemperatureC { get; set; }
10+
11+
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
12+
13+
public string Summary { get; set; }
14+
}
15+
}
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft": "Warning",
6+
"Microsoft.Hosting.Lifetime": "Information"
7+
}
8+
}
9+
}

publisher/appsettings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft": "Warning",
6+
"Microsoft.Hosting.Lifetime": "Information"
7+
}
8+
},
9+
"AllowedHosts": "*"
10+
}

publisher/publisher.csproj

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
9+
</ItemGroup>
10+
11+
12+
</Project>

worker/Program.cs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
using System;
2+
using System.Net.Http;
3+
using System.Threading.Tasks;
4+
using System.Net.Http.Headers;
5+
using System.Text;
6+
using Newtonsoft.Json;
7+
namespace worker
8+
{
9+
class Program
10+
{
11+
public static async Task PostMessage(string postData)
12+
{
13+
var json = JsonConvert.SerializeObject(postData);
14+
var content = new StringContent(json, UnicodeEncoding.UTF8, "application/json");
15+
16+
using (var httpClientHandler = new HttpClientHandler())
17+
{
18+
httpClientHandler.ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => { return true; };
19+
using (var client = new HttpClient(httpClientHandler))
20+
{
21+
var result = await client.PostAsync("https://localhost:5001/api/values", content);
22+
string resultContent = await result.Content.ReadAsStringAsync();
23+
Console.WriteLine("Server returned " + resultContent);
24+
}
25+
}
26+
}
27+
static void Main(string[] args)
28+
{
29+
Console.WriteLine("Hello World!");
30+
Console.WriteLine("Posting a Message!");
31+
PostMessage("Hello World").Wait();
32+
}
33+
}
34+
}

worker/worker.csproj

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
10+
</ItemGroup>
11+
12+
</Project>

0 commit comments

Comments
 (0)