user2489504
user2489504

Reputation: 1

Coherence cache for.net client

I am trying to access a coherence cache using .net client.The cluster is already set up , all I have to do is to access the coherence cache from the client side and get the objects from the cacheservice . As of now I have the coherence dll and the client config .what else should I do ?

Upvotes: 0

Views: 1487

Answers (2)

cpurdy
cpurdy

Reputation: 1236

The link included in the other answer is a great start. Basically:

  1. You run at least one "proxy" in the cluster
  2. You configure the client to point to the proxy or proxies (or a load balancer in front of the proxies)
  3. You use the Coherence C# API in .NET and it finds the configuration and connects to proxy

Upvotes: 0

Arkadiy Verman
Arkadiy Verman

Reputation: 694

You should check the 'Developing Remote Clients for Oracle Coherence' guide, specifically client side configuration:

http://docs.oracle.com/middleware/1212/coherence/COHCG/gs_configextend.htm#BEBEGIAE

Upvotes: 2

Related Questions