Click here to Skip to main content
15,915,864 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: socket communication uisng .net Pin
yrishi1-Jun-09 20:24
yrishi1-Jun-09 20:24 
QuestionChoosing the right .NET development technology, so much choice! Pin
Russtavo28-May-09 1:58
Russtavo28-May-09 1:58 
AnswerRe: Choosing the right .NET development technology, so much choice! Pin
Pete O'Hanlon28-May-09 2:14
mvePete O'Hanlon28-May-09 2:14 
GeneralRe: Choosing the right .NET development technology, so much choice! Pin
Russtavo28-May-09 5:06
Russtavo28-May-09 5:06 
GeneralRe: Choosing the right .NET development technology, so much choice! Pin
Pete O'Hanlon28-May-09 8:45
mvePete O'Hanlon28-May-09 8:45 
QuestionHow to hook the ReadFile API like FileMon does. Pin
deadlyabbas28-May-09 1:04
deadlyabbas28-May-09 1:04 
AnswerCross post. Pin
Pete O'Hanlon28-May-09 1:58
mvePete O'Hanlon28-May-09 1:58 
Questionipc with remoting problem Pin
cignox127-May-09 20:35
cignox127-May-09 20:35 
Hi all, I'm trying to move my app from tcp to ipc, but i keep getting

Failed to connect to an IPC port: the System cannot find the file specified.

The server is a service running with Local System account.

Client and server work fine with tcp. Those are my configuration files:

Client:
<configuration>
  <system.runtime.remoting>
    <application>
      <channels>
        <channel ref="IPC" portName="2001" timeout="900000" name="mwchannel">
          <clientProviders>
            <formatter ref="binary" />
          </clientProviders>
          <serverProviders>
            <formatter ref="binary" typeFilterLevel="Full" />
          </serverProviders>
        </channel>
      </channels>
      <client>
        <wellknown type="MW.Remote.RemoteConnection, RemoteConnection" url="IPC://MWPort/MWServer/RemoteConnection.rem" />
      </client>
    </application>
  </system.runtime.remoting>
</configuration>


Server
<configuration>
  <system.runtime.remoting>
    <application name="MWServer">
      <channels>
        <channel ref="ipc" portName="MWPort" authorizedGroup="Everyone" timeout="3000">
          <serverProviders>
            <provider ref="wsdl" />
            <formatter ref="soap" typeFilterLevel="Full" />
            <formatter ref="binary" typeFilterLevel="Full" />
          </serverProviders>
          <clientProviders>
            <formatter ref="binary" />
          </clientProviders>
        </channel>
      </channels>
      <service>
        <wellknown mode="Singleton" type="MW.Remote.RemoteConnection, RemoteConnection" objectUri="RemoteConnection.rem" />
      </service>
    </application>
    <customErrors mode="Off">
    </customErrors>
  </system.runtime.remoting>
</configuration>


What is strang to me is that the same error appears if I shut down the server, so I suppose that the client is not even able to 'see' the server. Does someone spot any error or knows about possible causes?
Thank you!
Questionhow to store logout time. Pin
Member 356741127-May-09 19:00
Member 356741127-May-09 19:00 
AnswerRe: how to store logout time. Pin
Colin Angus Mackay27-May-09 21:00
Colin Angus Mackay27-May-09 21:00 
GeneralRe: how to store logout time. Pin
Pete O'Hanlon27-May-09 21:34
mvePete O'Hanlon27-May-09 21:34 
AnswerRe: how to store logout time. Pin
saanj28-May-09 2:57
saanj28-May-09 2:57 
Questionexception-array index out of bound Pin
manjusha s27-May-09 3:04
manjusha s27-May-09 3:04 
AnswerRe: exception-array index out of bound Pin
Eddy Vluggen27-May-09 3:14
professionalEddy Vluggen27-May-09 3:14 
AnswerRe: exception-array index out of bound Pin
Hoorfar29-May-09 21:34
Hoorfar29-May-09 21:34 
QuestionCrystal Report in.net Pin
srinisiv27-May-09 2:27
srinisiv27-May-09 2:27 
AnswerRe: Crystal Report in.net Pin
Eddy Vluggen28-May-09 11:19
professionalEddy Vluggen28-May-09 11:19 
QuestionWhat is .net compact and .net framwork? Pin
xingselex26-May-09 22:00
xingselex26-May-09 22:00 
AnswerRe: What is .net compact and .net framwork? Pin
Eddy Vluggen26-May-09 22:44
professionalEddy Vluggen26-May-09 22:44 
Questionstore procedure Pin
manjusha s26-May-09 21:33
manjusha s26-May-09 21:33 
AnswerRe: store procedure Pin
Pete O'Hanlon26-May-09 21:45
mvePete O'Hanlon26-May-09 21:45 
AnswerRe: store procedure Pin
saanj28-May-09 3:03
saanj28-May-09 3:03 
QuestionHow to override the message loop in winforms? Pin
Felix Collins26-May-09 17:56
Felix Collins26-May-09 17:56 
AnswerRe: How to override the message loop in winforms? Pin
Pete O'Hanlon26-May-09 21:39
mvePete O'Hanlon26-May-09 21:39 
GeneralRe: How to override the message loop in winforms? Pin
Felix Collins27-May-09 16:55
Felix Collins27-May-09 16:55 

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.