0

openERPまたはodooがサンプルで使用するライブラリを使用して、openERPと接続しようとしています。しかし、xmlrpc の Apache ライブラリが見つかりません。

これはopenERPが提供するドキュメントですが、Apacheライブラリを使用しています: https://www.odoo.com/documentation/8.0/api_integration.html

また、ライブラリはhttp://www.apache.org/dyn/closer.cgi/ws/xmlrpc/からダウンロードできるはずです。

しかし、リンクは私に404エラーを与えます.Androidデバイスで動作させるための優れたライブラリ/ドキュメントを知っている人はいますか?

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    OpenErpConnect oc = OpenErpConnect.connect("2x7.13x.xxx.xxx", 8069, "DBNAME", "admin", "xxxxxxxxxxxxxxxx");
    List<HashMap<String, Object>> list = oc.read("res.partners", new Integer[] {1, 2, 3}, new String[] {"name"});
    String result = "";
    for (HashMap<String, Object> item : list) {
        result += (String)item.get("name")+"\n";
    }
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}
}
4

1 に答える 1