Francois Ritaly
Francois Ritaly
The API provides a way to send any type of query to the REST API. Create a class like this ``` import org.jfrog.artifactory.client.ArtifactoryRequest class ArtifactoryRequestImpl implements ArtifactoryRequest { private def...
The jar for artifactory-client-java 2.8.5 now seems to be a fat jar (look at the capture above). The version of "commons-io" embedded inside the fat jar must conflict with the...
I believe you need to use this REST API service: [Get Reverse Proxy Configuration](https://www.jfrog.com/confluence/display/RTF/Artifactory+REST+API#ArtifactoryRESTAPI-GetReverseProxyConfiguration). Not sure the Java Client supports getting this piece of information.
The structure of the JSON returned by the server depends on the "docker access method" chosen. Try changing the access method to "PORTPERREPO" (via the web UI) and the JSON...
Sorry, I'm not sure how this works in details. I don't have first hands experience configuring such a setup.
It looks like the variable `remoteFile` (set to `/sys-dbb-ga-generic-local/1.0.1/GA/dbb-core-javadoc-1.0.1.zip`) is a GString and not a String hence the error. Can you change your code as below ? ``` Artifactory artifactory...
For the sake of clarity, my comment was addressed to @hungvlam. I believe the fix is more on his side than the API's. This kind of error typically happens when...