Bug 1090010 - Document access to BRMS/BPMS remote business central maven repository
Summary: Document access to BRMS/BPMS remote business central maven repository
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss BRMS Platform 6
Classification: Retired
Component: Documentation
Version: 6.0.2
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: CR1
: 6.0.2
Assignee: Vikram Goyal
QA Contact: Jiri Svitak
Vikram Goyal
URL:
Whiteboard:
: 996413 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2014-04-22 11:30 UTC by Jiri Svitak
Modified: 2015-06-02 01:36 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2014-08-06 19:53:52 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Jiri Svitak 2014-04-22 11:30:56 UTC
Document access to BRMS/BPMS maven repo due to already reported problems:
https://bugzilla.redhat.com/show_bug.cgi?id=1074986
https://bugzilla.redhat.com/show_bug.cgi?id=1059584

The solution is described here https://bugzilla.redhat.com/show_bug.cgi?id=1059584#c4

Pasting it also here:

"It is either needed to turn on pre-emptive authentication for the repository server by

    <server>
      <id>guvnor-m2-repo</id>
      <username>admin</username>
      <password>admin</password>
      <configuration>
        <wagonProvider>httpclient</wagonProvider>
        <httpConfiguration>
          <all>
            <usePreemptive>true</usePreemptive>
          </all>
        </httpConfiguration>
      </configuration>
    </server>

or set Authorization HTTP header with Base64 encoded credentials

    <server>
      <id>guvnor-m2-repo</id>
      <configuration>
        <httpHeaders>
          <property>
            <name>Authorization</name>
            <!-- Base64-encoded "admin:admin" -->
            <value>Basic YWRtaW46YWRtaW4=</value>
          </property>
        </httpHeaders>
      </configuration>
    </server>

This should be documented."

Comment 1 Petr Penicka 2014-06-12 12:06:56 UTC
Configuration of pre-emptive authentication (and commented Base64-encoded Authorization HTTP header) added to the code samples in the following sections:

http://docbuilder.usersys.redhat.com/22697/#Using_the_JBoss_Integration_Maven_Repository_Local_Access
http://docbuilder.usersys.redhat.com/22697/#Configure_the_JBoss_EAP_Integration_Maven_Repository_Using_the_Maven_Settings

The same content is reused in BPM Suite installation guide.

Comment 3 Jiri Svitak 2014-06-25 15:28:25 UTC
Verified using the provided links, thanks!

Comment 4 Vikram Goyal 2014-07-18 01:24:45 UTC
*** Bug 996413 has been marked as a duplicate of this bug. ***


Note You need to log in before you can comment on or make changes to this bug.