Package com.cedarsoftware.ncube

Examples of com.cedarsoftware.ncube.UrlCommandCell


        synchronized (ncube.getName().intern())
        {
            String logicalFileName = (String) input.get(axisName);
            ncube.addColumn(axisName, logicalFileName);
            String url = extension + '/' + logicalFileName + '.' + extension;
            UrlCommandCell exp = isString ? new StringUrlCmd(url, false) : new BinaryUrlCmd(url, false);
            ncube.setCell(exp, input);
            return ncube.getCell(input);
        }
    }
View Full Code Here


        this.response = response;
    }

    public Object executeCommand(CommandCell command, Map<String, Object> ctx)
    {
        UrlCommandCell urlCommandCell = (UrlCommandCell) command;
        urlCommandCell.failOnErrors();
        // ignore local caching
        if (urlCommandCell.getUrl() != null)
        {
            urlCommandCell.expandUrl(ctx);

            HttpURLConnection conn = null;

            try
            {
                conn = (HttpURLConnection)new URL(urlCommandCell.getUrl()).openConnection();
                conn.setAllowUserInteraction(false);
                conn.setRequestMethod(request.getMethod() != null ? request.getMethod() : "GET");
                conn.setDoOutput(true); // true
                conn.setDoInput(true); // true
                conn.setReadTimeout(220000);
View Full Code Here

        this.response = response;
    }

    public Object executeCommand(CommandCell command, Map<String, Object> ctx)
    {
        UrlCommandCell urlCommandCell = (UrlCommandCell) command;
        urlCommandCell.failOnErrors();
        // ignore local caching
        if (urlCommandCell.getUrl() != null)
        {
            urlCommandCell.expandUrl(ctx);

            HttpURLConnection conn = null;

            try
            {

                URL url = UrlUtilities.getActualUrl(urlCommandCell.getUrl());
                conn = (HttpURLConnection)url.openConnection();
                conn.setAllowUserInteraction(false);
                conn.setRequestMethod(StringUtilities.hasContent(request.getMethod()) ? request.getMethod() : "GET");
                conn.setDoOutput(true);
                conn.setDoInput(true);
View Full Code Here

TOP

Related Classes of com.cedarsoftware.ncube.UrlCommandCell

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.