控制台应用程序使用wcf服务

时间:2013-02-05 20:16:58

标签: c# wcf console asp.net-4.0

我有一个运行良好的c#asp.net web应用程序/项目。后来我添加了一个wcf服务作为这个项目的新项目。然后我向此解决方案添加一个新的简单控制台应用程序以使用wcf。它在我的本地工作正常。 (我的本地服务器名称是A.使用 [http://A/MyProjName/wcfSendRpt.svc]或[http://localhost/MyProjName/wcfSendRpt.svc]两者都好。 然后我将我的Web应用程序(使用wcf服务)发布到实时服务器B.(B只托管这个唯一的Web应用程序。)[http://B/wcfSendRpt.svc]或[http:// localhost / wcfSendRpt。 svc]工作正常。 然后我将我的控制台应用程序部署到服务器B.(我只是将exe和配置文件复制到服务器B)。我将配置文件中的端点地址从[http://A/MyProjName/wcfSendRpt.svc]更改为[http://B/wcfSendRpt.svc],如下所示

<endpoint address="http://B/wcfSendRpt.svc" binding="basicHttpBinding" 
          bindingConfiguration="BasicHttpBinding_IwcfSendRpt"
          contract="nsSendRpt.IwcfSendRpt" name="BasicHttpBinding_IwcfSendRpt" /> 

但它不起作用。事件日志中的错误如下所示:

Unhandled Exception: System.ServiceModel.FaultException`1[System.ServiceModel.Ex
ceptionDetail]: An error occurred while executing the command definition. See th
e inner exception for details.

Server stack trace:
   at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message
 reply, MessageFault fault, String action, MessageVersion version, FaultConverte
r faultConverter)
   at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRunt
ime operation, ProxyRpc& rpc)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean on
eway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan tim
eout)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCall
Message methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage req
Msg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgDa
ta, Int32 type)
   at CAScheduledService.nsSendRpt.IwcfSendRpt.SendRpt(String statementdate)
   at CAScheduledService.Program.Main(String[] args)  

我的控制台应用程序非常简单:代码如下所示

class Program
    {
        static void Main(string[] args)
        {
            nsSendRpt.IwcfSendRptClient ss = new IwcfSendRptClient();
            string a = ss.SendRpt(System.DateTime.Now.ToString("yyyyMMdd"));
            ss.Close();
        }
    }

我需要你的帮助来解决这个问题。我在wcf中很新。我的Web应用程序中的这个wcf服务是否安静?

0 个答案:

没有答案