Click here to Skip to main content
15,886,664 members
Home / Discussions / Article Writing
   

Article Writing

 
GeneralRe: Kindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Grasshopper.iics18-Sep-12 16:56
Grasshopper.iics18-Sep-12 16:56 
GeneralRe: Kindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Grasshopper.iics18-Sep-12 17:09
Grasshopper.iics18-Sep-12 17:09 
QuestionPost Pin
Ernest Wiggins18-Sep-12 11:06
Ernest Wiggins18-Sep-12 11:06 
AnswerRe: Post Pin
Sean Ewington18-Sep-12 11:19
staffSean Ewington18-Sep-12 11:19 
GeneralRe: Post Pin
Richard MacCutchan18-Sep-12 22:07
mveRichard MacCutchan18-Sep-12 22:07 
GeneralRe: Post Pin
Sean Ewington19-Sep-12 6:19
staffSean Ewington19-Sep-12 6:19 
GeneralRe: Post Pin
Richard MacCutchan19-Sep-12 6:48
mveRichard MacCutchan19-Sep-12 6:48 
Questionproblem to use services on different pc of same network Pin
pritamk18-Sep-12 2:07
pritamk18-Sep-12 2:07 
Quote:

i hv problem to use windows services on different pc on the came network.
my confg page is



<configuration>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="WCFServiceHost_DAS.MyServiceBehavior">
                    <serviceMetadata httpGetEnabled="false" />
                    <serviceDebug includeExceptionDetailInFaults="false" />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <service behaviorConfiguration="WCFServiceHost_DAS.MyServiceBehavior"
                name="WCFServiceHost_DAS.MyService">
                <endpoint address="" binding="netTcpBinding" bindingConfiguration=""
                    name="NetTcpBindingEndpoint" contract="WCFServiceHost_DAS.IMyService">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration=""
                    name="MexTcpBindingEndpoint" contract="IMetadataExchange" />
                <host>
                    <baseAddresses>
                        <add baseAddress="net.tcp://192.168.1.18:8523/WCFDASTestService" />
                    </baseAddresses>
                </host>
                </service>
        </services>
    </system.serviceModel>
</configuration>

client config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings>
            <netTcpBinding>
                <binding name="NetTcpBindingEndpoint" closeTimeout="00:01:00"
                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                    transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
                    hostNameComparisonMode="StrongWildcard" listenBacklog="10"
                    maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
                    maxReceivedMessageSize="65536">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
                        enabled="false" />
                    <security mode="None">
                        <transport clientCredentialType="Windows"  protectionLevel="EncryptAndSign" />
                        <message clientCredentialType="Windows" />
                    </security>
                </binding>
            </netTcpBinding>
        </bindings>
        <client>
            <endpoint address="net.tcp://192.168.1.18:8523/WCFDASTestService"
                binding="netTcpBinding" bindingConfiguration="NetTcpBindingEndpoint"
                contract="ServiceReference1.IMyService" name="NetTcpBindingEndpoint">
                <identity>
                    <dns value="localhost" />
                </identity>
            </endpoint>
        </client>
    </system.serviceModel>
</configuration>

error
CommunicatioException

the socket connection was aborted
SuggestionRe: problem to use services on different pc of same network Pin
Jochen Arndt18-Sep-12 2:14
professionalJochen Arndt18-Sep-12 2:14 
Questionecf net tcp bonding Pin
pritamk18-Sep-12 2:00
pritamk18-Sep-12 2:00 
QuestionRules of Tip/Trick Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)17-Sep-12 3:00
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)17-Sep-12 3:00 
AnswerRe: Rules of Tip/Trick Pin
Sean Ewington17-Sep-12 3:49
staffSean Ewington17-Sep-12 3:49 
GeneralRe: Rules of Tip/Trick Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)17-Sep-12 4:05
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)17-Sep-12 4:05 
QuestionConfusion Pin
Richard MacCutchan16-Sep-12 7:50
mveRichard MacCutchan16-Sep-12 7:50 
AnswerRe: Confusion Pin
Sean Ewington17-Sep-12 3:47
staffSean Ewington17-Sep-12 3:47 
GeneralRe: Confusion Pin
Richard MacCutchan17-Sep-12 4:27
mveRichard MacCutchan17-Sep-12 4:27 
GeneralRe: Confusion Pin
Sean Ewington17-Sep-12 5:08
staffSean Ewington17-Sep-12 5:08 
GeneralRe: Confusion Pin
Richard MacCutchan17-Sep-12 5:40
mveRichard MacCutchan17-Sep-12 5:40 
GeneralRe: Confusion Pin
Sean Ewington17-Sep-12 7:25
staffSean Ewington17-Sep-12 7:25 
QuestionUploading code Pin
mzdude15-Sep-12 14:06
mzdude15-Sep-12 14:06 
AnswerRe: Uploading code Pin
Albert Holguin15-Sep-12 15:36
professionalAlbert Holguin15-Sep-12 15:36 
Questionwhy not all articles? Pin
duke.liu12-Sep-12 15:46
duke.liu12-Sep-12 15:46 
AnswerRe: why not all articles? Pin
Chris Maunder12-Sep-12 16:24
cofounderChris Maunder12-Sep-12 16:24 
GeneralRe: why not all articles? Pin
duke.liu14-Sep-12 19:00
duke.liu14-Sep-12 19:00 
GeneralRe: why not all articles? Pin
duke.liu14-Sep-12 19:35
duke.liu14-Sep-12 19:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.