This commit is contained in:
purifetchi 2025-03-08 10:25:16 +01:00
commit e5ebdacc9c
93 changed files with 4609 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/modules.xml
/contentModel.xml
/.idea.IS_Lab5_SOAPCS.iml
/projectSettingsUpdater.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

View file

@ -0,0 +1,37 @@
{
"providerId": "Microsoft.Tools.ServiceModel.Svcutil",
"version": "2.1.0",
"ExtendedData": {
"inputs": [
"http://localhost:7779/ws/first?wsdl"
],
"namespaceMappings": [
"*, IS_Lab5_SOAPCS.MyFirstWSService"
],
"outputFile": "MyFirstWSService.cs",
"references": [
"Microsoft.Bcl.AsyncInterfaces, {Microsoft.Bcl.AsyncInterfaces, 5.0.0}",
"Microsoft.Extensions.ObjectPool, {Microsoft.Extensions.ObjectPool, 5.0.10}",
"Microsoft.IdentityModel.Logging, {Microsoft.IdentityModel.Logging, 6.8.0}",
"Microsoft.IdentityModel.Protocols.WsTrust, {Microsoft.IdentityModel.Protocols.WsTrust, 6.8.0}",
"Microsoft.IdentityModel.Tokens, {Microsoft.IdentityModel.Tokens, 6.8.0}",
"Microsoft.IdentityModel.Tokens.Saml, {Microsoft.IdentityModel.Tokens.Saml, 6.8.0}",
"Microsoft.IdentityModel.Xml, {Microsoft.IdentityModel.Xml, 6.8.0}",
"System.Formats.Asn1, {System.Formats.Asn1, 6.0.0}",
"System.IO, {System.IO, 4.3.0}",
"System.Reflection.DispatchProxy, {System.Reflection.DispatchProxy, 4.7.1}",
"System.Runtime, {System.Runtime, 4.3.0}",
"System.Security.AccessControl, {System.Security.AccessControl, 6.0.0}",
"System.Security.Cryptography.Cng, {System.Security.Cryptography.Cng, 4.5.0}",
"System.Security.Cryptography.Pkcs, {System.Security.Cryptography.Pkcs, 6.0.1}",
"System.Security.Cryptography.Xml, {System.Security.Cryptography.Xml, 6.0.1}",
"System.Security.Principal.Windows, {System.Security.Principal.Windows, 5.0.0}",
"System.Text.Encoding, {System.Text.Encoding, 4.3.0}",
"System.Threading.Tasks, {System.Threading.Tasks, 4.3.0}",
"System.Xml.ReaderWriter, {System.Xml.ReaderWriter, 4.3.0}",
"System.Xml.XmlDocument, {System.Xml.XmlDocument, 4.3.0}"
],
"targetFramework": "net8.0",
"typeReuseMode": "All"
}
}

View file

@ -0,0 +1,134 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace IS_Lab5_SOAPCS.MyFirstWSService
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="http://soapsoapsoap.com/", ConfigurationName="IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface")]
public interface MyFirstSOAPInterface
{
[System.ServiceModel.OperationContractAttribute(Action="http://soapsoapsoap.com/MyFirstSOAPInterface/getHelloWorldAsStringRequest", ReplyAction="http://soapsoapsoap.com/MyFirstSOAPInterface/getHelloWorldAsStringResponse")]
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
[return: System.ServiceModel.MessageParameterAttribute(Name="return")]
System.Threading.Tasks.Task<string> getHelloWorldAsStringAsync(string arg0);
[System.ServiceModel.OperationContractAttribute(Action="http://soapsoapsoap.com/MyFirstSOAPInterface/getDaysBetweenDatesRequest", ReplyAction="http://soapsoapsoap.com/MyFirstSOAPInterface/getDaysBetweenDatesResponse")]
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
[return: System.ServiceModel.MessageParameterAttribute(Name="return")]
System.Threading.Tasks.Task<long> getDaysBetweenDatesAsync(string arg0, string arg1);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
public interface MyFirstSOAPInterfaceChannel : IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface, System.ServiceModel.IClientChannel
{
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")]
public partial class MyFirstSOAPInterfaceClient : System.ServiceModel.ClientBase<IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface>, IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface
{
/// <summary>
/// Implement this partial method to configure the service endpoint.
/// </summary>
/// <param name="serviceEndpoint">The endpoint to configure</param>
/// <param name="clientCredentials">The client credentials</param>
static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials);
public MyFirstSOAPInterfaceClient() :
base(MyFirstSOAPInterfaceClient.GetDefaultBinding(), MyFirstSOAPInterfaceClient.GetDefaultEndpointAddress())
{
this.Endpoint.Name = EndpointConfiguration.MyFirstWSPort.ToString();
ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
}
public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration) :
base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), MyFirstSOAPInterfaceClient.GetEndpointAddress(endpointConfiguration))
{
this.Endpoint.Name = endpointConfiguration.ToString();
ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
}
public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) :
base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress))
{
this.Endpoint.Name = endpointConfiguration.ToString();
ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
}
public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
{
this.Endpoint.Name = endpointConfiguration.ToString();
ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
}
public MyFirstSOAPInterfaceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress)
{
}
public System.Threading.Tasks.Task<string> getHelloWorldAsStringAsync(string arg0)
{
return base.Channel.getHelloWorldAsStringAsync(arg0);
}
public System.Threading.Tasks.Task<long> getDaysBetweenDatesAsync(string arg0, string arg1)
{
return base.Channel.getDaysBetweenDatesAsync(arg0, arg1);
}
public virtual System.Threading.Tasks.Task OpenAsync()
{
return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndOpen));
}
private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration)
{
if ((endpointConfiguration == EndpointConfiguration.MyFirstWSPort))
{
System.ServiceModel.BasicHttpBinding result = new System.ServiceModel.BasicHttpBinding();
result.MaxBufferSize = int.MaxValue;
result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
result.MaxReceivedMessageSize = int.MaxValue;
result.AllowCookies = true;
return result;
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
}
private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration)
{
if ((endpointConfiguration == EndpointConfiguration.MyFirstWSPort))
{
return new System.ServiceModel.EndpointAddress("http://localhost:7779/ws/first");
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
}
private static System.ServiceModel.Channels.Binding GetDefaultBinding()
{
return MyFirstSOAPInterfaceClient.GetBindingForEndpoint(EndpointConfiguration.MyFirstWSPort);
}
private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
{
return MyFirstSOAPInterfaceClient.GetEndpointAddress(EndpointConfiguration.MyFirstWSPort);
}
public enum EndpointConfiguration
{
MyFirstWSPort,
}
}
}

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.ServiceModel.Duplex" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Http" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Security" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Federation" Version="4.10.*" />
</ItemGroup>
</Project>

View file

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IS_Lab5_SOAPCS", "IS_Lab5_SOAPCS.csproj", "{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

12
IS_Lab5_SOAPCS/Program.cs Normal file
View file

@ -0,0 +1,12 @@
// See https://aka.ms/new-console-template for more information
using IS_Lab5_SOAPCS.MyFirstWSService;
Console.WriteLine("My First SOAP Client!");
var client = new MyFirstSOAPInterfaceClient();
var text = await client.getHelloWorldAsStringAsync("Karol");
var days = await client.getDaysBetweenDatesAsync("01 03 2025", "08 03 2025");
Console.WriteLine(text);
Console.WriteLine($"Ilosc dni: {days}");

View file

@ -0,0 +1,815 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"IS_Lab5_SOAPCS/1.0.0": {
"dependencies": {
"System.ServiceModel.Duplex": "4.10.3",
"System.ServiceModel.Federation": "4.10.3",
"System.ServiceModel.Http": "4.10.3",
"System.ServiceModel.NetTcp": "4.10.3",
"System.ServiceModel.Security": "4.10.3"
},
"runtime": {
"IS_Lab5_SOAPCS.dll": {}
}
},
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
"runtime": {
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.CSharp/4.5.0": {},
"Microsoft.Extensions.ObjectPool/5.0.10": {
"runtime": {
"lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.1021.41022"
}
}
},
"Microsoft.IdentityModel.Logging/6.8.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
"assemblyVersion": "6.8.0.0",
"fileVersion": "6.8.0.11012"
}
}
},
"Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": {
"dependencies": {
"Microsoft.IdentityModel.Tokens.Saml": "6.8.0",
"Microsoft.IdentityModel.Xml": "6.8.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.dll": {
"assemblyVersion": "6.8.0.0",
"fileVersion": "6.8.0.11018"
}
}
},
"Microsoft.IdentityModel.Tokens/6.8.0": {
"dependencies": {
"Microsoft.CSharp": "4.5.0",
"Microsoft.IdentityModel.Logging": "6.8.0",
"System.Security.Cryptography.Cng": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
"assemblyVersion": "6.8.0.0",
"fileVersion": "6.8.0.11012"
}
}
},
"Microsoft.IdentityModel.Tokens.Saml/6.8.0": {
"dependencies": {
"Microsoft.IdentityModel.Tokens": "6.8.0",
"Microsoft.IdentityModel.Xml": "6.8.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": {
"assemblyVersion": "6.8.0.0",
"fileVersion": "6.8.0.11012"
}
}
},
"Microsoft.IdentityModel.Xml/6.8.0": {
"dependencies": {
"Microsoft.IdentityModel.Tokens": "6.8.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": {
"assemblyVersion": "6.8.0.0",
"fileVersion": "6.8.0.11012"
}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Formats.Asn1/6.0.0": {},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Numerics.Vectors/4.5.0": {},
"System.Private.ServiceModel/4.10.3": {
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "5.0.0",
"Microsoft.Extensions.ObjectPool": "5.0.10",
"System.Numerics.Vectors": "4.5.0",
"System.Reflection.DispatchProxy": "4.7.1",
"System.Security.Cryptography.Xml": "6.0.1",
"System.Security.Principal.Windows": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/System.Private.ServiceModel.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
},
"resources": {
"lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": {
"locale": "cs"
},
"lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": {
"locale": "de"
},
"lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": {
"locale": "es"
},
"lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": {
"locale": "fr"
},
"lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": {
"locale": "it"
},
"lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": {
"locale": "ja"
},
"lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": {
"locale": "ko"
},
"lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": {
"locale": "pl"
},
"lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": {
"locale": "pt-BR"
},
"lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": {
"locale": "ru"
},
"lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": {
"locale": "tr"
},
"lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": {
"locale": "zh-Hans"
},
"lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": {
"locale": "zh-Hant"
}
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.DispatchProxy/4.7.1": {},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Security.AccessControl/6.0.0": {},
"System.Security.Cryptography.Cng/4.5.0": {},
"System.Security.Cryptography.Pkcs/6.0.1": {
"dependencies": {
"System.Formats.Asn1": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.522.21309"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.522.21309"
}
}
},
"System.Security.Cryptography.Xml/6.0.1": {
"dependencies": {
"System.Security.AccessControl": "6.0.0",
"System.Security.Cryptography.Pkcs": "6.0.1"
},
"runtime": {
"lib/net6.0/System.Security.Cryptography.Xml.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.822.36306"
}
}
},
"System.Security.Principal.Windows/5.0.0": {},
"System.ServiceModel.Duplex/4.10.3": {
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
},
"runtime": {
"lib/net6.0/System.ServiceModel.Duplex.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
}
},
"System.ServiceModel.Federation/4.10.3": {
"dependencies": {
"Microsoft.IdentityModel.Protocols.WsTrust": "6.8.0",
"System.ServiceModel.Http": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3",
"System.ServiceModel.Security": "4.10.3"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.Federation.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
},
"resources": {
"lib/netstandard2.0/cs/System.ServiceModel.Federation.resources.dll": {
"locale": "cs"
},
"lib/netstandard2.0/de/System.ServiceModel.Federation.resources.dll": {
"locale": "de"
},
"lib/netstandard2.0/es/System.ServiceModel.Federation.resources.dll": {
"locale": "es"
},
"lib/netstandard2.0/fr/System.ServiceModel.Federation.resources.dll": {
"locale": "fr"
},
"lib/netstandard2.0/it/System.ServiceModel.Federation.resources.dll": {
"locale": "it"
},
"lib/netstandard2.0/ja/System.ServiceModel.Federation.resources.dll": {
"locale": "ja"
},
"lib/netstandard2.0/ko/System.ServiceModel.Federation.resources.dll": {
"locale": "ko"
},
"lib/netstandard2.0/pl/System.ServiceModel.Federation.resources.dll": {
"locale": "pl"
},
"lib/netstandard2.0/pt-BR/System.ServiceModel.Federation.resources.dll": {
"locale": "pt-BR"
},
"lib/netstandard2.0/ru/System.ServiceModel.Federation.resources.dll": {
"locale": "ru"
},
"lib/netstandard2.0/tr/System.ServiceModel.Federation.resources.dll": {
"locale": "tr"
},
"lib/netstandard2.0/zh-Hans/System.ServiceModel.Federation.resources.dll": {
"locale": "zh-Hans"
},
"lib/netstandard2.0/zh-Hant/System.ServiceModel.Federation.resources.dll": {
"locale": "zh-Hant"
}
}
},
"System.ServiceModel.Http/4.10.3": {
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
},
"runtime": {
"lib/net6.0/System.ServiceModel.Http.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
}
},
"System.ServiceModel.NetTcp/4.10.3": {
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
},
"runtime": {
"lib/net6.0/System.ServiceModel.NetTcp.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
}
},
"System.ServiceModel.Primitives/4.10.3": {
"dependencies": {
"System.Private.ServiceModel": "4.10.3"
},
"runtime": {
"lib/net6.0/System.ServiceModel.Primitives.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
},
"lib/net6.0/System.ServiceModel.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.1000.323.51101"
}
}
},
"System.ServiceModel.Security/4.10.3": {
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
},
"runtime": {
"lib/net6.0/System.ServiceModel.Security.dll": {
"assemblyVersion": "4.10.3.0",
"fileVersion": "4.1000.323.51101"
}
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.RegularExpressions/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks.Extensions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Xml.ReaderWriter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Extensions": "4.3.0"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
}
}
},
"libraries": {
"IS_Lab5_SOAPCS/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
"path": "microsoft.bcl.asyncinterfaces/5.0.0",
"hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512"
},
"Microsoft.CSharp/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"path": "microsoft.csharp/4.5.0",
"hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
},
"Microsoft.Extensions.ObjectPool/5.0.10": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==",
"path": "microsoft.extensions.objectpool/5.0.10",
"hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512"
},
"Microsoft.IdentityModel.Logging/6.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
"path": "microsoft.identitymodel.logging/6.8.0",
"hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KiRRp/pAtbJtyK7wPIiUW1FMna1T0IEizDWFL9R0C60jk6t66U95fo0SPl3ztOkmnS4v7uF1zWjfAEgZ/i+Zhg==",
"path": "microsoft.identitymodel.protocols.wstrust/6.8.0",
"hashPath": "microsoft.identitymodel.protocols.wstrust.6.8.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Tokens/6.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
"path": "microsoft.identitymodel.tokens/6.8.0",
"hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Tokens.Saml/6.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zRbtJ7Kvr2RMcXi4g4ta3og/wX0GZpLGfb/h7aohwNAaUtCooRpx7Gl8Cv7tn4FDAp6MZwBQL/w0jMeyVTkjPQ==",
"path": "microsoft.identitymodel.tokens.saml/6.8.0",
"hashPath": "microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Xml/6.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-p2DOCNVVOQpxfx9c3FW0kJve2jAAZB/zecWsi9S5fpznbJ/VcH0zxKdz6wIXjDQgwf2xg/u/k58uHiS/o+0qiA==",
"path": "microsoft.identitymodel.xml/6.8.0",
"hashPath": "microsoft.identitymodel.xml.6.8.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Formats.Asn1/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
"path": "system.formats.asn1/6.0.0",
"hashPath": "system.formats.asn1.6.0.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Numerics.Vectors/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
"path": "system.numerics.vectors/4.5.0",
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
},
"System.Private.ServiceModel/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BcUV7OERlLqGxDXZuIyIMMmk1PbqBblLRbAoigmzIUx/M8A+8epvyPyXRpbgoucKH7QmfYdQIev04Phx2Co08A==",
"path": "system.private.servicemodel/4.10.3",
"hashPath": "system.private.servicemodel.4.10.3.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.DispatchProxy/4.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==",
"path": "system.reflection.dispatchproxy/4.7.1",
"hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Security.AccessControl/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
"path": "system.security.accesscontrol/6.0.0",
"hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"path": "system.security.cryptography.cng/4.5.0",
"hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
},
"System.Security.Cryptography.Pkcs/6.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
"path": "system.security.cryptography.pkcs/6.0.1",
"hashPath": "system.security.cryptography.pkcs.6.0.1.nupkg.sha512"
},
"System.Security.Cryptography.Xml/6.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==",
"path": "system.security.cryptography.xml/6.0.1",
"hashPath": "system.security.cryptography.xml.6.0.1.nupkg.sha512"
},
"System.Security.Principal.Windows/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
"path": "system.security.principal.windows/5.0.0",
"hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
},
"System.ServiceModel.Duplex/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IZ8ZahvTenWML7/jGUXSCm6jHlxpMbcb+Hy+h5p1WP9YVtb+Er7FHRRGizqQMINEdK6HhWpD6rzr5PdxNyusdg==",
"path": "system.servicemodel.duplex/4.10.3",
"hashPath": "system.servicemodel.duplex.4.10.3.nupkg.sha512"
},
"System.ServiceModel.Federation/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VFQgE+XFdUXvxShtdQwNJ0AxfYr0ZVS0TlR3yRwCZxtcRPD0rnkSNfTbIiLxjH0j+O+IrtNZh9EDAQCLEiSNMA==",
"path": "system.servicemodel.federation/4.10.3",
"hashPath": "system.servicemodel.federation.4.10.3.nupkg.sha512"
},
"System.ServiceModel.Http/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hodkn0rPTYmoZ9EIPwcleUrOi1gZBPvU0uFvzmJbyxl1lIpVM5GxTrs/pCETStjOXCiXhBDoZQYajquOEfeW/w==",
"path": "system.servicemodel.http/4.10.3",
"hashPath": "system.servicemodel.http.4.10.3.nupkg.sha512"
},
"System.ServiceModel.NetTcp/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tP7GN7ehqSIQEz7yOJEtY8ziTpfavf2IQMPKa7r9KGQ75+uEW6/wSlWez7oKQwGYuAHbcGhpJvdG6WoVMKYgkw==",
"path": "system.servicemodel.nettcp/4.10.3",
"hashPath": "system.servicemodel.nettcp.4.10.3.nupkg.sha512"
},
"System.ServiceModel.Primitives/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aNcdry95wIP1J+/HcLQM/f/AA73LnBQDNc2uCoZ+c1//KpVRp8nMZv5ApMwK+eDNVdCK8G0NLInF+xG3mfQL+g==",
"path": "system.servicemodel.primitives/4.10.3",
"hashPath": "system.servicemodel.primitives.4.10.3.nupkg.sha512"
},
"System.ServiceModel.Security/4.10.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vqelKb7DvP2inb6LDJ5Igi8wpOYdtLXn5luDW5qEaqkV2sYO1pKlVYBpr6g6m5SevzbdZlVNu67dQiD/H6EdGQ==",
"path": "system.servicemodel.security/4.10.3",
"hashPath": "system.servicemodel.security.4.10.3.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View file

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View file

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("IS_Lab5_SOAPCS")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("IS_Lab5_SOAPCS")]
[assembly: System.Reflection.AssemblyTitleAttribute("IS_Lab5_SOAPCS")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Wygenerowane przez klasę WriteCodeFragment programu MSBuild.

View file

@ -0,0 +1 @@
dc6c0a0801c9410daedeed6064ee8f38697c3f402e7e9bea854f03be7587316c

View file

@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = IS_Lab5_SOAPCS
build_property.ProjectDir = C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View file

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View file

@ -0,0 +1 @@
7c4b84659f3b40b2d61bc57995c081b984198a22a11b6e04f0873eaeb7355aab

View file

@ -0,0 +1,60 @@
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.exe
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.deps.json
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.runtimeconfig.json
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.pdb
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.Extensions.ObjectPool.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.WsTrust.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.Saml.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Xml.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Private.ServiceModel.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Security.Cryptography.Pkcs.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Security.Cryptography.Xml.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Duplex.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Federation.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Http.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.NetTcp.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Primitives.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Security.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\cs\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\de\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\es\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\fr\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\it\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ja\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ko\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pl\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pt-BR\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ru\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\tr\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hans\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hant\System.Private.ServiceModel.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\cs\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\de\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\es\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\fr\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\it\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ja\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ko\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pl\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pt-BR\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ru\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\tr\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hans\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hant\System.ServiceModel.Federation.resources.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.AssemblyReference.cache
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.AssemblyInfoInputs.cache
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.AssemblyInfo.cs
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.CoreCompileInputs.cache
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.CopyComplete
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\refint\IS_Lab5_SOAPCS.dll
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.pdb
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.genruntimeconfig.cache
C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\ref\IS_Lab5_SOAPCS.dll

Binary file not shown.

View file

@ -0,0 +1 @@
8b4a27f23390c6497b9862973ad1fd6e379ab134f54245791a16e870d62ff573

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,83 @@
{
"format": 1,
"restore": {
"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj": {}
},
"projects": {
"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj",
"projectName": "IS_Lab5_SOAPCS",
"projectPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj",
"packagesPath": "C:\\Users\\nano\\.nuget\\packages\\",
"outputPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\nano\\AppData\\Roaming\\NuGet\\NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"System.ServiceModel.Duplex": {
"target": "Package",
"version": "[4.10.*, )"
},
"System.ServiceModel.Federation": {
"target": "Package",
"version": "[4.10.*, )"
},
"System.ServiceModel.Http": {
"target": "Package",
"version": "[4.10.*, )"
},
"System.ServiceModel.NetTcp": {
"target": "Package",
"version": "[4.10.*, )"
},
"System.ServiceModel.Security": {
"target": "Package",
"version": "[4.10.*, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Users\\nano\\.dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\nano\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\nano\.nuget\packages\" />
</ItemGroup>
</Project>

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,55 @@
{
"version": 2,
"dgSpecHash": "msHPQb0LSrlx42TAMItE2lsyR4YKjKj/kHCUZEM72U0KaBRMgJ3440HDncpPn4IlTlu0N0E3Yt4ntx+8lbnnCg==",
"success": true,
"projectFilePath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj",
"expectedPackageFiles": [
"C:\\Users\\nano\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.protocols.wstrust\\6.8.0\\microsoft.identitymodel.protocols.wstrust.6.8.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.tokens.saml\\6.8.0\\microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.xml\\6.8.0\\microsoft.identitymodel.xml.6.8.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.private.servicemodel\\4.10.3\\system.private.servicemodel.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.1\\system.security.cryptography.pkcs.6.0.1.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.duplex\\4.10.3\\system.servicemodel.duplex.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.federation\\4.10.3\\system.servicemodel.federation.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.http\\4.10.3\\system.servicemodel.http.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.nettcp\\4.10.3\\system.servicemodel.nettcp.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.primitives\\4.10.3\\system.servicemodel.primitives.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.security\\4.10.3\\system.servicemodel.security.4.10.3.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\nano\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View file

@ -0,0 +1 @@
"restore":{"projectUniqueName":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj","projectName":"IS_Lab5_SOAPCS","projectPath":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj","outputPath":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"System.ServiceModel.Duplex":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Federation":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Http":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.NetTcp":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Security":{"target":"Package","version":"[4.10.*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\nano\\.dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"}}

View file

@ -0,0 +1 @@
17414251413046980

View file

@ -0,0 +1 @@
17414251530941259

29
MyFirstSoapServer/.gitignore vendored Normal file
View file

@ -0,0 +1,29 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

8
MyFirstSoapServer/.idea/.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View file

@ -0,0 +1,10 @@
<component name="libraryTable">
<library name="javax.jws.api" type="repository">
<properties maven-id="javax.jws:javax.jws-api:1.1" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/javax/jws/javax.jws-api/1.1/javax.jws-api-1.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View file

@ -0,0 +1,14 @@
<component name="libraryTable">
<library name="javax.xml.ws.jaxws.api" type="repository">
<properties maven-id="javax.xml.ws:jaxws-api:2.3.1" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/ws/jaxws-api/2.3.1/jaxws-api-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View file

@ -0,0 +1,31 @@
<component name="libraryTable">
<library name="sun.xml.ws.jaxws.rt" type="repository">
<properties maven-id="com.sun.xml.ws:jaxws-rt:2.3.1" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/sun/xml/ws/jaxws-rt/2.3.1/jaxws-rt-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/ws/jaxws-api/2.3.1/jaxws-api-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/jws/javax.jws-api/1.1/javax.jws-api-1.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/glassfish/jaxb/jaxb-runtime/2.3.1/jaxb-runtime-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/glassfish/jaxb/txw2/2.3.1/txw2-2.3.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/istack/istack-commons-runtime/3.0.7/istack-commons-runtime-3.0.7.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/xml/ws/policy/2.7.5/policy-2.7.5.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/glassfish/gmbal/gmbal-api-only/3.1.0-b001/gmbal-api-only-3.1.0-b001.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/jvnet/staxex/stax-ex/1.8/stax-ex-1.8.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/xml/stream/buffer/streambuffer/1.5.6/streambuffer-1.5.6.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/jvnet/mimepull/mimepull/1.9.10/mimepull-1.9.10.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/xml/fastinfoset/FastInfoset/1.2.15/FastInfoset-1.2.15.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/glassfish/ha/ha-api/3.1.9/ha-api-3.1.9.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/sun/xml/messaging/saaj/saaj-impl/1.5.0/saaj-impl-1.5.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/woodstox/woodstox-core/5.1.0/woodstox-core-5.1.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/codehaus/woodstox/stax2-api/4.1/stax2-api-4.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="openjdk-23" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/MyFirstSoapServer.iml" filepath="$PROJECT_DIR$/MyFirstSoapServer.iml" />
</modules>
</component>
</project>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="javax.jws.api" level="project" />
<orderEntry type="library" name="javax.xml.ws.jaxws.api" level="project" />
<orderEntry type="library" name="sun.xml.ws.jaxws.rt" level="project" />
</component>
</module>

View file

@ -0,0 +1,13 @@
package com.soapsoapsoap;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@WebService
@SOAPBinding(style = Style.RPC)
public interface MyFirstSOAPInterface{
@WebMethod String getHelloWorldAsString(String name);
@WebMethod long getDaysBetweenDates(String date1,String date2);
}

View file

@ -0,0 +1,8 @@
package com.soapsoapsoap;
import javax.xml.ws.Endpoint;
public class MyFirstSOAPPublisher{
public static void main(String[] args) {
Endpoint.publish("http://localhost:7779/ws/first", new MyFirstWS());
}
}

View file

@ -0,0 +1,26 @@
package com.soapsoapsoap;
import javax.jws.WebService;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.time.temporal.ChronoUnit;
@WebService(endpointInterface = "com.soapsoapsoap.MyFirstSOAPInterface")
public class MyFirstWS implements MyFirstSOAPInterface{
public String getHelloWorldAsString(String nazwa) {
String message = "Witaj " + nazwa + "!";
return message;
}
public long getDaysBetweenDates(String date1, String date2) {
long numberOfDays = 0;
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("dd MM yyyy");
try {
LocalDate tempdate1 = LocalDate.parse(date1, dtf);
LocalDate tempdate2 = LocalDate.parse(date2, dtf);
numberOfDays = ChronoUnit.DAYS.between(tempdate1, tempdate2);
} catch (Exception e) {
e.printStackTrace();
}
return numberOfDays;
}
}