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

C#

 
QuestionCombo box Foriegn key problem Pin
sajid.salim.khan28-Nov-07 5:07
sajid.salim.khan28-Nov-07 5:07 
AnswerRe: Combo box Foriegn key problem Pin
Ennis Ray Lynch, Jr.28-Nov-07 5:27
Ennis Ray Lynch, Jr.28-Nov-07 5:27 
GeneralRe: Combo box Foriegn key problem Pin
sajid.salim.khan28-Nov-07 5:39
sajid.salim.khan28-Nov-07 5:39 
QuestionWeb service Pin
Bazalgette28-Nov-07 4:51
Bazalgette28-Nov-07 4:51 
AnswerRe: Web service Pin
led mike28-Nov-07 5:03
led mike28-Nov-07 5:03 
AnswerRe: Web service Pin
Skippums28-Nov-07 5:03
Skippums28-Nov-07 5:03 
AnswerWhat I have done in the past Pin
Ennis Ray Lynch, Jr.28-Nov-07 5:25
Ennis Ray Lynch, Jr.28-Nov-07 5:25 
AnswerRe: Web service Pin
Bazalgette28-Nov-07 14:40
Bazalgette28-Nov-07 14:40 
Thanks for the quick reply,

to clear things up, essentially I am trying to do this (I know the coding is wrong, just want to give the idea)


String address="htt://localhost:2299/Service1.asmx" (read from config)
Double num1=2,num2=3(read from config)

Service ser=new Service(address)
Double result=ser.method(num1,num2)


In the past, I can only invoke that service's methods if i add a web reference to it, but this would mean that I need to recompile the main project everytime I add a new service. I would know exactly which service to call and what methods it has.

--------------------------
So far I have managed...


string myURL = "http://localhost:2299/Service1.asmx";
SoapClient sc = new SoapClient();
sc.set_ClientProperty("ServerHTTPRequest",true);
sc.mssoapinit(myURL + "?WSDL","","","");

but again, I don't know how to invoke it's method (or even if it's possible) this way.

Thanks

QuestionAn application suite Pin
Ofori Boadu28-Nov-07 4:33
Ofori Boadu28-Nov-07 4:33 
AnswerRe: An application suite Pin
Colin Angus Mackay28-Nov-07 5:05
Colin Angus Mackay28-Nov-07 5:05 
AnswerRe: An application suite Pin
duncanmhor28-Nov-07 5:55
duncanmhor28-Nov-07 5:55 
JokeRe: An application suite Pin
PIEBALDconsult28-Nov-07 15:34
mvePIEBALDconsult28-Nov-07 15:34 
Questionform problem Pin
Seraph_summer28-Nov-07 4:11
Seraph_summer28-Nov-07 4:11 
AnswerMultiple posts Pin
leckey28-Nov-07 4:32
leckey28-Nov-07 4:32 
GeneralRe: Multiple posts Pin
Anthony Mushrow28-Nov-07 4:47
professionalAnthony Mushrow28-Nov-07 4:47 
GeneralRe: Multiple posts Pin
leckey28-Nov-07 4:51
leckey28-Nov-07 4:51 
GeneralRe: Multiple posts Pin
Seraph_summer28-Nov-07 5:07
Seraph_summer28-Nov-07 5:07 
GeneralRe: Multiple posts Pin
Anthony Mushrow28-Nov-07 5:17
professionalAnthony Mushrow28-Nov-07 5:17 
GeneralRe: Multiple posts Pin
leckey28-Nov-07 14:53
leckey28-Nov-07 14:53 
Questionform problem Pin
Seraph_summer28-Nov-07 4:09
Seraph_summer28-Nov-07 4:09 
AnswerRe: form problem Pin
Paul Conrad28-Nov-07 14:36
professionalPaul Conrad28-Nov-07 14:36 
GeneralRe: form problem Pin
Seraph_summer28-Nov-07 23:43
Seraph_summer28-Nov-07 23:43 
QuestionAvoiding TimeoutException... Pin
blackjack215028-Nov-07 3:20
blackjack215028-Nov-07 3:20 
AnswerRe: Avoiding TimeoutException... Pin
pmarfleet28-Nov-07 3:31
pmarfleet28-Nov-07 3:31 
AnswerRe: Avoiding TimeoutException... Pin
Ennis Ray Lynch, Jr.28-Nov-07 4:22
Ennis Ray Lynch, Jr.28-Nov-07 4:22 

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.