João Paul
Named pipe connection over network error (The username or password is incorrect)
To anyone with this issue. After some grueling days of debugging and talking with microsoft techs I came to the conclusion that named pipes use the network sharing protocol from windows and also, they follow the same rules. So basically... removed password from network folders... everything worked after that.
3 replies
Named pipe connection over network error (The username or password is incorrect)
the following is the code used to create the named pipe on the server side:
Note, that due to using a .Net framework version which lacked the native constructor, I had to use a plugin that copied the constructor that took pipeSecurity as an argument from another version. This should not change anything since the code is the same, but it explains the different naming for the initialization.
The client pipe is created with the following code:
for the connection
3 replies