Click here to Skip to main content
15,902,636 members
Home / Discussions / Article Writing
   

Article Writing

 
AnswerRe: Is this allowed Pin
Burak Ozdiken19-Sep-12 12:38
Burak Ozdiken19-Sep-12 12:38 
AnswerRe: Is this allowed Pin
Pete O'Hanlon20-Sep-12 23:34
mvePete O'Hanlon20-Sep-12 23:34 
GeneralRe: Is this allowed Pin
i0020-Sep-12 23:42
i0020-Sep-12 23:42 
GeneralRe: Is this allowed Pin
Richard MacCutchan21-Sep-12 3:06
mveRichard MacCutchan21-Sep-12 3:06 
GeneralRe: Is this allowed Pin
Sean Ewington21-Sep-12 5:52
staffSean Ewington21-Sep-12 5:52 
GeneralRe: Is this allowed Pin
Ingo20-Sep-12 23:57
Ingo20-Sep-12 23:57 
GeneralRe: Is this allowed Pin
Pete O'Hanlon21-Sep-12 0:07
mvePete O'Hanlon21-Sep-12 0:07 
GeneralRe: Is this allowed Pin
Ingo21-Sep-12 1:06
Ingo21-Sep-12 1:06 
GeneralRe: Is this allowed Pin
Richard MacCutchan21-Sep-12 3:01
mveRichard MacCutchan21-Sep-12 3:01 
GeneralRe: Is this allowed Pin
April Fans19-Dec-12 16:24
April Fans19-Dec-12 16:24 
QuestionKindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Grasshopper.iics18-Sep-12 14:42
Grasshopper.iics18-Sep-12 14:42 
AnswerRe: Kindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Chris Maunder18-Sep-12 15:33
cofounderChris Maunder18-Sep-12 15:33 
GeneralRe: Kindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Grasshopper.iics18-Sep-12 15:44
Grasshopper.iics18-Sep-12 15:44 
GeneralRe: Kindly Delete all my Articles because none have any source code and "Code Project is about sharing Codes" Pin
Chris Maunder18-Sep-12 15:48
cofounderChris Maunder18-Sep-12 15:48 
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 

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.