Explorations in Component Interface
This is part one of a multi-part series exploring some quirks in using Component Interfaces with Application Engine programs. If nothing else, hopefully, these will give new developers some insight...
View ArticleExplorations in Component Interface: PeopleCode
This is a continuation of the following posts: Part 1: Creating the Component Interface Part 2: Security Now, we need to write some code to use the Component Interface. Let’s use the Application...
View ArticleExplorations in Component Interface Revisited
This is a continuation of the following posts: Part 1: Creating the Component Interface Part 2: Security Part 3: PeopleCode Part 4: Handling Errors This time, we are trying some of the suggestions from...
View ArticlePeopleCode: Unzipping
I come upon a requirement to unzip a file in a platform independent way. Jim Marion got me most of the way, but his code didn’t write it to file. Here’s my adjustment to make a function that wrote it...
View ArticleScheduling a Process from PeopleCode
The process scheduler provides a good standard way to launch a process. You simply add a subpage to your run control page, and the delivered “Run” button does all of the work for you. But sometimes,...
View ArticleNull Date in PeopleCode
Just the other day, I needed to set a Date to null or blank, and I couldn’t remember how to do it. Here’s my notes so that I can remember next time. Javier’s blog came to the rescue: Javier’s...
View ArticleNew PeopleCode Dump Method
One of my old tricks was to create a PeopleCode dump from the system. Then I could use a text editor tool such as gVim or Ultraedit to search through the code to find examples or certain uses of...
View ArticlePinging and Posting from PeopleCode
I had a need to Ping a server to see if the server could get to it. I also tried to post to it. This code could be helpful for others, so I want to share it. A post should normally go through the...
View ArticlePeopleCode Evaluate
A question came up today that I have wondered about for a while: how does break and evaluate work in PeopleCode? I think I have been telling it wrong, so I decided to do a little experiment. Note: This...
View ArticlePeopleCode to Add to Every Fluid Page
I find myself adding these same lines of code in the PreBuild of every fluid component. (As Jim Marion would say, there’s no such thing as a Fluid page, and I would get in trouble for my title.)...
View Article