-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating bulk B2B Partner profile using DCM #88
Comments
First, be able to successfully send SOAP messages to port 5550 that do what
you want, then you can choose between raw-mgmt-call, which is somewhat
inconvenient, or you can properly integrate it into DCM and UCD.
If you decide to integrate it, first modify Soma.java, following the
pattern that you see in that file. That code will be exposed automatically
via the <wdp> ant task, which is the wrapper around the Java code. The
next step is to define a new task in dcm-taskdesfs.ant.xml, which calls the
<wdp> ant task. Then add a task to deploy.ant.xml which invokes the task
that you added to . That completes introducing your message into DCM, so
now you can add a custom UCD step, which is documented online.
Hope that helps.
Thanks,
Rich
…On Wed, Jan 17, 2018 at 11:12 AM, RajashekarGoudPonnam < ***@***.***> wrote:
Hi Team,
We have a requirement for creating a bulk B2B partner profile using DCM.
Could you please suggest how to implement it.
We have performed some tasks like creating a checkpoint, deleting
checkpoint and etc. I have gone through the deploy.ant.xml file but I
didn't see any target name with the B2B partner.
I researched on this, we can implement the same using *raw-mgmt-call
target.*. Could you please anyone suggest me.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#88>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADuMmrgn6wevKKEIAqz9OsPs7MGxmG0bks5tLjgEgaJpZM4Rhw2_>
.
|
Thanks richgroot, We created single B2b partner profile using raw-mgmt-call in DCM successfully. Now our requirement is to create multiple B2b partner profile. How do we write loop conditions in deploy.ant.xml file. Please help me onthis. |
Looping in ant is ... difficult and ugly, at best. The <forxpath> task
(see taskForXpath.java) allows ant to iterate over parts of an xml document
and execute the same set of ant tasks for each thing. There are several
examples in dcm-taskdefs.ant.xml. Note that the <sequential> you see in
those examples is always required. If you can organize your definitions
into xml then you can probably use <forxpath>.
…On Mon, Jan 29, 2018 at 8:44 AM, RajashekarGoudPonnam < ***@***.***> wrote:
Thanks richgroot,
We created single B2b partner profile using *raw-mgmt-call* in DCM
successfully. Now our requirement is to create multiple B2b partner profile.
How do we write loop conditions in deploy.ant.xml file. Please help me
onthis.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#88 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADuMmlp6Z-mDHKSPwiq7dna5NFJ7O2pyks5tPedBgaJpZM4Rhw2_>
.
|
Thanks richgroot, We will try and let you know the results. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Team,
We have a requirement for creating a bulk B2B partner profile using DCM. Could you please suggest how to implement it.
We have performed some tasks like creating a checkpoint, deleting checkpoint and etc. I have gone through the deploy.ant.xml file but I didn't see any target name with the B2B partner.
I researched on this, we can implement the same using raw-mgmt-call target.. Could you please anyone suggest me.
The text was updated successfully, but these errors were encountered: