@vipullag-MSFT thanks for getting back to me. No firewall issues and I tried to add additional listeners like this:
<Endpoints>
<Endpoint Name="ServiceEndpointV2" />
<!-- This endpoint is used by the communication listener to obtain the port on which to
listen. Please note that if your service is partitioned, this port is shared with
replicas of different partitions that are placed in your code. -->
<Endpoint Name="TrinityProtocolEndpoint" Protocol="tcp" Port="8808"/>
<Endpoint Name="TrinityProtocolEndpointB" Protocol="tcp" Port="8809"/>
<Endpoint Name="TrinityProtocolEndpointC" Protocol="tcp" Port="8810"/>
<Endpoint Name="TrinityProtocolEndpointD" Protocol="tcp" Port="8811"/>
<Endpoint Name="TrinityHttpEndpoint" Protocol="tcp" />
<!-- This endpoint is used by the replicator for replicating the state of your service.
This endpoint is configured through a ReplicatorSettings config section in the Settings.xml
file under the ConfigPackage. -->
<Endpoint Name="ReplicatorEndpoint" />
<!-- This endpoint is used by the trinity-over-remoting proxy, running on fabric service remoting.
Remove this, and the reference to Trinity.ServiceFabric.Remoting, if you do not want to enable
this feature. -->
<Endpoint Name="TrinityServiceFabricRemotingEndpoint" />
</Endpoints>
This does not work without me making changes to our customer Naming Service so I will need to make those changes; it would also seem that I'll need to do some more port management so as to care for the collision of port assignments.
Still testing!