Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
error message:System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at https://partners.bitdefender.com/rpc-soap that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A blocking operation was interrupted by a call to WSACancelBlockingCall 50.97.42.201:443 at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) --- End of inner exception stack trace --- at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) at System.Net.HttpWebRequest.GetRequestStream() at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream() --- End of inner exception stack trace --- Server stack trace: at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream() at System.ServiceModel.Channels.HttpOutput.Send(TimeSpan timeout) at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout) at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout) at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) Exception rethrown at [0]: at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) at ServiceReference1.BitDefenderPortType.generateKeys(keysInputArray params) at ServiceReference1.BitDefenderPortTypeClient.generateKeys(keysInputArray params) in c:\Users\Username\AppData\Local\Temp\Temporary ASP.NET Files\website2\2ddba6a3\807ea5eb\App_WebReferences.r6qebbe1.0.cs:line 3001 at _Default.GenerateGetKeys() in d:\WebSite2\Default.aspx.cs:line 81
Posted
Comments
Jameel VM 28-Oct-14 2:07am    
please post your WCF configuration details and Contract code
samip rot 28-Oct-14 7:37am    
<system.servicemodel>
<bindings>
<basichttpbinding>
<binding name="BitDefenderBinding">
<security mode="Transport">

<binding name="BitDefenderBinding1">


<client>
<endpoint address="https://partners.bitdefender.com:443/rpc-soap" binding="basicHttpBinding" bindingconfiguration="BitDefenderBinding" contract="ServiceReference1.BitDefenderPortType" name="BitDefenderPort">

[no name] 28-Oct-14 2:13am    
Is your WCF Service running ? what is the config, net tcp or http or other ?
First check that your service is running. This error occurs when the request service could not be found.
samip rot 28-Oct-14 7:37am    
how to find if wcf service is running?
Raul Iloc 29-Oct-14 2:15am    
Did you manage to solve your issue by using the suggestions from my solution?

1 solution

1.This WCF exception is thrown because your remote endpoint (in your case seems to be the WCF service) is down (not running) or cannot be reached (your WCF settings like service URL are not OK).

2.You can find details about this error in the next MSDN link.[^]

3.So first you should check that your service is running, then in your visual studio, remove then add again the reference to your WCF service (this should fix the settings from your client) then try to test again.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900