Home > Articles > Programming > ASP .NET

This chapter is from the book

Web Page Workflow Implementation

With the navigation and templates in place, the next step is to develop a workflow process for content based on information provided by the users at the design review. You may want to begin with a pilot to learn more about how your organization will choose to implement these new business processes. Start with just one section of the site, and identify the parties involved in the approval process. This workflow is based on standard CMS routing and approval functionality.

The task of the pilot is implementation of a sample workflow. For instance, a document may be routed from an author to a content editor and to an additional approval level such as a manager or legal review. I recommend that a representative workflow be chosen, as it may be copied and customized for subsequent workflows that are established.

Some routing and approval processes are better in theory than in practice. Complicated business rules can create content bottlenecks and delay content publication, thereby undermining the portal's raison d'EAtre. This concept is not easy to explain but becomes quite apparent when a sample workflow is tested. People in the approval loop quickly learn how important it is to stay on top of their content responsibilities.

There are five levels in the MCMS approval process. You can omit some levels, but note that some levels have multiple steps. These levels are:

  1. Template designer

  2. Author

  3. Editor

  4. Moderator

  5. Subscriber

Start by writing out the business rules for approval in plain English, also known as pseudocode. For instance, the press release section might have the following rules:

  • All press releases for the organization will be based on the press release template. This template has been created by the template designer and is available in the Press Releases channel.

  • Authors for press releases include the offices of the president, chief operating officer, vice president of sales, marketing department, public affairs, and investor relations. Each of these offices has designated one or more users as authorized to create press releases. The press releases shall conform to the corporate style guide. After a press release is created, it is sent to the editor.

  • The public affairs office is responsible for editing press releases. If a press release draft requires additional rewriting, it is returned to the originating office. If normal editing is sufficient, it is edited and forwarded to the web site moderator.

  • The legal department and webmaster serve as moderators for press releases. They make a final check for substance and formatting. When they approve content, it is released into production.

Now let's take a closer look at how the steps are implemented in CMS.

Template Designer

The template designer is a web programmer with skills in graphic design and HTML programming. Using Visual Studio.NET, the template designer creates a template for a press release containing placeholder controls for content to be provided by the authors. The template contains standard elements such as masthead, copyright information, and navigation, as shown in Figure 9.14.

09fig14.jpgFigure 9.14. Template Design for a Press Release


If multiple channels are supported, the designer may create multiple templates to match each of the channels. For instance, the default template could be for a browser on a computer or workstation, but a second template could be for a PDA or a cellular phone.

Each of the placeholders in a template has properties that determine the content that is allowed. For instance, a placeholder may restrict the author to enter plain text only without hyperlinks, graphics, or even a specific font. The appearance of the text entered is determined by the template itself. This approach would make sense for fields such as the press release title or date, for instance. On the other hand, a placeholder may allow images to be inserted, such as photographs, or file attachments. The power to insert such objects is one of the reasons why an approval process is needed, as these could create security or performance problems for users.

Templates have to be set up only once, so template building is intense at the beginning of projects and tapers off as the portal reaches maturity. Moreover, design elements are likely to be shared among templates by means of the resource library, so the tenth template is easier to create than the first.

If authoring will be performed in Word rather than in the browser interface to the template, the template designer must allow for this choice in the process and plan for how the Word authoring will map to the template, using the MCMS Content Connector wizard.

Author

With the template in place, the author fills in the placeholders in the template. For a press release, this would mean entering information such as the date, title, contact person, phone number, and body of the press release, as shown in Figure 9.15.

09fig15.jpgFigure 9.15. Press Release Template in Author View


The placeholders are now rendered as fields of the appropriate type. Icons on the fields indicate the type of entry that is allowed, such as plain text, hyperlinks, formatted text, or attachments. If prompted, the user can upload graphics to reside on a page or documents to be stored as attachments to a page.

Finally, the author specifies additional page properties such as the start and end date for publishing the content. Each time the page is saved, the old version is stored as well to allow rollback to a previous version. The author finally submits the finished page to the editor.

As soon as the page is submitted by the author, the editor is notified. She views the page by means of the web interface and edits the material directly. Again, each saved version is stored, so the author can review the editing marks and differences between the original and edited versions. Figure 9.16 shows the page status for a document that has been flagged by the author as complete and ready for editorial review.

09fig16.gifFigure 9.16. Editor Notification


If there are no editors or moderators, pages are automatically published when approved by the author. You may also have scenarios with editors or moderators or both. In the latter case, if the editor approves the page, it is forwarded to the moderator for final approval.

Editors and Moderators

The moderator checks the page and the publication date, and then approves or disapproves the page. The moderator can change the page or its properties. Moderators have special tools available in MCMS. The Production Manager is a web interface that allows moderators to see a list of pages in the product process, and then go from page to page to move it through the process (Figure 9.17).

09fig17.gifFigure 9.17. MCMS Production Manager Page


If you want to publish pages without editor or moderator approval, you can simply not assign an editor or moderator to the channel where the page is published. This means that the author makes the decision on when the page is approved. The author can defer publishing by entering the start date in the page properties.

Subscriber

As soon as the publication date for an approved page arrives, it becomes visible to all the users of the site. Subscribers do not have access to any of the administrative features of MCMS. From their perspective, content management is invisible.

To define the approval process, go to the Channel Manager program. Select the channel on which you would like to define the approval process. If needed for your workflow, add editors and moderators to the process so they will receive the pages and approve them. Figure 9.18 shows the user rights assigned to a specific channel.

09fig18.gifFigure 9.18. Adding an Approval to the Channel


Rights groups are assigned roles along with the permissions that are mapped to these roles. In the example shown in the figure, a group called ASTDDevelopers has the rights to design templates. A special group called Career Channel Editors has been created just for this channel to grant rights for maintaining a single channel without elevating the users to this status for the entire site.

Adding Workflow Email Notification

The out-of-the-box tools of MCMS provide web interfaces to monitor content management tasks, such as Production Manager and Approval Assistant. The problem with these tools is that they require users to go to a URL to see whether they have any pending web pages to approve. Your users will be thankful if you take this a step further and enable what MCMS calls workflow email notification. This function advises reviewers of events as they occur in the approval cycle. The following code shows how to create email notification to reviewers when a page is submitted for approval. It uses the Microsoft Internet Information Services (IIS) Simple Mail Transfer Protocol (SMTP) service and Collaboration Data Object (CDO) COM components to send email programmatically.1

Workflow email notification requires the ASP.NET version of Microsoft Content Management Server (MCMS 2002).

To implement workflow email notification:

  1. In the global.asax file, add a reference to Microsoft.ContentManagement.Publishing.

  2. At the top of the global.asax file, add the following using statements:

    using System.Web.Mail;
    using Microsoft.ContentManagement.Publishing;
    using Microsoft.ContentManagement.Publishing.Events;
    
  3. Within the Global class in the global.asax file, add the following event handler:

    public void CmsPosting_Submitted( Object source, _
    ChangedEventArgs e ) {
        MailMessage mail = new MailMessage();
        mail.From ="MCMS Web Author";
        Posting submittedPosting = (Posting)e.Target;
        mail.Subject = submittedPosting.Name & " has been _
        submitted for approval.";
        mail.Body = submittedPosting.Name & " has been _
        submitted for approval. ";
        foreach (User approver in _
        submittedPosting.Approvers)
        {
            mail.To = approver.ClientAccountName & _
            "@youknow.net";
            SmtpMail.Send(mail);
        }
    }
    

To register the event, follow the steps outlined in the help topic "Registering for Publishing Events Using HTTP Modules." Be sure to check the help file to get the code that matches your release of the product.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020