JIMSMITH
Members-
Content Count
27 -
Joined
-
Last visited
Community Reputation
0 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thanks for responding to my post. Can you advise which example code should I place the creds and IdSMTP1 code into. FYI: The geoffsmith sample project prompts for user authentication. I can have that as this will execute as a back end process and not be visible to the ui. I just need to send an email
-
Has anybody been able to send email from Delphi using oauth2. Every example that I have seen includes SMTP.UseTLS := utUseExplicitTLS; and SMTP.AuthType := satOAuth2; which appear undefined in my version 11 or 10.x? I am starting from scratch as Google tends to change access requirements to send email.
-
I have 5 frames that I want to create at runtime. The frames are descended from tframe2 or tframe3 how can I create this and allow the type (tframe2 or tframe3) to be specified in a variable.? So the object will be specified in a variable and the type will be in a variable as well. So tframe2 and tframe3 will be defined and created at runtime, but the actual frame and descendant from type would be in a variable.
-
loading a .jpeg to a via stream timagelist at runtime
JIMSMITH posted a topic in RTL and Delphi Object Pascal
Is it possible to load a timagelist with a .jpeg via TMemory stream? -
Using Deplhi TWebmodule with parameter
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
I was never able to trigger the action with this implementation. I will try again. I don't think that I tried it properly. -
Using Deplhi TWebmodule with parameter
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
I'm just glad to know that there is a legitimate format / usage of the option that you specified. I'm not quite sure how to specify the parameters in the url with the /getname/* option. The other option was /getname?name=jim&zip=91001 Don't know how to implement the other. -
Using Deplhi TWebmodule with parameter
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
Okay. Thanks for your assistance. -
Using Deplhi TWebmodule with parameter
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
Thanks for responding to my post. This actually worked by removing the additional characters / symbols. Do you know why there are many examples the use other options in the pathinfo property? Examples are: /getname/* {seen in some youtube videos} /getname/data/:id {thoughts are that id would be a parameter} Now I am curious. -
I created a webmodule and assigned an action pathinfo of /getname*. The question is how do I create parameters for values say parameters ssn and dob would this become /getname/($ssn)/($dob)? Would really appreciate clarity.
-
Thanks for the clarity. Now I know how the versioning education.
-
Thanks for responding. This is correct, but what is the difference between the 102, 103, 104, 110 packages. I could not tie them to a specific version of Delphi. FYI I have Delphi version 10.1, and 11.
-
Has anybody had experience installing the DelphiMVCFramework. The documentation references opening C:\dmvc\ideexpert\DMVC_IDE_Expert_D102Tokyo.dproj from the IDE. The problem that I have is that this does .dproj file does not exist. Trying to see if this will work for me or do I need to create my own mini rest server.
-
Need to create a rest web server do I need IIS?
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
Thanks for your response. -
Need to create a rest web server do I need IIS?
JIMSMITH replied to JIMSMITH's topic in Network, Cloud and Web
Only need to serve a few hundred connections at most. Initially a dozen will work.. -
I need to create a rest server that returns a json data after the client application provide 3 parameters of information. We will take those 3 parameters from a client connection, execute a query, and build the json to return. The client application will be remote to the server that hosts the db server. Do I need IIS or can the delphi rest server listen on port 80 and receive the parameters and return the response?