跨应用程序发送参数

时间:2013-01-24 02:31:47

标签: java java-ee servlets requestdispatcher

有没有办法可以在可能存在或不存在于同一台计算机上的应用程序之间发送属性?

例如:

// IN APPLICATION 1 (APP-1)

request.setAttribute("Truth","Ghazal is the food for the soul of separation");
RequestDispatcher rd = request.getRequestDispatcher("http://IP/App-2/servlet");
rd.forward(request,response);

// IN APPLICATION 2'S (APP-2)  SERVLET

String truth = request.getAttribute("Truth").toString();
// NOW USE THIS STRING

我们假设部署app-1的 IP 与部署app-2的 IP 不同。

有什么方法可以在远离彼此的托管应用程序之间发送这些参数?当我尝试时,我不能这样做,但可能有办法解决。

两个应用程序都使用Tomcat。

2 个答案:

答案 0 :(得分:1)

如果您要在可变数量的计算机之间共享状态,那么使用HTTP作为存储该状态的方法并不十分可靠。

"属性"不是通过HTTP传输的,它们只是驻留在给定会话的应用程序上的共享状态。属性是100%纯粹的服务器端信息。

来自Javadocs:

  

"当从servlet调度请求时,会发出警告   RequestDispatcher驻留在不同的Web应用程序中   可能无法在调用者中正确检索此方法设置的对象   。servlet的"

答案 1 :(得分:0)

您可以创建要通过应用程序使用的基础包

package base;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;


public class GetXMLTask
{
    static double longitute;
    static double latitude;
    public ArrayList<JSONObject> getOutputFromUrl1(String url) 
    {
        ArrayList<JSONObject> output = new ArrayList<JSONObject>();
        HttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        HttpResponse response;
        StringBuilder builder= new StringBuilder();
        JSONObject myjson ;
        JSONArray the_json_array;
        try 
        {
            response = httpClient.execute(httpPost);
            BufferedReader in = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
            char[] buf = new char[8000];
            int l = 0;
                while (l >= 0) 
                {
                    builder.append(buf, 0, l);
                    l = in.read(buf);
                }
            myjson = new JSONObject("{child:"+builder.toString()+"}");
            JSONObject mmm = new JSONObject(builder.toString());
            JSONArray mmmArr = mmm.getJSONArray("status");
            the_json_array = myjson.getJSONArray("child");
            for (int i = 0; i < the_json_array.length(); i++) 
            {
                JSONObject another_json_object =  the_json_array.getJSONObject(i);
            output.add(another_json_object);
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return output;
    }
}

现在从您的应用程序通过

调用此方法
ArrayList<JSONObject> obj = new GetXMLTask().getOutputFromUrl1("url for the other application method which responds");