This forum is for programmers who have questions about the source code.
-
nairobi
- Posts: 3
- Joined: Tue Oct 05, 2021 10:31 pm
Post
by nairobi » Tue Oct 05, 2021 10:59 pm
Steps to reproduce:
- I compiled the opendental 21.2
- then added the OpenDentalEConnector directory into the compiled folder
- lauched opendental & clicked on eServices then got the below error
No eService account found for this registration key.
System.Exception
at OpenDental.UI.ProgressOD.ShowDialogProgress() in C:\opendental21.2\OpenDental\UI\Progress\ProgressOD.cs:line 75
at OpenDental.FormEServicesSetup.GetSignupOut(SignupOut signupOut) in C:\opendental21.2\OpenDental\Forms\FormEServicesSetup.cs:line 79
at OpenDental.FormEServicesSetup.FormEServicesSetup_Load(Object sender, EventArgs e) in C:\opendental21.2\OpenDental\Forms\FormEServicesSetup.cs:line 26
-
nairobi
- Posts: 3
- Joined: Tue Oct 05, 2021 10:31 pm
Post
by nairobi » Wed Oct 06, 2021 12:16 pm
Oh boy. Is it then correct to conclude that the only way for one to get access to the OD data, using a complied OD, is via custom plugins given APIs are behind getting under open dental support?
The use-case here is simply to get to send SMSes via an external API such as twilio.
-
jordansparks
- Site Admin
- Posts: 5770
- Joined: Sun Jun 17, 2007 3:59 pm
- Location: Salem, Oregon
-
Contact:
Post
by jordansparks » Wed Oct 06, 2021 8:30 pm
What about making a Program Link and using it to send out the PatNum of the current patient? Then, query the database to get the phone number, and use that to send to the twilio API. That's a pretty straightforward bit of code, and far less complex than a custom plugin.
-
nairobi
- Posts: 3
- Joined: Tue Oct 05, 2021 10:31 pm
Post
by nairobi » Thu Oct 07, 2021 9:00 pm
Thanks for the tip!