Start a Conversation

This post is more than 5 years old

Solved!

Go to Solution

1194

June 27th, 2012 23:00

Atmos API acdp.admin.endpoint property

I am using atmos java api and trying to create atmos account via api. Please, can you explain me what this property "acdp.admin.endpoint" is for?

InputStream in = ClassLoader

                .getSystemResourceAsStream("atmos.properties");

        if (in != null) {

            try {

                System.getProperties().load(in);

            } catch (IOException e) {

                throw new RuntimeException("Could not load atmos.properties", e);

            }

        }

        acdpEndpoint = System.getProperty("acdp.admin.endpoint");

        if (acdpEndpoint == null) {

            throw new RuntimeException(

                    "acdp.admin.endpoint is null.  Set in atmos.properties or on command line with -Dacdp.admin.endpoint");

        }

Thank you.

281 Posts

June 28th, 2012 06:00

The ACDP API you're using is still under development and utilizes the ACDP 1.1.1 Admin REST API.

acdp.admin.endpoint will be the URL to access the admin service on your ACDP Authentication Node (usually on port 8080).

acdp.admin.endpoint=http://10.242.25.71:8080

No Events found!

Top