简体   繁体   English

这是什么类型的服务架构?

[英]what type of service architecture is this?

I am new to silverlight and I have a general question. 我是银光的新手,我有一个普遍的问题。 I created a new silverlight project and added a "silverlight enabled wcf service" to it. 我创建了一个新的silverlight项目,并为其添加了“支持Silverlight的wcf服务”。 I created the service proxy in the silverlight project and I am able to hit the .svc file with no errors. 我在silverlight项目中创建了服务代理,我能够在没有错误的情况下点击.svc文件。

My question is, what kind of service architecture is this?? 我的问题是,这是什么样的服务架构? Its not showing up in IIS so its not hosted in IIS and its not a self hosted windows based service. 它没有出现在IIS中,因此它不在IIS中托管,也不是一个自托管的基于Windows的服务。 Hows does this work? 怎么做这个工作?

Are there limitations to this compared to like a "self hosted wcf service" or an "IIS hosted wcf service"? 与“自托管的wcf服务”或“IIS托管的wcf服务”相比,是否存在局限性?

Thanks in advance! 提前致谢!

Below is my endpoint configuration for the service: 以下是我对该服务的端点配置:

<endpoint address="https://localhost/SilverBadger.Web/Services/DataAccessService.svc"
                      binding="customBinding" 
                      bindingConfiguration="CustomBinding_DataAccessService"
                      contract="DataAccessService.DataAccessService" 
                      name="CustomBinding_DataAccessService" />

That service is hosted in Cassini, Visual Studio's built in development server. 该服务托管在Visual Studio的内置开发服务器Cassini中。 It's just launched along with your project. 它刚刚与您的项目一起推出。 It can be hosted in IIS as-is, or modified to run as a self-hosted service. 它可以按原样托管在IIS中,也可以修改为作为自托管服务运行。

if you are hitting .svc... arent you at IIS... 如果你打击.svc ...不是你在IIS ...
.svc extensions means service hosting for IIS .svc扩展意味着IIS的服务托管

maybe it is localhost 也许是localhost

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 服务器服务和GUI的良好架构是什么? - What is a good architecture for a server service and gui? 这是什么类型的服务? - What type of service is this? N层架构中的服务层和业务层之间有什么区别 - What is difference between a service Layer and Business Layer in N layered architecture 清洁体系结构中的“用例交互器”和“服务”之间有何区别? - What is the differece between a 'Use Case Interactor' and a 'Service' in Clean Architecture? 具有DAL,回购,服务,API层的N层体系结构:每个层应该处理/输出什么类型的对象+验证/映射应该在哪里发生? - N-Tier architecture with DAL, Repo, Service, API layers: what type of objects should each layer deal in/out + where should validation/mapping occur? 在面向服务的体系结构中为服务调用定义方法签名的最佳实践是什么? - What is the best practice to define method signature in Service oriented architecture for service call? IoC Windows服务架构 - IoC Windows Service Architecture Webforms和脚本服务体系结构 - Webforms and Script Service Architecture 在Fail上从Service方法返回什么类型 - What type to return from a Service method on Fail Web服务响应下面的这种类型是什么? - What this type below web service response?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM