How to call a other servlet in other server

I want to forward a request coming from one HTTP Client to another servlet which is in other web server. Is it possible? If Possible how can I do it?
Can anybody explain with an example.
Thanks,
Thiru

You could open an HttpURLConnection to the other servlet and recieve the output from the servlet and incorporate this output into the first servlet's response. You will not be able to directly pass the original request to the second servlet but can construct a new request to the second servlet.

Similar Messages

  • How to call two different servlet-url in the same application

    Hi,
    I want to call, consecutively these methods in my application.
    response.sendRedirect(servlet-url1)
    reponse.sendRedirect(servlet-url2)
    but the second method dont answer,
    I think, the first method redirect s with response ,
    but how to call two different servlet ?
    thanks

    if you call the first redirect, the servlet is getting aborted, so you can redirect to the first servlet, working the stuff in it, and then in the second servlet you can redirect to the third servlet

  • How to call procedure in Java from SQL Server Database

    Hello Every Body
    i Have Question about
    How to call procedure in Java from SQL Server Database
    Thanks

    Hi,
    have you tried a Google search? I just gave it a 3 second try and already found: http://stackoverflow.com/questions/6113674/how-do-i-execute-a-ms-sql-server-stored-procedure-in-java-jsp-returning-table-d
    Frank

  • Help :Domain controler crash, how to connect to other server behind

    Dear all,
    I get my DC controller server which has crashed. it is server 2008 r2.
    begind it I have an other server which runs virtual machines running TFS and CRM server 2011.
    What is the easier way to get access to my other server as temporary solution for my users ? we have only 3 users.
    I know that I can detached my other server from domaine but then how my users will be able to login the second server by passing the crash DC ?
    Thnaks for your help

    Hi wakefun,
    Thanks for your feedback and sharing. Your time and efforts are highly appreciated.
    Best regards,
    Justin Gu

  • How to Call Fmx file in the Linux Server

    Hi All,
    Iam having a server when ever i receive a file through FTP to the server , server will trigger to call a fmx file in another server. so that it reads the data of the file and insert into database .
    How this can be achieved in Linux server, at present it is working in Windows
    Please any solutions appreciated.
    Gunisetty Venkatesulu

    Using Forms to insert data from a file into a table is the wrong way to do this. It would be much more efficient and appropriate to use SQL Loader to insert the file data. Another option, depending on your database version, would be to use an external table. External tables are basically an interface that uses SQL Loader to read and write to the file just like you would a table. You must have RDBMS 10g or higher to use external tables.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to call JSp from Servlet??

    Hello,
    I want to call JSP page from servlet.I am using Visual Age For java 3.4. What is wrong in my code??
    if (userExists) {
    f.setErrors("userName","Duplicate User: Try a different username");
    getServletConfig().getServletContext().
    getRequestDispatcher("/jsp/forms/retry.jsp").
    forward(request, response);
    I am not able to get the o/p. Pls help.

    I can't see anything obvious, but did you take any steps towards doing output before this code (like openning an output stream)?
    Not clear what f.setErrors does - presumably stuffs the error message in an attribute of the request.

  • How to call LabVIEW_VI in VBScript(activex Com server) with (ByVaL, ByRef)parameters

    Hai to all,
    i want to call LabVIEW_VI(Activex Server) from VBScript. That VBScript include onther COM Server. i want to data exchange between VBScript and LabVIEW. That parameters shouldbe two types, I mean some parameters ByVal and some ByRef.
    How can i call?
    Request: How to create VI function with ByRef parameter in LabVIEW.
    ex: in 'C++': LabVIEWFunction(short* numb1, CString* str1).
    Note: i am using LabVIEW 7.0 Express.
    Thanks for advance!

    Hello.
    I am not sure if I understand correctly. Sure, you can access both controls (inputs) and indicators (outputs) with the LabVIEW ActiveX server. If you use the call function i mentioned in my last answer, you might pass two arrays to the function. One array with the control/ indicator names and another one containing the values. After calling the VI you will find the data of the VI outputs inside the values-array.
    Have a look at the attatched ZIP file. It contains a simple example showing the procedure.
    Attachments:
    callVI.zip ‏8 KB

  • How to call matlab script? (it shows server error)

    hi all
    i am using original version of Labview 8.2 and Matlab 7 . but i can not call the matlab script in Labview. while doing the same it shows server error Active X control fails to connect the server. What can i do?
    suggestion please...
    thanks in advance...

    Hi adsafsaf,
    Can you provide an error number or more details about how you are trying to call your MatLab script? Until you can share those details, you might want to consult either this KnowledgeBase or this one.
    Regards,
    Hillary E
    National Instruments

  • How to run jsp and servlet using JBOSS server

    Dear Friend,
    I have JBoss application server and Eclipse id
    now i want to run JSP and Servlet but i am not getting the place where to place my servlet class file to run it .
    before that i run jsp and servlet using tomcat5.0 but in that i place my servlet class in WEB-INF/classes folder and do corresponding entry in web.xml file and run it through browser.
    now i want to use JBOSS how it is possible
    PLZ Help me

    Is the servlet class defined in a package.? If servlet class package is servlets., copy the servlet to
    WEB-INF/classes/servlets directory.

  • How to call webservices deployed in Oracle edentity server from BPEL .

    my application requires to call a web service which is deployed on the OES server. This web service will accept user name and password as paremeter and rerurn true if the user is a valid user .

    You can try to right click on the EJB in JDeveloper and choose "create test client", then choose the connection you used for deployment and it should create a client for you that can access the EJB.

  • How to call webservices in BSP and ABAP

    I am new to use webservices.Please help me to call a ABAP Webservice in ABAP program and How to call a other Webservice like Java Webservice in ABAP.  Please give me steps to follow.
    Thanks,
    Suneetha.

    May be this prog. will give u the required info.
    Use a free web service in an ABAP program  which validates * an email-id.
    REPORT zvalidate_email.
    PARAMETERS: p_mail(100) LOWER CASE.                 " E-Mail id to be verified
    DATA: http_client TYPE REF TO if_http_client .
    DATA: w_string TYPE string ,
          w_result TYPE string ,
          r_str    TYPE string .
    DATA: result_tab TYPE TABLE OF string.
    START-OF-SELECTION .
      CLEAR w_string .
      CONCATENATE
      'http://www.webservicex.net/ValidateEmail.asmx/IsValidEmail?Email=' p_mail
    INTO
      w_string .
      CALL METHOD cl_http_client=>create_by_url
        EXPORTING
          url                = w_string
        IMPORTING
          client             = http_client
        EXCEPTIONS
          argument_not_found = 1
          plugin_not_active  = 2
          internal_error     = 3
          OTHERS             = 4.
      CALL METHOD http_client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
      CALL METHOD http_client->receive
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2
          http_processing_failed     = 3.
      CLEAR w_result .
      w_result = http_client->response->get_cdata( ).
      REFRESH result_tab .
      SPLIT w_result AT cl_abap_char_utilities=>cr_lf INTO TABLE result_tab .
      READ TABLE result_tab INTO r_str INDEX 2.
      IF r_str+44(1) = 't'.
        WRITE:/ 'Valid email address'.
      ELSE.
        WRITE:/ 'Invalid email address'.
      ENDIF.

  • How to Call Webservicer using Visuval composure Ce 7.1 server

    Hi ,
    We are created in ABAP , they r exposed in WSDL , if i have to call That web services using visuval composure please ASAP can u send , how to call WSDL In CE 7.1 Serve
    Thnks & Regards,
    Suresh

    Hi
    you can try this links:
    http://help.sap.com/saphelp_nwce10/helpdata/en/9f/9985f72084483cb316a3c2322fb090/content.htm
    (here look for the therm Creating Web Service Physical Destinations that points to :
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/635dd614d73bdbe10000000a1553f7/content.htm
    best regards,
    v s
    Edited by: v s on Dec 4, 2008 12:22 PM

  • How to call to another form declare in different class ???????

    hi, i'm beginner in j2me...
    I was wondering how to call to other form(class) in the current form...
    For example,
    public class A extends MIDlet implements CommandListener
    public void commandAction(Command d,Displayable s)
    if (d==*OKCommand*)
    if press this OK command, it will be able to show another form declared in the different class...
    How to make it able to call to other form/class(eg.classB)????
    public class B
    //form that will be shown after pressed command OK in class A
    please help if you know...Thanks a lot..... =)

    you MUST have a reference to the other class or MIDlet in the current MIDlet ...
    i think that i have answered to these kind of questions a few month ago.. you should use the 'search' engine to find the topic..
    CLDC and MIDP forum is not a huge forum compare to Java Programming forum so it will be easy !

  • How to video call with other phone using Iphone 4??

    Hii
    Anant Patel here.
    How to use iphone 4 for video call to other phone like nokia or others.??

    Skype, if the other phones support skype.

  • How to call  a method of one view in other view

    Hi
      could any one suggest "how to call  a method of one view in other view "
    thanks
    kaushik

    Hi Kausic,
    Its not possible to call a method from view to View.
    Since view is private entity we can not pass the data directly.
    I suggest you to declare the method in Component/Custom controller and call.
    the code is,
    wdThis.wdGet<Component/Custom Name>Controller().<methodName>();
    Regards,
    <b>Ramganesan K</b>

Maybe you are looking for

  • Query is allocating too large memory

    I'm building an Analysis in OBIEE against an ASO cube and am seeing the following error: Query is allocating too large memory ( > 4GB) and cannot be executed. Query allocation exceeds allocation limits The report we're trying to build is intended to

  • Urgent help needed in redirecting to ErrorPage in case of jsp runtime error

    Hi, I have two problems in Portal. I am working with sturts portlets. 1) Some times I am getting No Provider session Error . I know that struts renderer always needs session. In my provider.xml file I changed the session attribute to true. <session>t

  • Using apple bluetooth mosue + keyboard

    hi guys, going to order my macbook pro sometime soon, just wanted to ask with the routine for using an external display being to put the laptop to sleep, plug the power, monitor etc in, and they wake it up using the keyboard or mouse. will either a b

  • Message screen open by default

    Dear Experts! I have a question about the Message screen. On the right side you are able to see messages(errors, warnings) on a little screen.. My problem is, that if you want to see the message you have to open this little screen. Is there a possibi

  • WHY CAN'T I MAKE A GENIUS APP'T

    I AM UNABLE TO CHANGE MY DEVICES, AND CAN'T MAKE A GENIUS APP'T