Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Indigo

Vista - Hosting WCF Service in IIS using Jun CTS

 
 
Old 07-11-2006   #1 (permalink)
=?Utf-8?B?TWFoZXNo?=


 
 

Hosting WCF Service in IIS using Jun CTS

Dear All,
I am trying to host WCF Service in IIS.
It is a simple MathService My Web.Config file is as below :

<configuration>
<system.serviceModel>
<services>
<service name ="TheMathService.MathClass,TheMathService">
<endpoint address =""
binding ="basicHttpBinding"
contract="TheMathService.IMath,TheMathService"/>
</service>
</services>
</system.serviceModel>
<system.web>

<compilation debug="true" />

</system.web>
</configuration>

now when I view the service in browser with following link

http://localhost/MyVd/Service.svc

I get the following error

Service 'TheMathService.MathClass' has zero application (non-infrastructure)
endpoints. This might be because no configuration file was found for your
application, or because no service element matching the service name could be
found in the configuration file, or because no endpoints were defined in the
service element.


If anybody has the solution please let me know.

REgards
Mahesh


My System SpecsSystem Spec
Old 07-11-2006   #2 (permalink)
=?Utf-8?B?TWFoZXNo?=


 
 

RE: Hosting WCF Service in IIS using Jun CTS



"Mahesh" wrote:

> Dear All,
> I am trying to host WCF Service in IIS.
> It is a simple MathService My Web.Config file is as below :
>
> <configuration>
> <system.serviceModel>
> <services>
> <service name ="TheMathService.MathClass,TheMathService">
> <endpoint address =""
> binding ="basicHttpBinding"
> contract="TheMathService.IMath,TheMathService"/>
> </service>
> </services>
> </system.serviceModel>
> <system.web>
>
> <compilation debug="true" />
>
> </system.web>
> </configuration>
>
> now when I view the service in browser with following link
>
> http://localhost/MyVd/Service.svc
>
> I get the following error
>
> Service 'TheMathService.MathClass' has zero application (non-infrastructure)
> endpoints. This might be because no configuration file was found for your
> application, or because no service element matching the service name could be
> found in the configuration file, or because no endpoints were defined in the
> service element.
>
>
> If anybody has the solution please let me know.
>
> REgards
> Mahesh
>

My System SpecsSystem Spec
Old 07-14-2006   #3 (permalink)
=?Utf-8?B?QW5pbGt1bWFyIFZL?=


 
 

RE: Hosting WCF Service in IIS using Jun CTS

Hi Mahesh,
1. Build your WCF service class library project into the \WCFServiceProj\bin
folder.
2. In IIS, point to the \WCFServiceProj folder and create the virtual
directory.
3. Give Execute permission to this Virtual Dir.
4. Add the .svc dile in the \WCFServiceProj folder with the foll. code.
<%@ServiceHost language=c# Debug="true" Service="NameSpace.ServiceClassName"
%>
<%@Assembly Name="AssemblyName" %>

You should be able to view the service test screen, assuming that the
attributes and namespaces used are as per the Beta 2 changes.

Anil

"Mahesh" wrote:

>
>
> "Mahesh" wrote:
>
> > Dear All,
> > I am trying to host WCF Service in IIS.
> > It is a simple MathService My Web.Config file is as below :
> >
> > <configuration>
> > <system.serviceModel>
> > <services>
> > <service name ="TheMathService.MathClass,TheMathService">
> > <endpoint address =""
> > binding ="basicHttpBinding"
> > contract="TheMathService.IMath,TheMathService"/>
> > </service>
> > </services>
> > </system.serviceModel>
> > <system.web>
> >
> > <compilation debug="true" />
> >
> > </system.web>
> > </configuration>
> >
> > now when I view the service in browser with following link
> >
> > http://localhost/MyVd/Service.svc
> >
> > I get the following error
> >
> > Service 'TheMathService.MathClass' has zero application (non-infrastructure)
> > endpoints. This might be because no configuration file was found for your
> > application, or because no service element matching the service name could be
> > found in the configuration file, or because no endpoints were defined in the
> > service element.
> >
> >
> > If anybody has the solution please let me know.
> >
> > REgards
> > Mahesh
> >

My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
top web hosting service hosting reviews rank Virtual Server


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46