Click here to Skip to main content
16,007,687 members
Home / Discussions / C#
   

C#

 
AnswerRe: How set computer clock time Pin
Vikram A Punathambekar29-Apr-07 3:37
Vikram A Punathambekar29-Apr-07 3:37 
QuestionDisconnect Event Handlers Pin
Brady Kelly29-Apr-07 2:04
Brady Kelly29-Apr-07 2:04 
AnswerRe: Disconnect Event Handlers Pin
Arun.Immanuel29-Apr-07 5:39
Arun.Immanuel29-Apr-07 5:39 
QuestionNetwork IPs Pin
Amir Jalaly29-Apr-07 1:57
Amir Jalaly29-Apr-07 1:57 
AnswerRe: Network IPs Pin
Arun.Immanuel29-Apr-07 5:12
Arun.Immanuel29-Apr-07 5:12 
QuestionForcing a class to be shared over webservice Pin
lütfen29-Apr-07 1:08
lütfen29-Apr-07 1:08 
AnswerRe: Forcing a class to be shared over webservice Pin
Arun.Immanuel29-Apr-07 1:57
Arun.Immanuel29-Apr-07 1:57 
GeneralRe: Forcing a class to be shared over webservice Pin
lütfen29-Apr-07 2:16
lütfen29-Apr-07 2:16 
The execute method is a WebMethod defined in the class service which inherits from System.Web.Services.WebService.

That means i got following:

public class Request { (some public variables) }

public class RequestEntity : Request { (some more public variables) }

[WebService(Namespace = "xyz")]
public class Service : System.Web.Services.WebService
{
[WebMethod]
public void Execute(Request h)
{
RequestEntity o = (RequestEntity)h;
....
}
}

And a client which should see all the classes to be able to do something like this:

Service service = new Service();
RequestEntity entity = new RequestEntity();

service.Execute(RequestEntity);


At the moment I can only see the Request class, not the RequestEntity class at the client of the webservice.


Thank you a lot again!!!
Martin

Questionhow to hide a panel on child form, when child form loads? Pin
Saira Tanwir29-Apr-07 1:04
Saira Tanwir29-Apr-07 1:04 
AnswerRe: how to hide a panel on child form, when child form loads? Pin
Arun.Immanuel29-Apr-07 1:46
Arun.Immanuel29-Apr-07 1:46 
QuestionBandwidth Utilization Pin
jkjadoon28-Apr-07 23:15
jkjadoon28-Apr-07 23:15 
QuestionGarbage Collection & Memory Leaks. Pin
coleydog28-Apr-07 22:45
coleydog28-Apr-07 22:45 
AnswerRe: Garbage Collection & Memory Leaks. Pin
lmoelleb28-Apr-07 22:56
lmoelleb28-Apr-07 22:56 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 5:18
coleydog29-Apr-07 5:18 
GeneralRe: Garbage Collection & Memory Leaks. Pin
lmoelleb29-Apr-07 7:03
lmoelleb29-Apr-07 7:03 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 20:03
coleydog29-Apr-07 20:03 
GeneralRe: Garbage Collection & Memory Leaks. Pin
lmoelleb29-Apr-07 21:26
lmoelleb29-Apr-07 21:26 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 22:40
coleydog29-Apr-07 22:40 
AnswerRe: Garbage Collection & Memory Leaks. Pin
Christian Graus29-Apr-07 0:14
protectorChristian Graus29-Apr-07 0:14 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 5:25
coleydog29-Apr-07 5:25 
GeneralRe: Garbage Collection & Memory Leaks. Pin
Christian Graus29-Apr-07 10:52
protectorChristian Graus29-Apr-07 10:52 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 16:36
coleydog29-Apr-07 16:36 
GeneralRe: Garbage Collection & Memory Leaks. Pin
Christian Graus29-Apr-07 18:15
protectorChristian Graus29-Apr-07 18:15 
GeneralRe: Garbage Collection & Memory Leaks. Pin
coleydog29-Apr-07 22:56
coleydog29-Apr-07 22:56 
GeneralRe: Garbage Collection & Memory Leaks. Pin
caix29-Apr-07 14:11
caix29-Apr-07 14:11 

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.