19 B2B Command-Line Tools
This chapter describes the B2B command-line tools that are available for a number of tasks such as archiving date, purging data, importing and exporting data, deploying agreements, and so on.
This chapter includes the following sections:
Prerequisites for Running the Command-line Tools
There are several things you should do before you run the command-line tools.
Note:
1. Command-line tools are for administrator use only. No security or permission checks are performed to prevent the logged-in user from purging, importing, or exporting data.
2. After running any command-line tool, you should re-log into the B2B Console. The B2B Console caches some metadata and any command-line action which may have updated the metadata could lead to invalid cached data. Therefore, it is advisable to always re-login into the B2B Console after using command-line operations.
3. In summary, if you are executing the B2B command utility and a user session is opened in the UI simultaneously, then it is advisable for the user to log out of the B2B UI and log back in again to see the candidate changes done by the command utility.
4. Most of the command-line tools cannot be run without providing the JNDI credentials. To restrict the command-line tools from anonymous use, provide the following information in the jndi.properties
file:
java.naming.provider.url=t3://localhost:8001
java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
java.naming.security.principal=weblogic
java.naming.security.credentials=weblogic_password
Note:
For any B2BCommandline utility, by default, the ANT run shows BUILD SUCCESSFUL
and system code 0
(zero) is returned even in the case of client or server side error. In case you want the ANT run to FAIL for each client or server side error, then you need to set exitonerror
parameter to true
.
You can do this in either of the following two ways:
-
Specify
-Dexitonerror=true
on ANT command lineant -f ant-b2b-util.xml b2bpurge -Dagreement=<AGR_NAME> -Dmode=DT -Dexitonerror=true
-
Setting the
exitonerror
parameter as global setting:Create a properties file called ant_general.properties with the value
exitonerror=true
in the directory where ant-b2b-util.xml is present ($ORACLE_HOME
/bin).
With this configuration, for all client or server errors, all ANT commands will fail with the message BUILD FAILED
and the system exit code will be set to -1
.
Archiving Data
Oracle B2B uses Oracle Data Pump as the archiving mechanism for Oracle B2B runtime instance data in Oracle database. Oracle B2B enables archiving functionality only when the Oracle B2B repository is Oracle database. You can configure start date, end date, and message state to archive and/or purge the runtime data.
In order to improve the performance and synchronize archive and purge activity, a new column (JOB_ID
) is added in each runtime table - B2B_BUSINESS_MESSAGE
, B2B_EXT_BUSINESS_MESSAGE
, B2B_APP_MESSAGE
, B2B_WIRE_MESSAGE
and B2B_DATA_STORAGE
.
Oracle B2B will mark the target runtime data (by start date, end date, and message state) with a unique JOB_ID
. If you select to archive the runtime data, Oracle B2B will invoke Data Pump PL/SQL API with JOB_ID
to export the runtime data. Oracle B2B will purge the runtime messages by JOB_ID
if you also want to purge them.
After the runtime data is archived/exported, Oracle B2B can also use Oracle Data Pump to import the runtime data into an Oracle B2b repository.
Before archiving data, you must set up the permissions and the archival directory.
Note:
The b2b_archive
utility only supports Oracle database. No other databases are supported.
To do initial setup:
-
On the machine running the database, create a directory in which to dump the archive file. This is not a permanent directory. Once the archive procedure is complete, the archived files can be moved to another location, and this directory can be deleted, if necessary for security purposes. For example:
mkdir /archive
-
Use the
chmod
command to grant permissions to this directory so that the database process can write to it for this operation. -
Log in to the database as
sysdba
.sqlplus / as sysdba
-
Set up the
B2B_EXPORT_DIR
.SQL> create or replace DIRECTORY B2B_EXPORT_DIR as '/archive'
-
If your SOA schema user is
b2b_soainfra
, the user needs to be granted permission for the export.SQL> grant read, write on directory B2B_EXPORT_DIR to b2b_soainfra; SQL> grant exp_full_database to b2b_soainfra;
Note:
Make sure that the initial setup steps detailed above are performed before attempting to archive.
To archive data:
-
Log in as the soainfra schema user.
$ sqlplus b2b_soainfra/password
-
Execute the archive procedure. For example:
SQL> exec B2B_ARCHIVE_INSTANCE_MSGS('2010/06/23 12:23:23','2010/06/24 12:46:24','MSG_COMPLETE',null,null,null,null,null,null,'myDump.dmp')
The signature of the procedure is
exec B2B_ARCHIVE_INSTANCE_MSGS(p_startDate,p_endDate,p_msgState,p_tpName, p_direction,p_msgType,p_tpaName,p_idType,p_idVal,filename);
Table 19-1 lists the options for this utility.
Table 19-1 Options for B2B_ARCHIVE_INSTANCE_MGS Utility
Options | Type | Description |
---|---|---|
|
|
Starting date for archival. |
|
|
Ending date for archival. |
|
|
State of the business message. |
|
|
Trading partner name. |
|
|
Message direction. |
|
|
Message type. |
|
|
Trading partner agreement name. |
|
|
The sender |
|
|
The sender |
|
|
Name of the archive file to be created by the database. File names MUST be unique. Verify that a file with this name does not exist in that directory. |
Purging Data
Before purging runtime data, you must set up the configuration properly. If not done properly, then the archive will fail with a misleading error.
Note:
The configuration setup isdescribed in Archiving Data.
No security or permission checks are performed to prevent the logged-in user from purging data.
The b2bpurge
utility only supports Oracle database. No other databases are supported.
The following utility purges both design-time and runtime data and resets the environment to the installation time.
ant -f ant-b2b-util.xml b2bpurge
Table 19-2 lists the options for this utility.
Table 19-2 Options for b2bpurge Utility
Option | Description | Domain | Required |
---|---|---|---|
mode |
Specifies purging design-time or runtime data. (see Note below) |
|
Yes |
msgState |
Deletes messages with the specified message state. Used for runtime data. |
|
No. If |
purgecontrolnumber |
Deletes control numbers. Used for runtime data. When set to true, all the runtime data is truncated from B2B tables. This option not available when data is deleted for a specific date range. Archiving will only occur is this option is set to false. |
|
No |
|
Deletes all messages created on or after this date. |
Date format dd/mm/yyyy hh:mm AM/PM |
No |
|
Deletes all messages created on or before this date. |
Date format dd/mm/yyyy hh:mm AM/PM |
No |
|
Trading partner name. |
- |
No |
|
Direction of the message |
- |
No |
|
Type of the message |
- |
No |
|
Name of the agreement |
- |
No |
|
The sender |
- |
No |
|
The sender |
- |
No |
|
Specifes whether or not to archive. |
|
No |
|
Specifies the number of records after which the database commit takes place |
Value of the frequency; default is |
No |
|
File name of archived file |
- |
No |
partitioned |
Indicates if the database is partitioned. Based on the value of this parameter, Oracle B2B allows you to purge data normally or based on database partitions. |
|
No |
partitioncleanmode |
Specifies the mode of cleaning for a partition that is identified for cleanup. In case of absence of partitions, or non-date parameters are provided, this parameter is ineffective. Note: This parameter is effective only when the |
|
No |
logmode |
Indicates the log level. There are two variations, |
|
No |
refreshmw |
Controls whether to completely refresh the |
|
No |
rowlimit |
Limits the number of records to be deleted; this is a nonimportation-specific feature |
- |
No |
timelimit |
Limits the time the purge job runs. The accuracy depends on |
- |
No |
cascadedelete |
Deletes all the artifacts related to a specific document ID or CPA ID. |
|
No |
Example 19-1 Removes Design-Time Data
ant -f ant-b2b-util.xml b2bpurge -Dmode=DT
Example 19-2 Purges Runtime Data
ant -f ant-b2b-util.xml b2bpurge -Dmode=RT
Example 19-3 Purges Runtime Data, Including Control Numbers
ant -f ant-b2b-util.xml b2bpurge -Dmode=RT -Dpurgecontrolnumber=true
Example 19-4 Purges Messages with the Specified State Between the Specified Dates
ant -f ant-b2b-util.xml b2bpurge -Dmode=RT -Dfromdate="05/10/2012 11:51 PM" -Dtodate="06/10/2012 12:01 AM" -Dmsgstate=MSG_COMPLETE -Darchive=false
Example 19-5 Cascade Deletes the Robot143 Trading Partner
ant -f ant-b2b-util.xml b2bpurge -Dtp=Robot143 -Dmode=DT -Dcascadedelete=true
This is useful when there is one document or CPA attached with the trading partner.
Example 19-6 Cascade Deletes the Robot131 to Robot139 Trading Partners
ant -f ant-b2b-util.xml b2bpurge -Dtp=Robot131,Robot132,Robot133,Robot134,Robot135,Robot136,Robot137,Robot138,Robot139 -Dmode=DT -Dcascadedelete=true
This is useful when there is one document or CPA attached with the trading partners.
Example 19-7 Cascade Deletes All the Artifacts of an AgreementID or CPA
ant -f ant-b2b-util.xml b2bpurge -Dtp=Robot142 -Dmode=DT -Dcascadedelete=true -Dagreementid=Openreach_Robot142_WholesaleProvider_ServiceProvider_R1800.0.5_cpa
This is useful when multiple documents or CPA are attached to a trading partner.
Note:
When using archivename
the value must be a unique file name. An existing file name used with archivename
throws an exception.
Note:
You can also perform document type based purge and archive of the instance data. To do this, first perform the prerequisite steps listed in Prerequisites for Running the Command-line Tools and the initial steps listed in Archiving Data.
Example:
ant -f ant-b2b-util.xml b2bpurge -Dmode=RT -Ddoctype="ORDERS_FILE" -Darchive=true -Darchivename="docType.dmp"
You can also execute this by using SQL.
Note:
When performing purging of data based on the trading partner name:
-
If the direction is specified, then direction is also considered for the purge.
-
If the direction is not specified, then purge happens in both direction (inbound and outbound).
-
If the hostname is provided as the value for
-Dtp
, an error message is displayed.
Importing Data
The b2bimport
utility imports the B2B metadata ZIP file to the repository. Basic validation is performed, but it is not a complete validation as with deployment validation. No data is overwritten unless you use the overwrite
option.
Note:
No security or permission checks are performed to prevent the logged-in user from importing data.
The following usage imports data from tmp/export.zip
to a location on the same server without overwriting.
ant -f ant-b2b-util.xml b2bimport -Dlocalfile=true -Dexportfile="/tmp/export.zip"
Table 19-3 lists the options for this utility.
Table 19-3 Options for b2bimport Utility
Option | Description | Domain | Required |
---|---|---|---|
|
Location of the export (ZIP) file |
- |
Yes |
|
Overwrites the existing business elements. For example, an existing delivery channel with the same trading partner name as a delivery channel in the import file is replaced if this option is set to |
|
No |
|
If the export file location exists on the server, then set this option to true to improve performance. The export file must be on the server on which B2B is running. |
|
No |
Exporting Data
The b2bexport
utility exports metadata from the Oracle B2B
repository. If no options are specified, then the entire repository is exported.
Note:
No security or permission checks are performed to prevent the logged-in user from exporting data.
The following usage exports the entire repository (without policy details) to /tmp/export.zip
if no other options are specified.
ant -f ant-b2b-util.xml b2bexport
Table 19-4 lists the options for this utility.
Table 19-4 Options for b2bexport Utility
Option | Description | Domain | Required |
---|---|---|---|
tpanames |
One or more trading partner agreement names to be exported. If one agreement is
exported, then the ZIP file contains the folder
|
Agreement names must be separated by a comma |
No |
tpname |
The name of the trading partner to be exported. |
- |
No |
exportfile |
Location of the ZIP file where the exported data is stored. |
|
No |
active |
Exports agreements that have been deployed and are in active state. |
|
No |
|
Set to true to export the entire repository with user and role details, which is needed for the policy store. A warning is displayed to remind you to export the policy store also. See What Is Copied When You Import or Export from the Import/Export Tab, for more information. |
|
No |
|
Set to true for improved performance if the export file is on the same computer as Oracle B2B. |
|
No |
Example 19-8 Export Entire Repository with Policy Details to /tmp/export.zip
ant -f ant-b2b-util.xml b2bexport -Dexportfile="/tmp/export.zip" -Dpolicies=true
Example 19-9 Export Entire Repository w/o Details to /tmp/exportinserver.zip on Same Server
ant -f ant-b2b-util.xml b2bexport -Dexportfile="/tmp/exportinserver.zip" -Dlocalfile=true
Example 19-10 Exports the Trading Partner Acme to /tmp/Acme.zip
ant -f ant-b2b-util.xml b2bexport -Dtpname="Acme" -Dexportfile="/tmp/Acme.zip"
Example 19-11 Exports an Agreement from Design-Time with Listening Channel Details to /tmp/acmeGc.zip
ant -f ant-b2b-util.xml b2bexport -Dtpanames="Acme_GC_Agreement1" -Dexportfile="/tmp/AcmeGc.zip"
Listening channels are deactivated while exporting and must be reactivated after you import data.
Example 19-12 Exports Multiple Deployed and Active Agreements to /tmp/export.zip
ant -f ant-b2b-util.xml b2bexport -Dtpanames="Acme_GC_Agreement1, GC_Acme_Agreement1" -Dactive=true
No listening channels are exported.
Resetting Channel Passwords
This utility sets or resets a channel password.
ant -f ant-b2b-util.xml resetchannelpassword
Table 19-5 lists the options for this utility.
Table 19-5 Options for resetchannelpassword Utility
Options | Description | Required |
---|---|---|
|
Existing channel name. |
Yes |
|
Trading partner name. |
Yes |
|
Password to be set for the specified channel. This is an optional parameter. If this parameter is not provided, the existing password (if any) of the channel is removed. |
No |
Note:
For listening channels, the modified password takes effect only after the listening channel is restarted. For delivery channels, the modified password takes effect only after deployment.
Example 19-13 Setting the Password for a Listening Channel
ant -f ant-b2b-util.xml resetchannelpassword -Dchannelname=AcmeInboundListening -Dtp=Acme -Dpassword=welcome1
The preceding example sets welcome1
as the password for the AcmeInboundListening
listening channel.
Example 19-14 Resetting the Password for a Listening Channel
ant -f ant-b2b-util.xml resetchannelpassword -Dchannelname=AcmeInboundListening -Dtp=Acme
The preceding example resets the password for the AcmeInboundListening
listening channel.
Activating or Deactivating Listening Channels
This utility activates or deactivates a listening channel.
ant -f ant-b2b-util.xml updatechannel
Table 19-6 lists the options for this utility.
Table 19-6 Options for updatechannel Utility
Options | Description | Value | Required |
---|---|---|---|
|
Name of the existing listening channel. You can use the wildcard character * to specify all the listening channels in the system. |
- |
Yes |
|
State of the listening channel. If you specify |
|
Yes |
Example 19-15 Starting a Listening Channel
ant -f ant-b2b-util.xml updatechannel -Dchannelname="AcmeInboundListening" -Dstate=active
The preceding example starts the AcmeInboundListening
channel.
Example 19-16 Starting All Listening Channels
ant -f ant-b2b-util.xml updatechannel -Dchannelname="*" -Dstate=active
Deploying Agreements
The b2bdeploy
utility validates and deploys all agreements in the repository. If an agreement is already deployed, then it is deployed again. The older version of the agreement is then in an inactive state. Turning off validation is useful when deploying large numbers of agreements, where you are certain that the data is valid. It requires a SOA Server restart. Validation can be turned off by setting the property b2b.deploy.validation
to false.
To deploy all agreements in the repository, execute:
ant -f ant-b2b-util.xml b2bdeploy
Table 19-7 lists the options for this utility.
Table 19-7 Options for b2bdeploy Utility
Options | Description | Domain | Required |
---|---|---|---|
|
One or more names of agreements to be deployed |
Agreement names must be separated by a comma |
No |
Example 19-17 Deploys the Agreements Acme_GC_Agreement1 and GC_Acme_Agreement1
ant -f ant-b2b-util.xml b2bdeploy -Dtpanames="Acme_GC_Agreement1,GC_Acme_Agreement1"
Validating B2B Metadata
The b2bvalidate
utility validates Oracle B2B metadata, including agreements, trading partners, and documents. All agreements are validated if no options are specified.
ant -f ant-b2b-util.xml b2bvalidate [-Dmdsreference="comma_separated_argumants"]
Table 19-8 lists the options for this utility.
Table 19-8 Options for b2bvalidate Utility
Options | Description | Domain | Required |
---|---|---|---|
mdsreference |
File names of the trading partner, agreement, or document protocol. |
File names must be separated by a comma. |
No |
agreementid |
Validates agreements based on the IDs provided. It also throws warning message if any agreementID does not exist and validate the others. |
Agreement IDs must be separated with commas. |
No |
Example 19-18 Validates All Agreements
ant -f ant-b2b-util.xml b2bvalidate
Example 19-19 Validates Agreement tpa_ID1234.xml
ant -f ant-b2b-util.xml b2bvalidate -Dmdsreference="tpa_ID1234.xml"
Example 19-20 Validates Trading Partner tp_MyCompany.xml and Agreement tpa_ID1234.xml
ant -f ant-b2b-util.xml b2bvalidate -Dmdsreference="tp_MyCompany.xml,tpa_ID1234.xml"
Example 19-21 Validates Agreements Having IDs as agreementID1 and agreementID2
ant -f ant-b2b-util.xml b2bvalidate -Dagreementid="agreementID1,agreementID2"
Using the ebXML CPP/CPA Utilities
The ebXML CPP/CPA utilities convert to and from a standard ebXML CPA file in the Oracle B2B metadata.
Note that the CPP/CPA Filename should follow below naming convention while passing through the command-line:
JavaLetterOrDigit | '-' | '.' | ' '
JavaLetterOrDigit
returns true from the java.lang.Character.isJavaIdentifierPart
method.
Creating CPP/CPA Properties Templates
The b2bcreate-cpaprop
utility creates a property file template that can be customized and then used to supply parameters for the b2bcpaimport
and b2bcpaexport
utilities.
The following usage creates a cpp_cpa.properties
template file, which is used in the propfile
option.
ant -f ant-b2b-util.xml b2bcreate-cpaprop
Table 19-9 lists the options for this utility.
Table 19-9 Options for b2bcreate-cpaprop Utility
Option | Description | Domain | Required |
---|---|---|---|
propfile |
Property file that stores configuration details for |
- |
Yes |
Example 19-22 Creates a Property File Template That Is Used in the propfile Option
ant -f ant-b2b-util.xml b2bcreate-cpaprop
Properties of cpp_cpa.properties
The following properties can be configured as part of the cpp_cpa properties
file:
CPA Import Properties
The CPA import properties are as follows:
oracle.tip.b2b.ebms.BPSSDocument (Optional Property)
This property holds the absolute path for the BPSS document, which is used to get the BPSS document details to be imported into the Oracle B2B repository. If the property does not exist, then the values are imported from the CPA document. Multiple BPSS documents are separated by ;
(semi-colon).
oracle.tip.b2b.ebms.CPADocument (Required Property)
This property is used to get the absolute path of the CPA document to be imported into the Oracle B2B repository.
oracle.tip.b2b.ebms.xsdLocation (Optional Property)
This property is used to specify the absolute path of the schema file location. This schema file is used for document validation. It is used only when a BPSS document is specified.
oracle.tip.b2b.ebms.internalDeliveryChannel.protocol (Optional Property)
The default internal delivery channel is an AQ queue. If you want to add a specific internal delivery channel (JMS/FTP/FILE/SFTP), then this property is used in Oracle B2B configuration. Specify all the required properties with respect to the specific transport protocol. Then use the specific channel to send messages to back-end applications.
oracle.tip.b2b.ebms.allDocumentParameter (Optional Property)
This property is used to improve the import performance. Set this property to false to stop generating the unwanted or unset parameters in soa.zip.
oracle.tip.b2b.ebms.TPCertificateAlias (Optional Property)
For secure message transfer, this property is used to get the trading partner certificate details to the CPP/CPA import from the remote trading partner profile.
After using the b2bcpaimport
utility to obtain the OracleB2B zip file, when you import the zip file into the Oracle B2B console:
-
Certificate alias will be available under Administration > Types
-
Certificate alias <value from b2bcpaimport profiles> will be available under Partners > Remote Trading Partner > Profile tab > Identifiers
CPA Export Properties
The CPA export properties are as follows:
oracle.tip.b2b.ebms.OutputFolder (Required Property)
This property is used to place the generated CPP/CPA files in the specified location.
oracle.tip.b2b.ebms.Host (Required Property)
This property is used to set the host trading partner.
oracle.tip.b2b.ebms.HostEndPoint (Required Property)
This property is used to set the host endpoint while generating the CPP/CPA export.
oracle.tip.b2b.ebms.HostCertificateAlias (Optional Property)
For secure message transfer, this property is used to get the host certificate details to the CPP/CPA export.
oracle.tip.b2b.ebms.TPCertificateAlias (Optional Property)
For secure message transfer, this property is used to get the trading partner certificate details to the CPP/CPA export.
oracle.tip.b2b.ebms.BPSSExport (Optional Property)
This Boolean property is used to generate the BPSS document.
Common Properties
The common properties are as follows:
oracle.tip.b2b.ebms.LogDirectory (Required Property)
This property is used to store the log files.
oracle.tip.b2b.ebms.LogLevel (Required Property)
This property is used to specify the mode of the logs, such as DEBUG, INFO, or ERROR.
oracle.tip.b2b.ebms.LogType (Required Property)
This property is used to specify whether the log file is stored as text or XML.
CPP/CPA Import
The following utility converts an ebXML standard cpa.xml
file to an Oracle B2B metadata file, which must then be imported into Oracle B2B.
ant -f ant-b2b-util.xml b2bcpaimport
Table 19-10 lists the options for this utility.
Table 19-10 Options for b2bcpaimport Utility
Option | Description | Domain | Required |
---|---|---|---|
propfile |
Property file that stores configuration details for |
- |
Yes |
Example 19-23 Converts CPA-Formatted XML to an Oracle B2B ZIP File
ant -f ant-b2b-util.xml b2bcpaimport -Dpropfile="/tmp/cpp_cpa.properties"
CPP/CPA Export
The following utility converts an Oracle B2B metadata file (data exported from Oracle B2B) to an ebXML standard cpa.xml
file (a CPA-ready configuration).
ant -f ant-b2b-util.xml b2bcpaexport
Table 19-11 lists the options for this utility.
Table 19-11 Options for b2bcpaimport Utility
Option | Description | Domain | Required |
---|---|---|---|
propfile |
Property file that stores configuration details for |
- |
Yes |
Example 19-24 Converts an Oracle B2B ZIP File to a CPA-Formatted XML File
ant -f ant-b2b-util.xml b2bcpaexport -Dpropfile="/tmp/cpp_cpa.properties"
Verifying Agreement Availability
The b2bcheckcpaid
utility enables you to verify the availability of an agreement for a given CPAID and trading partner. Based on the result, you can import the agreement with the option overwrite it.
Table 19-12 lists the options for this utility.
Table 19-12 Options for b2bcheckcpaid Utility
Option | Description | Domain | Required |
---|---|---|---|
|
Oracle B2B metadata file |
file name |
Yes |
Example 19-25 b2bcheckcpaid Utility
ant -f ant-b2b-util.xml b2bcheckcpaid -Dexportfile="soa_file.zip"
Creating Oracle B2B Metadata Based on selfservice.xsd
This utility creates the selfservice.xsd
file, which is
used to understand or create self service XML based on the XSD structure.
ant -f ant-b2b-util.xml b2bselfservicexsd
The following utility creates Oracle B2B metadata from the XML file that is created
based on selfservice.xsd
.
ant -f ant-b2b-util.xml b2bselfservice
See Self Service Utility Protocols, Identifications, Security Specifications, and Parameters for information about self service protocols, identifications, and security specifications.
Table 19-13 lists the options for these utilities.
Table 19-13 Options for b2bselfservice Utility
Option | Description | Domain | Required |
---|---|---|---|
|
XML file absolute location |
- |
Yes |
|
Location for Oracle B2B metadata stored as a ZIP file |
- |
No |
Example 19-26 Converts b2bselfservicexsd-Generated XML to an Oracle B2B Metadata ZIP file (stored in /tmp/soa.zip)
ant -f ant-b2b-util.xml b2bselfservice -Dinput="/tmp/selfservice1.xml"
Example 19-27 Converts b2bselfservicexsd-Generated XML to an Oracle B2B Metadata ZIP file (stored in /tmp/as11b2b.zip)
ant -f ant-b2b-util.xml b2bselfservice -Dinput="/tmp/selfservice1.xml" -Doutput="/tmp/as11b2b.zip"
Using Self Service to Batch Create Document Protocols, Trading Partners, and Agreements
When using a multiple file approach, you must make sure that the names of the self service XML files are in following order, otherwise, an error claiming that the referenced object does not exist might be thrown.
-
Document Protocols self service XML files.
-
Trading Partner self service XML files (
HOST
must be first in this list). -
Trading Partner Agreement self service XML files.
For example:
-
doc_selfservice.xml
to hold Document Protocols. -
tp_selfservice.xml
to hold Trading Partner details. -
tpa_selfservice.xml
to hold Agreements details.
Example 19-28 Converts Several b2bselfservicexsd-Generated XML Files Within a Folder to an Oracle B2B Metadata ZIP file (stored in /tmp/as11b2b.zip)
ant -f ant-b2b-util.xml b2bselfservice -Dinput="/folder
" -Doutput="/tmp/as11b2b.zip"
Using Self Service Samples
Self service utility (b2bselfservice
) XML samples are bundled along with its schemas and ECS files, which are together with the B2B metadata of B2B Samples configuration.
Self service samples are found in $samples
/selfservice
folder.
Samples are not available for all of the document and exchange protocol combinations. However, by replacing the document protocol details and exchange protocol details in the existing samples, you can create new XML files.
Note:
Self service XML files can also be created using the XSD, which is useful for the
advanced user who wants to start from scratch. Also, when running the command
line selfservice
with the input
selfservice.xml
that does not exist, the command line
selfservice
will be able to run successfully and an empty
B2B zip file created. You should ensure the existence of a valid
selfservice.xml
file before running the command line
selfservice
utility. This note is specific to your running
selfservice
with the folder option
-Dinput="/folder"
(rather than running the utility against
the XML file itself outside of the context of a folder.). That is, the valid
input XML file is expected within the /folder
. See Example 19-28.
X12 Samples
The X12 samples are located in:
$samples/selfservice/x12/b2b-201-X12_4010_850_File/x12_ss.xml
The schemas are located in:
$samples/selfservice/x12/b2b-201-X12_4010_850_File/schemas
Use the following command:
ant -f ant-b2b-util.xml b2bselfservice -Dinput="$samples/selfservice/x12/b2b-201-X12_4010_850_File/x12_ss.xml"
Custom Samples
The Custom samples are located in:
$samples/selfservice/custom/b2b-101-Custom_1.0_orders_generic_file/custom_ss.xml
The schemas are located in;
$samples/selfservice/custom/b2b-101-Custom_1.0_orders_generic_file/schemas
Use the following command:
ant -f ant-b2b-util.xml b2bselfservice -Dinput="$samples/selfservice/ custom\b2b-101-Custom_1.0_orders_generic_file/custom_ss.xml"
ebMS Samples
The ebMS samples are located in:
$samples/selfservice/custom/ b2b-106-Custom_1.0_orders_ebMS/buyer_setup_selfservice/ ebms_buyer_ss.xml
The schemas are located in:
$samples/selfservice/custom/ b2b-106-Custom_1.0_orders_ebMS/buyer_setup_selfservice/schemas
Use the following command:
ant -f ant-b2b-util.xml b2bselfservice -Dinput="$samples/selfservice/custom/ b2b-106-Custom_1.0_orders_ebMS/buyer_setup_selfservice/ ebms_buyer_ss.xml"
Resubmitting a Message
This utility resubmits an application message or a wire message for a selected business message.
ant -f ant-b2b-util.xml b2bresubmit
The resubmit count gets reflected in the Oracle B2B console reports for the application message or wire message.
Note:
The resubmit functionality for payload rectification will only work for outbound messages for application messages. This is not valid for inbound cases.
ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dmsgid=12345 -Dpayloadpath=/scratch/viramamo/fmwhome/AS11gR1SOA/bin/3a4_req.xml
Note:
It is mandatory that you provide at least one message searching or matching criteria
for resubmit (excluding maxcount
,
exclresubmit
, and mode
)
Table 19-14 lists the options for this utility.
Table 19-14 Options for b2bresubmit Utility
Option | Description | Domain | Required |
---|---|---|---|
direction |
The direction of the message. |
|
- |
msgsource |
The message source. |
|
- |
|
The message ID. |
- |
- |
|
Document type. |
- |
- |
|
Message state. |
- |
- |
|
The |
Date format must be provided within double quotes.
Note: This cannot be a future date. |
Yes, when |
|
The |
Date format must be provided within double quotes.
Note:
|
Yes, when |
|
Agreement name. |
- |
- |
|
This option is applicable for outbound application message resubmission, by providing the rectified file path. |
- |
- |
|
The trading partner name. The trading partner name cannot be the hostname. |
- |
- |
|
- |
- |
- |
|
- |
- |
- |
|
The sender |
- |
- |
|
Simulates the command without actual execution by either retrieving the affected rows or their count. It lists and shows the count of messages for the selected criteria. It does not resubmit the messages, but just lists the information. |
|
- |
|
Excludes the already resubmitted message. |
Default value: Allowed values:
|
- |
|
Excludes a specific message ID. |
One or more message IDs (comma-separated) |
- |
|
- |
- |
- |
|
Limits the maximum number of messages to be resubmitted for the selected criteria
and enables resubmission in batch. When |
Positive integer |
- |
|
Resubmission for a changed |
- |
- |
|
Used in the case of file-based MessageID List, Conversation ID-based resubmit. |
- |
- |
|
Works in tandem with |
- |
- |
|
- |
- |
- |
|
- |
Comma-separated |
- |
Example 19-29 Resubmits an Outbound Message with Message ID 12345
ant -f ant-b2b-util.xml b2bresubmit -Ddirection=OUTBOUND -Dmsgsource=APPMSG -Dmsgid=12345\
Example 19-30 Other Examples
ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Ddoctype=850 ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dfromdate="29/11/2009 5:40 AM" -Dtodate="30/11/2009 7:39 AM" ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dagreement="Acme_GlobalChips_X12_4010_850_File" ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=WIREMSG -Dmsgstate=MSG_ERROR ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dfromdate="29/11/2009 5:40 AM" -Dtodate="30/11/2009 7:39 AM" -Ddirection=OUTBOUND ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dfromdate="29/11/2009 5:40 AM" -Dtodate="30/11/2009 7:39 AM" -Ddirection=INBOUND ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dmsgid=12345 -Dpayloadpath="/tmp/850.xml" ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dmsgid=39950852 -Dexclresubmit=true ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=WIREMSG -Dmsgid=39950852 -Dexclstate=MSG_COMPLETE ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dagreement="Acme_GlobalChips_X12_4010_850_File" -Dexclmsgid=33774513 ant -f ant-b2b-util.xml b2bresubmit -Dmsgsource=APPMSG -Dfromdate="29/05/2010 5:40 AM" -Dtodate="30/05/2010 7:39 AM" -Dmode=list
Resubmitting Messages Based on the Protocol Message ID
Protocol message ID can be provided in three ways.
The following examples illustrates how to resubmit messages based on the protocol message IDs.
Example 19-31 Specifying a single protocol message ID
ant -f ant-b2b-util.xml b2bresubmit -Dprotocolmessageid="@0AE4A13C13049AF1C940000011B831E8"
Example 19-32 Specifying a comma-separated list of protocol message IDs
ant -f ant-b2b-util.xml b2bresubmit -Dprotocolmessageid="@0AE4A13C13049AF1C940000011B831E8,@0AE56A6F13049AF21500000016729990"
Example 19-33 Specifying a list of protocol message IDs (one protocol message ID in one row) in a file
ant -f ant-b2b-util.xml b2bresubmit -Dsourceid=protocolmessageid -DfilePath="inputProtMsgId.txt"
Note:
Use only one of the preceding options at a time. Using a combination of the preceding options in a single command may return unexpected results.
Scheduling Trading Partner Downtime
This utility schedules downtime for a trading partner.
ant -f ant-b2b-util.xml b2bschedule
Table 19-15 lists the options for this utility.
Table 19-15 Options for b2bschedule Utility
Option | Description | Domain | Required |
---|---|---|---|
|
Indicates if the script will schedule or unschedule a downtime. |
|
Yes |
|
A descriptive name for the scheduled downtime. |
- |
Yes |
tp |
Trading partner name. |
- |
Yes (except in |
fromdate |
The date and time at which to begin the downtime. |
Date format must be provided within double quotes.
|
No |
|
The date and time at which to end the downtime. |
Date format must be provided within double quotes.
|
No |
|
Channel name |
- |
No |
|
Extends a previously created schedule. See Example 19-39. |
|
No |
The following are examples of scheduling trading partner downtime using the
b2bschedule
utility. The command does not need to be in a
single line.
Example 19-34 Schedule trading partner downtime for a specific channel and duration
ant -f ant-b2b-util.xml b2bschedule -mode=schedule -Dtp="OracleServices" -Dfromdate="28/05/2010 06:10 AM" -Dtodate="28/05/2010 06:15 AM" -Dchannelname="MarketInc_AS2_DC" -Dschedulename= "Maintenance"
Example 19-35 Schedule a particular channel for downtime
ant -f ant-b2b-util.xml b2bschedule -mode=schedule -Dtp="MarketInc" -Dchannelname="MarketInc_ebMS_DC" -Dschedulename= "Maintenance"
Example 19-36 Schedule the trading partner for downtime
In this example, all channels of this trading partner will be down for an unknown
duration. Executing the unschedule
command separately, as shown in
Example 19-38, brings the trading partner back to an active state.
ant -f ant-b2b-util.xml b2bschedule -mode=schedule -Dtp="MarketInc" -Dschedulename= "Maintenance"
Example 19-37 Schedule downtime for a particular duration of time
ant -f ant-b2b-util.xml b2bschedule -mode=schedule -Dtp="MarketInc" -Dfromdate="28/05/2010 03:05 AM" -Dtodate="28/05/2010 03:08 AM" -Dschedulename= "Maintenance"
Example 19-38 Unscheduling the scheduled event
ant -f ant-b2b-util.xml b2bschedule -Dmode=unschedule -Dschedulename="Maintenance"
Example 19-39 Extend an existing schedule
Create a schedule for a particular time frame for all the channels for a remote tp by entering the following:
ant -f ant-b2b-util.xml b2bschedule -Dtp=GlobalChips -Dfromdate="31/08/2010 10:47 AM" -Dtodate="31/08/2010 10:57 AM" -Dschedulename=Load -Dchannelname=GlobalChips_File_Endpoint
Extend the schedule by creating another schedule with the same name, with the start
time as the end time of the previously created schedule (31/08/2010 10:57 AM) and
the end time to which you want to extend the schedule, and then pass the parameter
-Dextend=true
:
ant -f ant-b2b-util.xml b2bschedule -Dtp=GlobalChips -Dfromdate="31/08/2010 10:57 AM" -Dtodate="31/08/2010 11:57 AM" -Dschedulename=Load -Dchannelname=GlobalChips_File_Endpoint -Dextend=true
Managing the Keystore
Certificate expiry must be identified and notified to the Administrator as it affects the message flow with security. Oracle B2B exposes Public API/Ant commands to check the certificate for expiry. You can use b2bmanagekeystore
to define a schedule and encapsulate these APIs for proper alert mechanism.
Note:
As a prerequisite, it is required to configure the Java key store in Oracle B2B.
ant -f ant-b2b-util.xml b2bmanagekeystore [-Dmode=list | -Dalias="cert_name" | -Ddays=num_days ]
Table 19-16 lists the options for this utility.
Table 19-16 Options for b2bmanagekeystore Utility
Option | Description | Domain | Required |
---|---|---|---|
|
List all the certificate alias in the keystore and its expiry dates |
|
No |
|
Certificate status and its expiry date of the provided alias |
- |
No |
|
List all the certificates which will expire within the days specified |
integer |
No |
Example 19-40 Get a List of Certificate Aliases
ant -f ant-b2b-util.xml b2bmanagekeystore -Dmode=list
Example 19-41 Get the Status of a Certificate
ant -f ant-b2b-util.xml b2bmanagekeystore -Dalias="MarketInc_Cert"
Example 19-42 Get a List of Certificates Expiring at a Future Date
ant -f ant-b2b-util.xml b2bmanagekeystore -Ddays=15
Note:
When using Farm Keystore Service (FKS), it is recommended to use the Oracle Enterprise Manager Control console for any kind of keystore manageability.
Updating the Keystore
This utility updates the keystore location and password.
ant -f ant-b2b-util.xml b2bkeystoreupdate
Table 19-17 lists the mandatory parameters for this utility.
Table 19-17 Parameters for b2bkeystoreupdate Utility
Option | Description |
---|---|
|
List all the certificate alias in the keystore and its expiry dates |
|
Certificate status and its expiry date of the provided alias |
Example:
ant -f ant-b2b-util.xml b2bkeystoreupdate -Dkeystorelocation="/tmp/acme.jks" -Dkeystorepassword="welcome"
Errors During Import
This utility resolves a broken pipe error.
If you get the following broken pipe error, use Oracle WebLogic Server Administration Console to increase Maximum Message Size to 200000000.
[java] Exception in thread "main" java.lang.Exception: java.rmi.UnmarshalException: Broken pipe; nested exception is: [java] java.net.SocketException: Broken pipe [java] at oracle.tip.b2b.utility.B2BCommandLineUtility.upgradeRepository(B2BCommandLineUtility.java:548) [java] at oracle.tip.b2b.utility.B2BCommandLineUtility.main(B2BCommandLineUtility.java:601) [java] Caused by: java.rmi.UnmarshalException: Broken pipe; nested exception is: [java] java.net.SocketException: Broken pipe
Moving B2B Agreement from a Test to a Production Environment
Note:
Agreement T2P promotion is for Oracle B2B only.
Procedures for moving a B2B agreement from a source to a target environment include:
Export a Single Agreement as a ZIP File
To export a single agreement from the test system:
Generate a Config Plan in XML Format Using the Command Line
Once you have exported the agreement as a file named
agreementexport.zip
, you can use the b2bconfig
command
to generate the configplan.
ant -f ant-b2b-util.xml b2bconfig -Dmode="generate"
-Dexportfile="path/filename.zip"
-Dconfigplan="path/configplan.xml"
For example:
ant -f ant-b2b-util.xml b2bconfig -Dmode="generate"
-Dexportfile="/server/it2p/Test1_Outbound/OB_MDS_EXPORT_OB.zip"
-Dconfigplan="/server/it2p/Test1_Outbound/OB_MDS_EXPORT_OB.xml"
-DaddAllDCParameters=true - DaddAllDocParameters=true -Ddebug=true
Parameter | Description |
---|---|
b2bgeneratepasswordkey |
Generates the key for password. |
mode |
Set to one of the following:
|
exportfile |
The single agreement export file, exported from the deployment page or agreement page in UI or command line agreement export. |
configplan |
The path and filename where the configplan exists or will be generated. |
generatedexportfile |
The new file the is generated after the
|
addAlDCParameters |
By default, all channel parameters are not available
in the configplan. To extract all parameter set
This will generate non-changeable parameters in read only mode. |
addAllDocParameters |
By default, all override doc parameters are not
available in the configplan. To extract all parameter set
This will generate non-changeable parameters in read only mode. |
debug |
Set to |
passkey |
The key which is stored in CSF against the password. |
password |
The password for metadata. |
Edit the Config Plan for the Production Environment
You can edit the configplan metadata to reflect values in the production environment.
Note:
Do not change the attribute and readonly values in the
configplan.xml
, or the structure of the XML. This could
cause the metadata to be corrupted. You should only change the
readwrite
value in the value
element.
All of the parameters in the configplan cannot be updated. Only
parameters with ReadWrite
scope can be updated. Parameters with
readonly
scope are for reference only.
Update the Export Metadata with the Config Plan Changes
You must update the agreementexport.zip
file with the
changes to the configplan.
ant -f ant-b2b-util.xml b2bconfig
-Dmode="publishandimport" -Dexportfile="path/filename.zip"
-Dconfigplan="path/configplan.xml"
-Dgeneratedexportfile="path/filename.zip" -Ddebug=true
For example:
ant -f ant-b2b-util.xml b2bconfig
-Dmode="publishandimport" -Dexportfile="/server/it2p/MDS_EXPORT.zip"
-Dconfigplan="/server/it2p/MDS_EXPORT.xml"
—Dgeneratedexportfile="/server/it2p/MDS_EXPORT_new.zip”
-Ddebug=true
Parameter | Description |
---|---|
b2bgeneratepasswordkey |
Generates the key for password. |
mode |
Set to one of the following:
|
exportfile |
The single agreement export file, exported from the deployment page or agreement page in UI or command line agreement export. |
configplan |
The path and filename where the configplan exists or will be generated. |
generatedexportfile |
The new file the is generated after the
|
addAlDCParameters |
By default, all channel parameters are not available
in the configplan. To extract all parameter set
This will generate non-changeable parameters in read only mode. |
addAllDocParameters |
By default, all override doc parameters are not
available in the configplan. To extract all parameter set
This will generate non-changeable parameters in read only mode. |
debug |
Set to |
passkey |
The key which is stored in CSF against the password. |
password |
The password for metadata. |