Hello again.... ;-)
My WebClient will call several different methods on the SOAPserver, mostly from one window. The .PageReceived method will then receive results in quite some different shaped.
My question: The .PageReceived-method ought to contain a State-Machine then, to direct the received data into the correct QUEUEs, TABLEs, VARs and whatever, right?
Each request has its own Button, in each Button the ClientRequest will be set to a certain value. Like ClientRequest = EQ:GetCompletVendorTable
In .PageReceived the code may look like
CASE ClientRequest
OF EQ:GetCompleteCustomerTable
DO FillCustomerTable
OF EQ:GetCompletVendorTable
DO FillVendorTable
OF EQ:GetAnInvoice
DO WriteThatInvoiceIntoLocalVars
END
Did I get that right?
Thanks a lot for your patience!
bye
Wolfgang