Search found 89 matches

by john.morton
Tue Jan 14, 2014 10:36 am
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

You need use a newer version of the tech preview. At least version: 20130820.101
by john.morton
Mon Jan 13, 2014 3:44 pm
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

Also, we've made a change to this area for service pack 2 which should make this easier for simple order numbering group situations. We've added an overload to .NewOrder() which requires no arguments. If you use this method, we'll examine your current profile's order numbering group, and if we can a...
by john.morton
Mon Jan 13, 2014 3:36 pm
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

What is the version on the libraries you are using?
by john.morton
Fri Jan 10, 2014 5:10 pm
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

I wrote a little WinForm app using your sample code, and the below works. There were a couple issues... The OrderCreationSpec is intended to be used to specify how to create an order. So, you need to make sure to setup the ordernumber, prefixes, templates, etc... before you use it to create an order...
by john.morton
Fri Jan 10, 2014 12:18 pm
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

Could you please post your whole code sample for this?
by john.morton
Fri Jan 10, 2014 11:30 am
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

Please ensure you have the following using statements:

Code: Select all

using SoftPro.Select.Client;
using SoftPro.OrderTracking.Client.Orders;
using SoftPro.ClientModel;
using SoftPro.ClientModel.Linq;
using SoftPro.Select.Client.Profiles;
by john.morton
Fri Jan 10, 2014 10:30 am
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

Also, below is an updated version of the sample to generate and consume order numbers. When doing this, you'll also need to consider any prefix and/or suffix that might be required in your IOrderNumberGroup. These can then be provided, if needed, to the OrderCreationSpec along with the base Number. ...
by john.morton
Thu Jan 09, 2014 1:31 pm
Forum: Integration Development
Topic: Cameron API New Order
Replies: 39
Views: 5182

Re: Cameron API New Order

You'll need to access the IProfileManager and IOrderNumberingManager in order to generate the appropriate next order number for the profile in question. Obviously, if you can adjust to use any other profile you might want to create Orders for. IOrderNumberingManager numberManager = selectServer.GetS...
by john.morton
Tue Jan 07, 2014 9:35 am
Forum: Server
Topic: Setting Default Profiles
Replies: 1
Views: 973

Re: Setting Default Profiles

Assuming that you're writing this against the 2.6 version of the API (Boylan), our recommendation is to have multiple users to represent the different profiles you might need to access to. As you saw, it's purely based off their default profile, so you can have those different users setup with the a...
by john.morton
Thu Nov 21, 2013 10:26 am
Forum: Integration Development
Topic: IDocumentImage Properties Explained
Replies: 6
Views: 881

Re: IDocumentImage Properties Explained

Must I always supply a local file instead of a URI?
You shouldn't have to always provide a local file, but I believe there are some issues with the formatting of the supplied URI. Glad to hear you're good to go now.