mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 18:22:49 +08:00

* test for issue * added service fabric sample * working!! * changed sample naming to Ocelot * removed files we dont need * removed files we dont need * updated sample gitignore * updated sample gitignore * getting ocelot to work with service fabric using the reverse proxy * #238 - added support for service fabric discovery provider, proxies requests through naming service, wont work on partioned service fabric services yet * #238 - Manually tested service fabric using sample..all seems OK. Made some changes after testing, added docs * #238 - added docs for servic fabric
40 lines
2.1 KiB
XML
40 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ApplicationManifest ApplicationTypeName="OcelotServiceApplicationType"
|
|
ApplicationTypeVersion="1.0.0"
|
|
xmlns="http://schemas.microsoft.com/2011/01/fabric"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<Parameters>
|
|
<Parameter Name="OcelotApplicationService_InstanceCount" DefaultValue="1" />
|
|
<Parameter Name="OcelotApplicationApiGateway_InstanceCount" DefaultValue="1" />
|
|
</Parameters>
|
|
<!-- Import the ServiceManifest from the ServicePackage. The ServiceManifestName and ServiceManifestVersion
|
|
should match the Name and Version attributes of the ServiceManifest element defined in the
|
|
ServiceManifest.xml file. -->
|
|
<ServiceManifestImport>
|
|
<ServiceManifestRef ServiceManifestName="OcelotApplicationServicePkg" ServiceManifestVersion="1.0.0" />
|
|
<ConfigOverrides />
|
|
</ServiceManifestImport>
|
|
<ServiceManifestImport>
|
|
<ServiceManifestRef ServiceManifestName="OcelotApplicationApiGatewayPkg" ServiceManifestVersion="1.0.0" />
|
|
<ConfigOverrides />
|
|
</ServiceManifestImport>
|
|
<DefaultServices>
|
|
<!-- The section below creates instances of service types, when an instance of this
|
|
application type is created. You can also create one or more instances of service type using the
|
|
ServiceFabric PowerShell module.
|
|
|
|
The attribute ServiceTypeName below must match the name defined in the imported ServiceManifest.xml file. -->
|
|
<Service Name="OcelotApplicationService">
|
|
<StatelessService ServiceTypeName="OcelotApplicationServiceType" InstanceCount="[OcelotApplicationService_InstanceCount]">
|
|
<SingletonPartition />
|
|
</StatelessService>
|
|
</Service>
|
|
<Service Name="OcelotApplicationApiGateway">
|
|
<StatelessService ServiceTypeName="OcelotApplicationApiGatewayType" InstanceCount="[OcelotApplicationApiGateway_InstanceCount]">
|
|
<SingletonPartition />
|
|
</StatelessService>
|
|
</Service>
|
|
</DefaultServices>
|
|
</ApplicationManifest>
|