Search found 1290 matches

by BobRichards
Thu Dec 08, 2016 2:37 pm
Forum: Integration Development
Topic: Commitment Exceptions with Hyperlink
Replies: 10
Views: 2373

Re: Commitment Exceptions with Hyperlink

Please provide a code example of what you have so we have a good starting place.
by BobRichards
Wed Dec 07, 2016 12:55 pm
Forum: Integration Development
Topic: Register customizations for multiple transactions
Replies: 2
Views: 614

Re: Register customizations for multiple transactions

1) If you mean the Register dialog, then no - you not allowed to add buttons. You should used the ribbon control. 2) The Register screen is part of the Proform Order command table - not a separate editor that could be detected and used in a CTD context statement. You can manually tie your button ena...
by BobRichards
Mon Dec 05, 2016 5:20 pm
Forum: Integration Development
Topic: Receiving Notifications
Replies: 6
Views: 951

Re: Receiving Notifications

Can you ping the SOAP server from the mid-tier machine? Are you using the same SOAP protocol on both sides? Is there a firewall blocking the port?

Try running the EventListener example on the mid-tier machine to make sure there are no network issues.
by BobRichards
Fri Dec 02, 2016 4:09 pm
Forum: Integration Development
Topic: How to Abort Ledger and Transaction changes
Replies: 4
Views: 803

Re: How to Abort Ledger and Transaction changes

Both sets of events inherit from the .NET CancelEventArgs so you can use the same Cancel property to stop the transactions. The transaction events have a CancellationReason string whose value will be displayed to the user in a MessageBox if the transaction is cancelled.
by BobRichards
Fri Dec 02, 2016 2:53 pm
Forum: Integration Development
Topic: How to Abort Ledger and Transaction changes
Replies: 4
Views: 803

Re: How to Abort Ledger and Transaction changes

You can look at the ITransactionsManager in the SDK to see all the possible integration events that are applicable to validation (TransactionAdding, TransactionChanging, ...). You would subscribe to them the same way you did for ProForm events. // Get transaction manager. ITransactionsManager txnMan...
by BobRichards
Fri Dec 02, 2016 11:11 am
Forum: Integration Development
Topic: Receiving Notifications
Replies: 6
Views: 951

Re: Receiving Notifications

No. We have customers using it in this manner without problem.
by BobRichards
Thu Dec 01, 2016 2:53 pm
Forum: Integration Development
Topic: Receiving Event Notifications
Replies: 1
Views: 560

Re: Receiving Event Notifications

See this forum post for notification test information.
by BobRichards
Thu Dec 01, 2016 2:47 pm
Forum: Integration Development
Topic: Publishing a document from the API
Replies: 8
Views: 1407

Re: Publishing a document from the API

You cannot use the document render API to directly perform a publish action. Instead, use the document API to render the file then attach the file to the order Attachments collection. Use the IAttachmentFolder, IAttachmentFile and IAttachmentItem interfaces located in the SoftPro.OrderTracking.Clien...
by BobRichards
Thu Dec 01, 2016 2:11 pm
Forum: Integration Development
Topic: Receiving Notifications
Replies: 6
Views: 951

Re: Receiving Notifications

I have not been able to replicate your problem. I used the EventListener sample that is installed with the SDK. In my case, I modified the baseAddress in "Main.cs" to "http://localhost:8088" since port 8080 is used by my Select midtier instance on my machine. I recommend you revi...
by BobRichards
Thu Dec 01, 2016 10:54 am
Forum: Integration Development
Topic: Receiving Notifications
Replies: 6
Views: 951

Re: Receiving Notifications

I will have an answer for you soon.