Do you mean write the provider logic in C++ or write a provider that allows services to be written in C++? Assuming you want to do the latter, I am not certain how you would find the member functions to execute or how you would dynamically make the JNI call. Providers for COM, CORBA and EJB are reasonably easy to write because they have built in ways to locate methods and execute them dynamically. I do not think there is a standard way to do this with an arbitrary piece of C++ in a shared library.
If your situation is that you have some piece of C++ that you want to expose as a service, my recommendation is to write a Java wrapper that delegates to the C++, then deploy the Java wrapper as the service. Scott Nichol ----- Original Message ----- From: "Stevie Ho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 27, 2002 8:11 PM Subject: C++ Pluggable Provider > Has anyone built a C++ Pluggable Provider? Any > information/example/instruction/help will be greatly > appreciated. > > sh > > __________________________________________________ > Do you Yahoo!? > New DSL Internet Access from SBC & Yahoo! > http://sbc.yahoo.com > > -- > 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]>