Search found 78 matches

by uwdoug79
Thu Jul 01, 2021 3:45 pm
Forum: General
Topic: Create Order With Multiple Templates
Replies: 1
Views: 2821

Create Order With Multiple Templates

I have code that applies a template when creating an order in the API. Is it possible to add multiple templates to be applied to the order when created. I need to apply a default template to each order besides the unique one that gets picked when my users select a certain order type. if (oTemplate.S...
by uwdoug79
Mon Dec 14, 2020 7:36 pm
Forum: General
Topic: Security Integration w/4.3.41
Replies: 1
Views: 908

Security Integration w/4.3.41

With the new release of 4.3.41 I can't get my integration application to login through the mid tier with credentials that are working in 4.3.38. I consistently get a "Security Error" trying to create a SelectServer instance both using the new PIN technology and not using it. the only chang...
by uwdoug79
Wed Apr 29, 2020 11:43 am
Forum: Integration Development
Topic: Setting the Trust Account for an order via the API
Replies: 23
Views: 9737

Re: Setting the Trust Account for an order via the API

So we only have 1 trust account so I wanted to set it directly but this does not appear to be working.

order.SetTag("TrustAccountId", "WICTUSB7743");

should this work ??

Doug
by uwdoug79
Thu Jun 20, 2019 2:53 pm
Forum: Integration Development
Topic: Adding a Attorney Representation
Replies: 4
Views: 1372

Re: Adding a Attorney Representation

so nevermind, I have coded the following which is working. I had to code the addition of my contacts so the buyer and seller came before the attorney so there was an object in the order["contacts"] so I could loop through the collection to get the required buyer seller contact. if (Convert...
by uwdoug79
Thu Jun 20, 2019 9:04 am
Forum: Integration Development
Topic: Adding a Attorney Representation
Replies: 4
Views: 1372

Re: Adding a Attorney Representation

I am trying to follow along with this older thread but I am not able to set the BUYER or SELLER reference object to the .Represents contact field. NOTE: I know that ContactType.Buyer is not correct but this is the code that I currently have in my attempt to set the ...Represents field. Just using = ...
by uwdoug79
Fri May 03, 2019 1:23 pm
Forum: General
Topic: TitleCompany Hidden Fields
Replies: 2
Views: 1342

Re: TitleCompany Hidden Fields

I may have answered my own question. if (tccodes.HasProperty("LogoSize_FNF#") && tccodes.GetIsSupported("LogoSize_FNF#")) { tccodes["LogoSize_FNF#"] = Convert.ToString(myRow["LogoSize"]).Trim(); } if (tccodes.HasProperty("LogoWidthHTML_FNF#")...
by uwdoug79
Fri May 03, 2019 12:17 pm
Forum: General
Topic: TitleCompany Hidden Fields
Replies: 2
Views: 1342

TitleCompany Hidden Fields

I am trying to correct a logo problem occurring with the Titlecompany record. In order to get this to work I am being asked to set the values for LogoSize and LogoWidthHTML that exist on the company record. I am able to see the field come back to my object in the query of the company lookup code but...
by uwdoug79
Fri Mar 01, 2019 11:29 am
Forum: Integration Development
Topic: DisplayOnOrderOpen check box
Replies: 3
Views: 955

Re: DisplayOnOrderOpen check box

I was able to get the permissions set appropriately for the CTWINOESxxx users and I can now set the DisplayOnOrderOpen flag. I am still having an issue with the Note.Type field. "Specific Cast is Not Valid". I know for the categories I need to instantiate INoteCategory but I don't see the ...
by uwdoug79
Thu Feb 28, 2019 4:49 pm
Forum: Integration Development
Topic: DisplayOnOrderOpen check box
Replies: 3
Views: 955

Re: DisplayOnOrderOpen check box

I commented out the DisplayOnOrderOpen line earlier and that is when I found that the 2nd line caused the same error. I will have someone check the Permissions on the CTIWINOES users in SPS and re-post the results.
by uwdoug79
Thu Feb 28, 2019 12:32 pm
Forum: Integration Development
Topic: DisplayOnOrderOpen check box
Replies: 3
Views: 955

DisplayOnOrderOpen check box

I added 2 new lines of code to this working loop and now I Can't get notes to load. I am getting Cannot Access Member on the following lines: OrderNotes.SetProperty("DisplayOnOrderOpen", true); OrderNotes.SetProperty("Type", Convert.ToString(dtNotes.Rows[iNoteRow].ItemArray[1]));...