c# - WCF Services across servers -
ok guys. more of "can done?" question opposed "how do this?"
i have wcf project multiple services , lining fine. 2 of them wrapped in windows service installers go on 2 different servers. possible call method in 1 service other service if on 2 separate machines? or have use callback scenario have seen used before?
i appreciate advice or ideas. thanks.
this depends on binding using , firewall / network route rules on , between 2 machines.
if using namedpipebinding, answer no because named pipes bound machine. however, if using of other bindings webhttp, basichttp, etc should ok. beauty of wcf should able spin service endpoint using different binding if necessary -- if using named pipes, should pretty straight forward swap out different binding.
a wcf service can client wcf service.
Comments
Post a Comment