TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Tulasi
NA
1.1k
212.8k
Hosting WCF In WAS
Dec 3 2013 6:49 AM
HI all,
I created one Wcf Application and hosted in IIS8
I configured the web.config as shown below
<service name="MyWcfService">
<endpoint address="" binding="wsHttpBinding" contract="IService1">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="" binding="netTcpBinding" contract="IService1">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"></endpoint>
</service>
</services>
Consuming wshttpBinding
http://localhost/WcfServiceApplication/Service1.svc
what will be the address to consume net.tcp binding
If you didnt understand the question plz let me know
Reply
Answers (
0
)
I need to pass xml data/ file as parameter in rest service
401 rest service: works in browser, error from code