자바 xml rpc 가 openerp 에 접근 하 는 상세 한 예

그룹 내 에서 크게 물 었 지만 자바 가 xml 를 어떻게 호출 하 는 지 예 를 찾 지 못 했 습 니 다.
어이 가 없어 서 doc.openerp.com 을 참고 하여 연구 할 수 밖 에 없습니다.
이 안 에는 자바 xml rpc 의 login 과 list db 예 만 있 지만 중요 한 대상 읽 기와 쓰기 동작 은 언급 되 지 않 았 습 니 다.
제 가 테스트 한 예 를 공유 하 겠 습 니 다.자바 어 는 더 이상 벽 에 부 딪 히 지 않 아 도 됩 니 다.
간단하게 말하자면,여 기 는 자신의 대상 x 를 정의 한다test,두 속성 만,xname 과 xdesc
간단하게 코드 를 붙 였 는데..
업데이트 설명,여 기 는 apache 의 xml rpc 패 키 지 를 사용 해 야 합 니 다.apache 사이트 에서 다운로드 하 십시오.게다가 ok 입 니 다.
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Vector;

import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.client.XmlRpcClient;
import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;


public class xmltest {

    /**
     * @param args
     * @throws MalformedURLException
     */
    public static void main(String[] args) throws MalformedURLException {
        // TODO Auto-generated method stub
        // getDatabaseList("127.0.0.1",8069);

        // createObject();
        // searchObject();
        // readData();
        readView();
    }

    public static Vector<String> getDatabaseList(String host, int port)
            throws MalformedURLException {
        XmlRpcClient xmlrpcDb = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
        xmlrpcConfgDb.setEnabledForExceptions(true);
        xmlrpcConfgDb.setServerURL(new URL("http", host, port, "/xmlrpc/db"));

        xmlrpcDb.setConfig(xmlrpcConfgDb);
        Vector<String> res = new Vector<String>();
        try {
            Vector<Object> params = new Vector<Object>();
            Object result = xmlrpcDb.execute("list", params);
            Object[] a = (Object[]) result;

            for (int i = 0; i < a.length; i++) {
                res.addElement((String) a[i]);
                System.out.println((String) a[i]);
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
        return res;
    }

    public int Connect(String host, int port, String tinydb, String login,
            String password) throws Exception {
        XmlRpcClient xmlrpclogin = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfigLogin = new XmlRpcClientConfigImpl();

        xmlrpcConfigLogin.setEnabledForExceptions(true);
        xmlrpcConfigLogin.setServerURL(new URL("http", host, port,
                "/xmlrpc/common"));

        xmlrpclogin.setConfig(xmlrpcConfigLogin);

        try {
            Object[] params = new Object[] { tinydb, login, password };
            Object id = xmlrpclogin.execute("login", params);
            if (id instanceof Integer)
                return (Integer) id;
            return -1;
        } catch (Exception e) {
            e.printStackTrace();
        }

        return -1;
    }

    public static void createObject() throws MalformedURLException {
        XmlRpcClient xmlrpc = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
        xmlrpcConfgDb.setEnabledForExceptions(true);
        xmlrpcConfgDb.setServerURL(new URL(
                "http://localhost:8069/xmlrpc/object"));

        xmlrpc.setConfig(xmlrpcConfgDb);

        String dbname = "openerp";
        int uid = 1;
        String pwd = "000000";
        String model = "x_test";

        HashMap<String, Object> values = new HashMap<String, Object>();
        values.put("x_name", "Monsieur");
        // values.put("x_desc", "bbbb");

        // Object[] params = new Object[] { dbname, uid, pwd, model,"create",
        // values };

        Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
                "create", values };

        try {
            xmlrpc.execute("execute", params);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void searchObject() throws MalformedURLException {
        XmlRpcClient xmlrpc = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
        xmlrpcConfgDb.setEnabledForExceptions(true);
        xmlrpcConfgDb.setServerURL(new URL(
                "http://localhost:8069/xmlrpc/object"));

        xmlrpc.setConfig(xmlrpcConfgDb);

        String dbname = "openerp";
        int uid = 1;
        String pwd = "000000";
        String model = "x_test";
        /*
         * ArrayList<String> l = new ArrayList<String>(); l.add("x_name");
         * l.add("="); l.add("a"); ArrayList filters = new ArrayList();
         */
        Object[] l = { "x_name", "=", "a" };
        Object[] filters = { l };
        // filters.add(l);
        Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
                "search", filters };

        try {

            Object[] o = (Object[]) xmlrpc.execute("execute", params);

            System.out.println("finished");
            // System.out.println(o.length);
            for (Object obj : o) {
                System.out.println(obj);
            }
        } catch (Exception e) {
            e.printStackTrace();

        }
    }

    public static void readData() throws MalformedURLException {
        Object[] ids = { 2, 3 };
        Object[] fields = { "x_name", "x_desc" };

        XmlRpcClient xmlrpc = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
        xmlrpcConfgDb.setEnabledForExceptions(true);
        xmlrpcConfgDb.setServerURL(new URL(
                "http://localhost:8069/xmlrpc/object"));

        xmlrpc.setConfig(xmlrpcConfgDb);

        String dbname = "openerp";
        int uid = 1;
        String pwd = "000000";
        String model = "x_test";

        Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
                "read", ids, fields };

        try {

            Object[] o = (Object[]) xmlrpc.execute("execute", params);

            System.out.println("finished");
            // System.out.println(o.length);
            for (Object obj : o) {
                System.out.println(obj);
            }
        } catch (Exception e) {
            e.printStackTrace();

        }
    }

    public static void readView() throws MalformedURLException {
        Object[] ids = { 1276 };
        Object[] fields = { "arch" };

        XmlRpcClient xmlrpc = new XmlRpcClient();

        XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
        xmlrpcConfgDb.setEnabledForExceptions(true);
        xmlrpcConfgDb.setServerURL(new URL(
                "http://localhost:8069/xmlrpc/object"));

        xmlrpc.setConfig(xmlrpcConfgDb);

        String dbname = "openerp";
        int uid = 1;
        String pwd = "000000";
        String model = "x_test";

        Object[] params = new Object[] { "openerp", 1, "000000", "ir.ui.view",
                "read", ids, fields };

        try {

            Object[] o = (Object[]) xmlrpc.execute("execute", params);

            // System.out.println("finished");
            System.out.println(o.length);
            for (Object obj : o) {
            //	System.out.println(obj);

                HashMap h = (HashMap)obj;
                //System.out.println(h.keySet().size());
                System.out.println("the id is:");
                System.out.println(h.get("id"));
                System.out.println("the arch is:");
                System.out.println(h.get("arch"));
            }
        } catch (Exception e) {
            e.printStackTrace();

        }
    }

}

좋은 웹페이지 즐겨찾기