Hi gurus; Well i have to develop application in which webserver communicate with such application that don't understand http.How i will made servlet/jsp to communicate with that application(Suppose that application understand smpp which actrually my project scenario).Will be thank ful for any kind of help. Thanks Jawwad Ahmed
You should proceed in a stepwise fashion, don't try to go directly to a servlet performing the communication. Anything an application can do a servlet can do, so get the communication running from a "desktop" application to your remote server first. (It will be much easier to debug than a servlet!) If you can make your communication component obey "JavaBeans" conventions, so much the better. Bill