Click here to Skip to main content
15,888,527 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# SNMP Printer! HELPPP! Pin
Marco Bertschi12-Oct-12 4:57
protectorMarco Bertschi12-Oct-12 4:57 
QuestionStoring and retrieving objects inside databse Pin
Sabry190511-Oct-12 4:08
Sabry190511-Oct-12 4:08 
AnswerRe: Storing and retrieving objects inside databse Pin
Eddy Vluggen11-Oct-12 4:43
professionalEddy Vluggen11-Oct-12 4:43 
GeneralRe: Storing and retrieving objects inside databse Pin
Sabry190511-Oct-12 7:06
Sabry190511-Oct-12 7:06 
GeneralRe: Storing and retrieving objects inside databse Pin
Eddy Vluggen11-Oct-12 9:59
professionalEddy Vluggen11-Oct-12 9:59 
GeneralRe: Storing and retrieving objects inside databse Pin
Sabry190514-Oct-12 2:54
Sabry190514-Oct-12 2:54 
Question3 tier architecture Pin
tannu dwivedi11-Oct-12 1:51
tannu dwivedi11-Oct-12 1:51 
AnswerRe: 3 tier architecture Pin
Wes Aday11-Oct-12 2:25
professionalWes Aday11-Oct-12 2:25 
AnswerRe: 3 tier architecture Pin
Eddy Vluggen11-Oct-12 4:47
professionalEddy Vluggen11-Oct-12 4:47 
AnswerRe: 3 tier architecture Pin
CptSupermrkt11-Oct-12 16:26
CptSupermrkt11-Oct-12 16:26 
QuestionInjection Pin
ALIJavany11-Oct-12 1:24
ALIJavany11-Oct-12 1:24 
AnswerRe: Injection Pin
J4amieC11-Oct-12 1:30
J4amieC11-Oct-12 1:30 
GeneralRe: Injection Pin
ALIJavany11-Oct-12 8:37
ALIJavany11-Oct-12 8:37 
AnswerRe: Injection Pin
Eddy Vluggen11-Oct-12 1:30
professionalEddy Vluggen11-Oct-12 1:30 
AnswerRe: Injection Pin
Abhinav S11-Oct-12 20:57
Abhinav S11-Oct-12 20:57 
AnswerRe: Injection Pin
KiranKumar Roy14-Oct-12 1:20
KiranKumar Roy14-Oct-12 1:20 
QuestionOpacity Pin
ALIJavany11-Oct-12 1:21
ALIJavany11-Oct-12 1:21 
AnswerRe: Opacity Pin
J4amieC11-Oct-12 1:30
J4amieC11-Oct-12 1:30 
AnswerRe: Opacity Pin
Eddy Vluggen11-Oct-12 1:31
professionalEddy Vluggen11-Oct-12 1:31 
GeneralRe: Opacity Pin
Sentenryu11-Oct-12 6:24
Sentenryu11-Oct-12 6:24 
GeneralRe: Opacity Pin
Eddy Vluggen11-Oct-12 10:02
professionalEddy Vluggen11-Oct-12 10:02 
GeneralRe: Opacity Pin
Sentenryu15-Oct-12 0:06
Sentenryu15-Oct-12 0:06 
GeneralRe: Opacity Pin
Pete O'Hanlon11-Oct-12 7:40
mvePete O'Hanlon11-Oct-12 7:40 
AnswerRe: Opacity Pin
Dave Kreskowiak11-Oct-12 6:37
mveDave Kreskowiak11-Oct-12 6:37 
QuestionFTP connection error 431 Pin
nitin_ion10-Oct-12 17:54
nitin_ion10-Oct-12 17:54 
Hi I am creating a FTP library to connect securly on 990 port.
Below is the code

FTPFactory ftp = new FTPFactory();

               ftp.setDebug(true);
               ftp.setRemoteHost("207.161.116.232");

               //Connect to SSL Port (990)
               ftp.setRemotePort(990);

               ftp.loginWithoutUser();

               string cmd = "AUTH SSL";
               ftp.sendCommand(cmd);


It is from the codeproject itself An FTP secure client library for C#[^]

But i get this error in loginWithoutUser function in readreply()
431 Unable to negotiate secure command connection

I tried it by disabling by firewall also but still get this error. Any one knows how to get around this?

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.