asp.net - Remote name could not be resolved . Error with WCF Services -
i have 2 asp.net web applications talking each other through wcf. 2 applications developed in 2 different localhosts. once developement successful, published them same test server. when 1 of application trying call service in applciation .. throwing error..remote name not resolved. can 1 suggest me how resolve this?
as @dhawalk mentioned, confgs helpful.
generally, error means "service address" wrong - check value of client's endpoint. default, you'll find in client's app.config, in section of servicemodel.
something (for basichttpbinding)
. . . <client> <endpoint address="http://your_server_name/service_name" ... . . . ensure can access url "client's" application
Comments
Post a Comment