Donald F Coffin

Results 23 comments of Donald F Coffin

What grant_type are you using to request the OAuth access token? Is it a grant_type of "code" or "client_credentials"? If grant_type is "code" is it the same user on the...

In that case, the Spring Security OAuth framework views the second request as an identical request as the first and therefore re-issues the same access token for the second request....

Unfortunately, the Spring Security OAuth framework uses a scope evaluation process which requires a scope string to match character-by-character one of the allowed scope strings. Therefore there are two issues...

Dibyendujana, While I understand the user case you have listed, it clearly violates The OAuth 2.0 Authorization Framework specification since it only allows a one-to-one authorization. Although it allows the...

We need this checked in to complete the Data Custodian CMD test suite. What is necessary for you to check your changes in?

The attached file contains the test_usage_data.xml file used by the SoapUI CMD test harness with PowerQualitySummary & ElectricPowerQualitySummary records. Let me know if you need anything else. [test_usage_data_power_summary_test.zip](https://github.com/energyos/OpenESPI-DataCustodian-java/files/160092/test_usage_data_power_summary_test.zip)

If you enter the following URL in the address line tokens will be displayed: ``` /DataCustodian/custodian/oauth/tokens/clients/{clientId} ``` or enter ``` /DataCustodian/custodian/oauth/tokens/clients/{clientId}/retailcustomers/{userId} ``` A new screen needs to be developed that...

Oracle has stopped publishing the XMLGregorianCalendarImpl JAR file. Temporary fix to allow the project to build was to obtain latest version of source code and add it to the project.

Upon investigation, the issue is a by product of modifying the ExportFilter class to extract IntervalBlock data by inspecting the IntervalBlock start time rather than using the Atom tag, as...