Click here to Skip to main content
15,899,754 members
Home / Discussions / C#
   

C#

 
AnswerRe: IIS Problem Pin
Rajesh Anuhya21-Dec-11 20:51
professionalRajesh Anuhya21-Dec-11 20:51 
GeneralRe: IIS Problem Pin
thatraja21-Dec-11 22:57
professionalthatraja21-Dec-11 22:57 
GeneralRe: IIS Problem Pin
Rajesh Anuhya21-Dec-11 23:00
professionalRajesh Anuhya21-Dec-11 23:00 
AnswerRe: IIS Problem Pin
#realJSOP22-Dec-11 3:57
professional#realJSOP22-Dec-11 3:57 
QuestionIs "Type" serializable? [SOLVED] Pin
Richard Andrew x6421-Dec-11 18:05
professionalRichard Andrew x6421-Dec-11 18:05 
AnswerRe: Is "Type" serializable? Pin
Not Active21-Dec-11 18:41
mentorNot Active21-Dec-11 18:41 
GeneralRe: Is "Type" serializable? Pin
Richard Andrew x6421-Dec-11 18:44
professionalRichard Andrew x6421-Dec-11 18:44 
GeneralRe: Is "Type" serializable? Pin
SledgeHammer0122-Dec-11 6:29
SledgeHammer0122-Dec-11 6:29 
As another responder indicated, Type.GetType(typeName) will not always work. I can name a few situations right off the top of my head:

1) if your code is in a DLL and the type is in the calling EXE or another assembly, you must use the fully qualified name for this method to work.
2) if your code is on machine A in A.DLL and called by A.EXE on machine A and it gets serialized over the wire to machine B where its decoded by A.DLL again, it won't work unless A.EXE is running in the process AND has the same exact FQN as machine A did. i.e. if machine A has version 1.0 of A.EXE and machine B has version 1.1, it won't work.
GeneralRe: Is "Type" serializable? Pin
Richard Andrew x6422-Dec-11 7:26
professionalRichard Andrew x6422-Dec-11 7:26 
AnswerRe: Is "Type" serializable? [SOLVED] Pin
PIEBALDconsult22-Dec-11 5:13
mvePIEBALDconsult22-Dec-11 5:13 
GeneralRe: Is "Type" serializable? [SOLVED] Pin
Richard Andrew x6422-Dec-11 7:27
professionalRichard Andrew x6422-Dec-11 7:27 
QuestionHow to prevent remote log off Pin
turbosupramk321-Dec-11 8:57
turbosupramk321-Dec-11 8:57 
AnswerRe: How to prevent remote log off Pin
SledgeHammer0121-Dec-11 8:58
SledgeHammer0121-Dec-11 8:58 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 9:06
turbosupramk321-Dec-11 9:06 
GeneralRe: How to prevent remote log off Pin
SledgeHammer0121-Dec-11 10:15
SledgeHammer0121-Dec-11 10:15 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 10:44
turbosupramk321-Dec-11 10:44 
GeneralRe: How to prevent remote log off Pin
SledgeHammer0121-Dec-11 11:41
SledgeHammer0121-Dec-11 11:41 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 11:47
turbosupramk321-Dec-11 11:47 
GeneralRe: How to prevent remote log off Pin
SledgeHammer0121-Dec-11 11:55
SledgeHammer0121-Dec-11 11:55 
AnswerRe: How to prevent remote log off Pin
fjdiewornncalwe21-Dec-11 9:04
professionalfjdiewornncalwe21-Dec-11 9:04 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 9:08
turbosupramk321-Dec-11 9:08 
GeneralRe: How to prevent remote log off Pin
fjdiewornncalwe21-Dec-11 9:48
professionalfjdiewornncalwe21-Dec-11 9:48 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 10:01
turbosupramk321-Dec-11 10:01 
AnswerRe: How to prevent remote log off Pin
Dave Kreskowiak21-Dec-11 10:22
mveDave Kreskowiak21-Dec-11 10:22 
GeneralRe: How to prevent remote log off Pin
turbosupramk321-Dec-11 10:45
turbosupramk321-Dec-11 10:45 

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.