Click here to Skip to main content
15,888,579 members
Articles / Web Development / CSS

15 Steps to Develop a Product Management System in Only a Day

Rate me:
Please Sign up or sign in to vote.
4.83/5 (51 votes)
23 Mar 2010GPL34 min read 248K   4.8K   163  
The article introduces how to easily develop business solutions in RapidWebDev through developing a product management system with the special requirement step by step.
<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net" xmlns:tx="http://www.springframework.net/tx">
	<object id="ConcreteDataApi" type="RapidWebDev.Platform.Linq.ConcreteDataApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="RelationshipApi" type="RapidWebDev.Platform.Linq.RelationshipApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="HierarchyApi" type="RapidWebDev.Platform.Linq.HierarchyApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<property name="Cache" ref="Cache" />
	</object>
	
	<object id="OrganizationApi" type="RapidWebDev.Platform.Linq.OrganizationApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<constructor-arg name="platformConfiguration" ref="PlatformConfiguration" />
		<constructor-arg name="hierarchyApi" ref="HierarchyApi" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="MembershipApi" type="RapidWebDev.Platform.Linq.MembershipApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<constructor-arg name="organizationApi" ref="OrganizationApi" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="PermissionApi" type="RapidWebDev.Platform.Linq.PermissionApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<constructor-arg name="membershipApi" ref="MembershipApi" />
		<constructor-arg name="roleApi" ref="RoleApi" />
		<constructor-arg name="organizationApi" ref="OrganizationApi" />
		<constructor-arg name="platformConfiguration" ref="PlatformConfiguration" />
		<constructor-arg name="permissionFilePath" value="~/TestData/permissions.config" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="PermissionBridge" type="RapidWebDev.Platform.Web.DynamicPage.PermissionBridge, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<constructor-arg name="permissionApi" ref="PermissionApi" />
		<constructor-arg name="siteMapApi" ref="SiteMapApi" />
	</object>

	<object id="SiteMapApi" type="RapidWebDev.Platform.SiteMapApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<constructor-arg name="roleApi" ref="RoleApi" />
		<constructor-arg name="organizationApi" ref="OrganizationApi" />
		<constructor-arg name="permissionApi" ref="PermissionApi" />
		<constructor-arg name="platformConfiguration" ref="PlatformConfiguration" />
		<constructor-arg name="siteMapFilePath" value="~/TestData/siteMap.config" />
	</object>

	<object id="RoleApi" type="RapidWebDev.Platform.Linq.RoleApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
		<property name="Cache" ref="Cache" />
	</object>

	<object id="SequenceNoApi" type="RapidWebDev.Platform.Linq.SequenceNoApi, RapidWebDev.Platform">
		<constructor-arg name="authenticationContext" ref="AuthenticationContext" />
	</object>

	<object id="ApplicationApi" type="RapidWebDev.Platform.Linq.ApplicationApi, RapidWebDev.Platform">
		<property name="Cache" ref="Cache" />
	</object>

	<object id="AuthenticationContext" type="RapidWebDev.Tests.MockedAuthenticationContext, RapidWebDev.Tests">
		<constructor-arg name="applicationApi" ref="ApplicationApi" />
		<constructor-arg name="applicationNameRouter" ref="ApplicationNameRouter" />
	</object>

	<object id="PlatformConfiguration" type="RapidWebDev.Platform.Initialization.PlatformConfiguration, RapidWebDev.Platform">
		<property name="AreaHierarchyTypeValue" value="Area" />
		<property name="OrganizationType">
			<object type="RapidWebDev.Platform.OrganizationTypeObject, RapidWebDev.Platform">
				<property name="Domain" value="Department" />
				<property name="Name" value="Management Group" />
			</object>
		</property>
		<property name="Organization">
			<object type="RapidWebDev.Platform.OrganizationObject, RapidWebDev.Platform">
				<property name="OrganizationName" value="RapidWebDev.Org" />
				<property name="OrganizationCode" value="RWD" />
				<property name="Description" value="http://www.rapidwebdev.org" />
				<property name="Status" value="Enabled" />
			</object>
		</property>
		<property name="Role">
			<object type="RapidWebDev.Platform.RoleObject, RapidWebDev.Platform">
				<property name="RoleName" value="Administrators" />
				<property name="Description" value="System default role allows to manage and access all resources in the system." />
			</object>
		</property>
		<property name="User">
			<object type="RapidWebDev.Platform.UserObject, RapidWebDev.Platform">
				<property name="UserName" value="admin" />
				<property name="DisplayName" value="Administrator" />
				<property name="Email" value="eunge.liu@gmail.com" />
				<property name="PasswordQuestion"><null /></property>
				<property name="MobilePin"><null /></property>
				<property name="IsApproved" value="True" />
			</object>
		</property>
		<property name="Password" value="password1" />
		<property name="PasswordAnswer"><null /></property>
		<property name="Domains">
			<list element-type="RapidWebDev.Platform.Initialization.OrganizationDomain, RapidWebDev.Platform">
				<object type="RapidWebDev.Platform.Initialization.OrganizationDomain, RapidWebDev.Platform">
					<property name="Text" value="%Web, Resources.Membership, OrganizationType_Domain_Department%" />
					<property name="Value" value="Department" />
				</object>
				<object type="RapidWebDev.Platform.Initialization.OrganizationDomain, RapidWebDev.Platform">
					<property name="Text" value="%Web, Resources.Membership, OrganizationType_Domain_Customer%" />
					<property name="Value" value="Customer" />
				</object>
			</list>
		</property>
	</object>
</objects>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
President TCWH
China China
I've worked as a software architect and developer based on Microsoft .NET framework and web technology since 2002, having rich experience on SaaS, multiple-tier web system and website development. I've devoted into open source project development since 2003, and have created 3 main projects including DataQuicker (ORM), ExcelQuicker (Excel Report Generator), and RapidWebDev (Enterprise-level CMS)

I worked in BenQ (8 mo), Bleum (4 mo), Newegg (1 mo), Microsoft (3 yr) and Autodesk (5 yr) before 2012. Now I own a startup company in Shanghai China to deliver the exceptional results to global internet users by leveraging the power of Internet and the local excellence.

Comments and Discussions