wcf referencing service from subdomain to subdomain

Discussion in 'DNS/Domain names' started by vijayknarang, Mar 24, 2013.

  1. Hi

    I have setup subdomain successfully. but i am facing one issue of wcf referencing service at subdomain.

    Currently my wcf service is hosted at http://appservice.plusvdo.com and trying to reference this in my another subdomain but giving error. i am able to reference and get data from same service at my local environment.

    I also tried to host my service at root(http://plusvdo.com) but same issue persists.

    Any help would be appreciated.
     
  2. here is binding detail from web.config for kind persual

    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="BasicHttpBinding_Intf" closeTimeout="00:01:00"
    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
    maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
    useDefaultWebProxy="true">
    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <security mode="None">
    <transport clientCredentialType="None" proxyCredentialType="None"
    realm="" />
    <message clientCredentialType="UserName" algorithmSuite="Default" />
    </security>
    </binding>
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="http://appservice.plusvdo.com/******.svc" binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_Intf" contract="ServiceReference.I"
    name="BasicHttpBinding_Intf" />
    </client>
    </system.serviceModel>
     
  3. What is the error that you are getting when you try to use your service?
     

Share This Page