please urgent help required,
below is my WCF Servicemodel. If i put blank address in endpoint, i am able to fetch data with wcf from silverlight application locally, not from remote pc.
and in below configuration i am not able to connect locally as well as remotely. i got "The remote server returned an error: NotFound."
i used ServiceModelReg.exe also to register with my IIS
please help....
<system.serviceModel>
<services>
<service name="DBUtilitiesService.DBUtilities" behaviorConfiguration="DBUtilitiesService.DBUtilitiesBehavior">
<!-- Service Endpoints -->
<endpoint address="http://192.168.102.34/DBUtilitiesService" binding="basicHttpBinding" contract="DBUtilitiesService.IDBUtilities">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="DBUtilitiesService.DBUtilitiesBehavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
servicereference.clientconfig file
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IDBUtilities" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address=http://192.168.102.34/DBUtilitiesService
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IDBUtilities"
contract="DBUtilitiesReference.IDBUtilities" name="BasicHttpBinding_IDBUtilities" />
</client>
</system.serviceModel>
</configuration>
waiting for reply.............................