The web service in its simplest form is just a regular java class. The SOAP server itself basically provides a mapping between the client call and a method in your class. Therefore, you can deploy any regular class and access it as a web service. Check out xml.apache.org/axis for a good SOAP server.
btw, this is getting more than a little off topic for this mailing list. > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 02, 2002 9:06 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED] > Subject: SOAP and web service involving DB2??? HELP Plzz > > > Can anyone send me a sample code for a simple SOAP > call in which I can have some DB2 database activity > to be performed by webservice and it bring some > information back to the client. > > 1. Client sends the parameters to the web service, say Name > of an employee > 2. Web Service will take the parameters and > use that parameter in an SQL Query and return back with > "Phone number > or Employee number" of that employee. > 3. This info. will be then send to client. > > I know how to make simple SOAP calls...But I want some > database activity at > Web Service side.. > > Thanks > -------------------------------------------------------------- > ---------------------- > > Nishant Awasthi > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
