Search found 55 matches

by ddudley3
Thu Aug 10, 2017 3:53 pm
Forum: Integration Development
Topic: Want to mimic what the F2 key does In client
Replies: 1
Views: 711

Want to mimic what the F2 key does In client

I would like to mimic what the F2 key does when inside a control in the client where it "reset" or nullifies or what not.

What api call or property can I set to do this?

Specifically I'm trying to clear a loan with F2 in the API.

Thanks.
by ddudley3
Fri Apr 07, 2017 6:23 am
Forum: Integration Development
Topic: XML config and package registration for settings
Replies: 6
Views: 1065

Re: XML config and package registration for settings

4.2.41213.12

using the .iss installer used by other shell packages and that's where it's failing. very odd in my opinion
by ddudley3
Thu Apr 06, 2017 8:46 am
Forum: Integration Development
Topic: XML config and package registration for settings
Replies: 6
Views: 1065

Re: XML config and package registration for settings

so it seems if I manually register the dll and run the select.exe /setup manually it's all fine.

It's only a problem if I run this from the Installer built.
by ddudley3
Wed Apr 05, 2017 8:57 pm
Forum: Integration Development
Topic: XML config and package registration for settings
Replies: 6
Views: 1065

Re: XML config and package registration for settings

right the server attributes are registered. This is when the Shell Package I've developed is being installed and it is happening on multiple machines.. but not my development box. Yes the client and SDK are on the machines. I am having it happen on Windows 7 so I don't think it's a permission issue ...
by ddudley3
Wed Apr 05, 2017 1:42 pm
Forum: Integration Development
Topic: XML config and package registration for settings
Replies: 6
Views: 1065

Re: XML config and package registration for settings

My compiled out put being run on a client machine produces the same error [09:22:43.314] [0x00000003] System.NullReferenceException: Object reference not set to an instance of an object. Stack Trace: at SoftPro.Select.Managers.ConfigurationManager.SetupConfigurationSections(String productName, Dicti...
by ddudley3
Thu Mar 30, 2017 2:34 pm
Forum: Integration Development
Topic: XML config and package registration for settings
Replies: 6
Views: 1065

XML config and package registration for settings

I am using an xml defined to register settings inside the [core].[ServiceAttribute] table in Select. starts with <Services xmlns="http://schemas.softprocorp.com/select/integration/registration/2008/04"> I have run the command sps register /server:http://localhost:8080 <filename> at the ser...
by ddudley3
Wed Jan 18, 2017 7:54 am
Forum: Integration Development
Topic: Events or popups or Dialogs while removing contacts
Replies: 1
Views: 536

Events or popups or Dialogs while removing contacts

I'm trying to remove an existing contact in an Order through the API and I'm running into the same rules that pop up when I do this in the UI. i.e. Lender has a loan # and amount. Is there a way to 1) remove a contact suppressing these rules? 2) have it run the same process the UI would .. (i.e. aut...
by ddudley3
Mon Jan 16, 2017 8:59 am
Forum: Installation and Setup
Topic: Changing the port of the server
Replies: 1
Views: 1291

Changing the port of the server

after installtion..

the default of 8080 keeps seeming to have a conflict with something randomly and I cannot determine what it is.

Is there a way to change the port from the 8080 after installation and restart the services?
by ddudley3
Tue Jan 10, 2017 3:19 pm
Forum: Integration Development
Topic: Date Converting automagically after being set in API
Replies: 1
Views: 650

Date Converting automagically after being set in API

I'm setting a date value through the API var title = order.Title; var products = (IList)title.TitleProducts; foreach (dynamic product in products) { if (product.Type == TitleProductType.Commitment) { product.EffectiveDate = commitmentDateTime; } } where CommitmentDateTime is a value such as "01...
by ddudley3
Fri Jan 06, 2017 7:50 am
Forum: Integration Development
Topic: Searching across orders in Custom Fields
Replies: 1
Views: 524

Searching across orders in Custom Fields

Is it possible to implement a search across orders using Custom Fields that have been defined?

i.e.

Code: Select all

IOrderStore os = ss.GetService<IOrderStore>();
var orders = os.Orders.Where(t => t.Number == "2014080001");
But instead have the custom field where .Number is?