Click here to Skip to main content
15,891,316 members
Home / Discussions / C#
   

C#

 
GeneralRe: webservice return Pin
Christian Graus6-Jul-07 5:33
protectorChristian Graus6-Jul-07 5:33 
AnswerRe: webservice return Pin
Pete O'Hanlon6-Jul-07 4:51
mvePete O'Hanlon6-Jul-07 4:51 
GeneralRe: webservice return Pin
brsecu6-Jul-07 5:32
brsecu6-Jul-07 5:32 
GeneralRe: webservice return Pin
Christian Graus6-Jul-07 5:34
protectorChristian Graus6-Jul-07 5:34 
GeneralRe: webservice return Pin
brsecu6-Jul-07 5:48
brsecu6-Jul-07 5:48 
GeneralRe: webservice return Pin
Nick Parker6-Jul-07 8:46
protectorNick Parker6-Jul-07 8:46 
GeneralRe: webservice return Pin
brsecu7-Jul-07 2:25
brsecu7-Jul-07 2:25 
GeneralRe: webservice return Pin
Nick Parker7-Jul-07 4:48
protectorNick Parker7-Jul-07 4:48 
brsecu wrote:
when i run that (see the code below) I get this error. Class1 cannot be serialized because it does not have a parameterless constructor.


Just add a default constructor as well that has no parameters:

public class Class1 : WebService
{
    // default constructor
    public Class1(){}

    // overloaded constructor
    public Class1(string s1, string s2, string s3)
    {  
    // ...your code here
    }

}


- Nick Parker
Microsoft MVP - Visual C#
My Blog | My Articles

GeneralRe: webservice return Pin
brsecu7-Jul-07 5:50
brsecu7-Jul-07 5:50 
Question[2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 4:00
games guru6-Jul-07 4:00 
AnswerRe: [2.0] a few read/writeprocessmemory questions Pin
Christian Graus6-Jul-07 4:08
protectorChristian Graus6-Jul-07 4:08 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 4:17
games guru6-Jul-07 4:17 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Luc Pattyn6-Jul-07 4:32
sitebuilderLuc Pattyn6-Jul-07 4:32 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 4:44
games guru6-Jul-07 4:44 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Luc Pattyn6-Jul-07 5:05
sitebuilderLuc Pattyn6-Jul-07 5:05 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 5:28
games guru6-Jul-07 5:28 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 6:04
games guru6-Jul-07 6:04 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Jimmanuel6-Jul-07 6:27
Jimmanuel6-Jul-07 6:27 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 6:38
games guru6-Jul-07 6:38 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Jimmanuel6-Jul-07 7:04
Jimmanuel6-Jul-07 7:04 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 7:28
games guru6-Jul-07 7:28 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Jimmanuel6-Jul-07 7:47
Jimmanuel6-Jul-07 7:47 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
games guru6-Jul-07 7:50
games guru6-Jul-07 7:50 
GeneralRe: [2.0] a few read/writeprocessmemory questions Pin
Jimmanuel6-Jul-07 8:10
Jimmanuel6-Jul-07 8:10 
GeneralRe: [2.0] a few read/writeprocessmemory questions [modified] Pin
games guru6-Jul-07 8:30
games guru6-Jul-07 8:30 

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.