Click here to Skip to main content
15,793,452 members
Home / Discussions / C#
   

C#

 
AnswerRe: webservice return Pin
Pete O'Hanlon6-Jul-07 5:51
subeditorPete O'Hanlon6-Jul-07 5:51 
GeneralRe: webservice return Pin
brsecu6-Jul-07 6:32
brsecu6-Jul-07 6:32 
GeneralRe: webservice return Pin
Christian Graus6-Jul-07 6:34
protectorChristian Graus6-Jul-07 6:34 
GeneralRe: webservice return Pin
brsecu6-Jul-07 6:48
brsecu6-Jul-07 6:48 
GeneralRe: webservice return Pin
Nick Parker6-Jul-07 9:46
protectorNick Parker6-Jul-07 9:46 
GeneralRe: webservice return Pin
brsecu7-Jul-07 3:25
brsecu7-Jul-07 3:25 
GeneralRe: webservice return Pin
Nick Parker7-Jul-07 5:48
protectorNick Parker7-Jul-07 5:48 
GeneralRe: webservice return Pin
brsecu7-Jul-07 6:50
brsecu7-Jul-07 6:50 
Thanks for your patience with me.

OK i did that and it builds but now I get this error:
Cannot serialize member System.ComponentModel.MarshalByValueComponent.Site of type System.ComponentModel.ISite because it is an interface.







using System;

using System.Data;

using System.Web;

using System.Collections;

using System.Web.Services;

using System.Web.Services.Protocols;

using System.ComponentModel;

namespace WebService1

{

///

/// Summary description for Service1

///


[WebService(Namespace = "http://tempuri.org/")]

[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]

[ToolboxItem(false)]


public class Class1 : System.Web.Services.WebService

{

public string _strOne;

public string _strTwo;



public Class1()

{

}

public Class1(string strOne, string strTwo)

{

this._strOne = strOne;

this._strTwo = strTwo;

}


[WebMethod]

public Class1 HelloWorld(string str1, string str2)

{

str1 = "1";

str2 = "2";

return new Class1(str1,str2);


}


}

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

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.