Sunday, December 20, 2009

Frame Work on RS232 JAVA APIs for Mobile Device


Mobile CMS Server Clustering



Mobile clients can send request to CMS server for performing the operation. Servers will response to Client request for operation on data. Response will be remobilized according to client request. Progressively transmitted, all tailored to the Client’s capabilities; The CMS Server can be placed at any CMS Server World Wide According to usage/Traffic/ Busy state. In which Clustering Server will be performed to integrate all CMS Server, and Its load balance. Based on Load balance the Client Request will be redirected to other server, which is in free state on clustering server. Here Entire Client/Server Communications is over HTTP Protocols on GPRS Supported GSM Network.


Wednesday, December 2, 2009

Architectural Visualization

Sample Projects: (architectural visualization ):






Please view this with a java enabled browser. Or Click The Above Link



If you need support on this, Feel free to contact me (mahadevan@softrevolutionary.com) or Send SMS Now With Mail ID..



Type SMS Here->


Monday, July 27, 2009

SMS Talk Server For Corporate Use

SMS Talk Server, which is designed by S.MAHADEVAN. (Software Architect)

This software can be use instead of SMPP implementation.

1.) SMPP need Internet Gateway to talk with GSM Gateway.

2.) SMS Talk server will directly talk with GSM Gateway.

For More Business And Technical Information, Contact Me - +919487684330, +919843664418

E-Mail: mahadevan@softrevolutionary.com

individually can provide some return on investment

the ROI of two projects which are composed of a set

of services, processes, decisions and human tasks. Each project

individually can provide some return on investment. However, if we have

the possibility to reuse assets such as services, decisions, process

components and human tasks across two projects the combined ROI of

the projects may become several times higher.

The great news is that the ROI keeps increasing each time the assets are reused in new solutions.

Even better, when these assets are enhanced without breaking their

contract with their consumers, all solutions that used them benefit from

these enhancements without significant cost or delays.

Thursday, July 9, 2009

Java SE Application Design With MVC

What Is Model-View-Controller (MVC)?

If you've programmed with graphical user interface (GUI) libraries in the past 10 years or so, you have likely come across the model-view-controller (MVC) design. MVC was first introduced by Trygve Reenskaug, a Smalltalk developer at the Xerox Palo Alto Research Center in 1979, and helps to decouple data access and business logic from the manner in which it is displayed to the user. More precisely, MVC can be broken down into three elements:

  • Model - The model represents data and the rules that govern access to and updates of this data. In enterprise software, a model often serves as a software approximation of a real-world process.
  • View - The view renders the contents of a model. It specifies exactly how the model data should be presented. If the model data changes, the view must update its presentation as needed. This can be achieved by using a push model, in which the view registers itself with the model for change notifications, or a pull model, in which the view is responsible for calling the model when it needs to retrieve the most current data.
  • Controller - The controller translates the user's interactions with the view into actions that the model will perform. In a stand-alone GUI client, user interactions could be button clicks or menu selections, whereas in an enterprise web application, they appear as GET and POST HTTP requests. Depending on the context, a controller may also select a new view -- for example, a web page of results -- to present back to the user.
Although different architectures allow the three components to interact in different ways, Figure 1 shows a common implementation of the MVC design pattern, as shown in the Sun BluePrints Catalog.



Figure1: A Common MVC Implementation
Figure1. A Common MVC Implementation
 
Interaction Between MVC Components

This section will take a closer look at one way to implement Figure 1 in the context of an application in the Java Platform, Standard Edition 6 (Java SE 6). Once the model, view, and controller objects are instantiated, the following occurs:

  1. The view registers as a listener on the model. Any changes to the underlying data of the model immediately result in a broadcast change notification, which the view receives. This is an example of the push model described earlier. Note that the model is not aware of the view or the controller -- it simply broadcasts change notifications to all interested listeners.
  2. The controller is bound to the view. This typically means that any user actions that are performed on the view will invoke a registered listener method in the controller class.
  3. The controller is given a reference to the underlying model.

Once a user interacts with the view, the following actions occur:

  1. The view recognizes that a GUI action -- for example, pushing a button or dragging a scroll bar -- has occurred, using a listener method that is registered to be called when such an action occurs.
  2. The view calls the appropriate method on the controller.
  3. The controller accesses the model, possibly updating it in a way appropriate to the user's action.
  4. If the model has been altered, it notifies interested listeners, such as the view, of the change. In some architectures, the controller may also be responsible for updating the view. This is common in Java technology-based enterprise applications.

Figure 2 shows this interaction in more detail.

Figure 2: A Java SE Application Using MVC
Figure 2. A Java SE Application Using MVC
 

As this article mentioned earlier, the model does not carry a reference to the view but instead uses an event-notification model to notify interested parties of a change. One of the consequences of this powerful design is that the many views can have the same underlying model. When a change in the data model occurs, each view is notified by a property change event and can update itself accordingly. For example, Figure 3 shows two views that use the same data model.

 
Figure 3: Multiple Views Using the Same Model
Figure 3. Multiple Views Using the Same Model
 
Modifying the MVC Design

A more recent implementation of the MVC design places the controller between the model and the view. This design, which is common in the Apple Cocoa framework, is shown in Figure 4.

 
Figure 4: An MVC Design Placing the Controller Between the Model and the View
Figure 4. An MVC Design Placing the Controller Between the Model and the View
 

The primary difference between this design and the more traditional version of MVC is that the notifications of state changes in model objects are communicated to the view through the controller. Hence, the controller mediates the flow of data between model and view objects in both directions. View objects, as always, use the controller to translate user actions into property updates on the model. In addition, changes in model state are communicated to view objects through an application's controller objects.

Thus, when all three components are instantiated, the view and the model will both register with the controller. Once a user interacts with the view, the events are nearly identical:

  1. The view recognizes that a GUI action -- for example, pushing a button or dragging a scroll bar -- has occurred, using a listener method that is registered to be called when such an action occurs.
  2. The view calls the appropriate method on the controller.
  3. The controller accesses the model, possibly updating it in a way appropriate to the user's action.
  4. If the model has been altered, it notifies interested listeners of the change. However, in this case, the change is sent to the controller.

Why adopt this design? Using this modified MVC helps to more completely decouple the model from the view. In this case, the controller can dictate the model properties that it expects to find in one or more models registered with the controller. In addition, it can also provide the methods that effect the model's property changes for one or more views that are registered with it.

Using the Modified MVC

This section of the article shows you how to put this design into practice, starting with the model. Suppose that you want to paint some text using a simple display model with five properties. Code Sample 1 shows a simple component that you can use to create such a model.

Code Sample 1

public class TextElementModel extends AbstractModel {      private String text;     private Font font;     private Integer x;     private Integer y;     private Integer opacity;     private Integer rotation;       /**      * Provides the means to set or reset the model to      * a default state      */     public void initDefault() {          setOpacity(89);         setRotation(0);         setText("Sample Text");         setFont(new Font("Arial", Font.BOLD, 24));         setX(50);         setY(50);      }      //  Accessors       public String getText() {         return text;     }      public void setText(String text) {          String oldText = this.text;         this.text = text;          firePropertyChange(             DefaultController.ELEMENT_TEXT_PROPERTY,             oldText, text);     }      public Font getFont() {         return font;     }      public void setFont(Font font) {          Font oldFont = this.font;         this.font = font;          firePropertyChange(             DefaultController.ELEMENT_FONT_PROPERTY,             oldFont, font);     }      //  The remaining accessors for properties are omitted.  } 

Note that the rest of the accessors follow the standard JavaBeans model, although they are omitted in Code Sample 1. For reference, Code Sample 2 shows the underlying AbstractModel class, which simply uses the javax.beans.PropertyChangeSupport class to register, deregister, and notify interested listeners of changes to the model.

Code Sample 2

public abstract class AbstractModel {      protected PropertyChangeSupport propertyChangeSupport;      public AbstractModel()     {         propertyChangeSupport = new PropertyChangeSupport(this);     }      public void addPropertyChangeListener(PropertyChangeListener listener) {         propertyChangeSupport.addPropertyChangeListener(listener);     }      public void removePropertyChangeListener(PropertyChangeListener listener) {         propertyChangeSupport.removePropertyChangeListener(listener);     }      protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {         propertyChangeSupport.firePropertyChange(propertyName, oldValue, newValue);     }   } 
 

The Controller

Between the model and view lies the controller. First, take a look at the code for the abstract controller superclass, as shown in Code Sample 3.

Code Sample 3

public abstract class AbstractController implements PropertyChangeListener {      private ArrayList registeredViews;     private ArrayList registeredModels;      public AbstractController() {         registeredViews = new ArrayList();         registeredModels = new ArrayList();     }       public void addModel(AbstractModel model) {         registeredModels.add(model);         model.addPropertyChangeListener(this);     }      public void removeModel(AbstractModel model) {         registeredModels.remove(model);         model.removePropertyChangeListener(this);     }      public void addView(AbstractViewPanel view) {         registeredViews.add(view);     }      public void removeView(AbstractViewPanel view) {         registeredViews.remove(view);     }       //  Use this to observe property changes from registered models     //  and propagate them on to all the views.       public void propertyChange(PropertyChangeEvent evt) {          for (AbstractViewPanel view: registeredViews) {             view.modelPropertyChange(evt);         }     }       /**      * This is a convenience method that subclasses can call upon      * to fire property changes back to the models. This method      * uses reflection to inspect each of the model classes      * to determine whether it is the owner of the property      * in question. If it isn't, a NoSuchMethodException is thrown,      * which the method ignores.      *      * @param propertyName = The name of the property.      * @param newValue = An object that represents the new value      * of the property.      */     protected void setModelProperty(String propertyName, Object newValue) {          for (AbstractModel model: registeredModels) {             try {                  Method method = model.getClass().                     getMethod("set"+propertyName, new Class[] {                                                       newValue.getClass()                                                   }                                );                 method.invoke(model, newValue);              } catch (Exception ex) {                 //  Handle exception.             }         }     }   } 
 

The AbstractController class contains two ArrayList objects, which are used to keep track of the models and views that are registered. Note that whenever a model is registered, the controller also registers itself as a property change listener on the model. This way, whenever a model changes its state, the propertyChange() method is called and the controller will pass this event on to the appropriate views.

The final method, setModelProperty(), employs some magic to get its work done. In order to keep the models completely decoupled from the controller, the code samples in this article have employed the Java Reflection API. In this case, when this method is called with the desired property name, you hunt through the registered models to determine which one contains the appropriate method. Once you find it, you invoke the method using the new value. If the method is not called, the getMethod() will throw a NoSuchMethodException, which the exception handler ignores, allowing the for- loop to continue.

Code Sample 4 shows the source code for the default controller class. This class consists of only property constants and methods called by the GUI event listeners of the view.

Code Sample 4

public class DefaultController extends AbstractController {      public static final String ELEMENT_TEXT_PROPERTY = "Text";     public static final String ELEMENT_FONT_PROPERTY = "Font";     public static final String ELEMENT_X_PROPERTY = "X";     public static final String ELEMENT_Y_PROPERTY = "Y";     public static final String ELEMENT_OPACITY_PROPERTY = "Opacity";     public static final String ELEMENT_ROTATION_PROPERTY = "Rotation";      //  Code omitted      public void changeElementText(String newText) {         setModelProperty(ELEMENT_TEXT_PROPERTY, newText);     }      public void changeElementFont(Font newFont) {         setModelProperty(ELEMENT_FONT_PROPERTY, newFont);     }      public void changeElementXPosition(int newX) {         setModelProperty(ELEMENT_X_PROPERTY, newX);     }      public void changeElementYPosition(int newY) {         setModelProperty(ELEMENT_Y_PROPERTY, newY);     }      public void changeElementOpacity(int newOpacity) {         setModelProperty(ELEMENT_OPACITY_PROPERTY, newOpacity);     }      public void changeElementRotation(int newRotation) {         setModelProperty(ELEMENT_ROTATION_PROPERTY, newRotation);     }  } 
 

The View

This example will have two views displaying the data from the model: a property-editor view and a graphical page view. Both of these are implementations of a JPanel, inserted into either a JDialog or JFrame. The dialog box allows the user to update the values of the model, and the frame panel simply reflects the changes as the final textual display. The author of this article built this example using the NetBeans Swing GUI Builder, formerly referred to as Project Matisse, to design the GUI forms.

Code Sample 5 shows the source code for the property-editor view, the more interesting of the two. The first section is simply devoted to initialization of the components, which for the most part was automatically generated by the NetBeans integrated development environment (IDE) in the initComponents() method. All of this section is omitted but is present in the downloadable code. Any other initialization that you need to perform -- in this case, creating custom models for JSpinner and JSlider objects or adding DocumentListeners to the JTextField components -- is handled in the localInitialization() method.

Code Sample 5

public PropertiesViewPanel(DefaultController controller) {          this.controller = controller;          initComponents();         localInitialization();      }      // ‹editor-fold defaultstate="collapsed" desc=" Local Initialization "›      /**      * Used to provide local initialization of Swing components      * outside of the NetBeans automatic code generator      */     public void localInitialization() {          opacitySpinner.setModel(new SpinnerNumberModel(100, 0, 100, 1));         opacitySlider.setModel(new DefaultBoundedRangeModel(100, 0, 0, 100));          rotationSpinner.setModel(new SpinnerNumberModel(0, -180, 180, 1));         rotationSlider.setModel(new DefaultBoundedRangeModel(0, 0, -180, 180));          text.getDocument().addDocumentListener(new DocumentListener() {              public void insertUpdate(DocumentEvent e) {                 textDocumentChanged(e);             }              public void removeUpdate(DocumentEvent e) {                 textDocumentChanged(e);             }              public void changedUpdate(DocumentEvent e) {                 textDocumentChanged(e);             }          });      }      // ‹/editor-fold› 
 

Note that the automatically generated NetBeans IDE code folds in the source code so that the developer can collapse each of these sections when it is not needed:  

// ‹editor-fold defaultstate="collapsed" desc=" Local Initialization "› // ‹/editor-fold› 
 

If you're using the NetBeans IDE, this practice is highly recommended.

The second section of the PropertiesViewPanel class deals exclusively with the model. In Code Sample 6, a modelPropertyChange() method is called by the controller whenever the model reports a state change.

Code Sample 6

// ‹editor-fold defaultstate="collapsed" desc=" Model Event Handling Code "›      public void modelPropertyChange(final PropertyChangeEvent evt) {          if (evt.getPropertyName().equals(                    DefaultController.ELEMENT_X_PROPERTY)) {             String newStringValue = evt.getNewValue().toString();             xPositionTextField.setText(newStringValue);         } else if            (evt.getPropertyName().equals(                    DefaultController.ELEMENT_Y_PROPERTY)) {             String newStringValue = evt.getNewValue().toString();             yPositionTextField.setText(newStringValue);         } else if            (evt.getPropertyName().equals(                    DefaultController.ELEMENT_OPACITY_PROPERTY)) {             int newIntegerValue = (Integer)evt.getNewValue();             opacitySpinner.setValue(newIntegerValue);             opacitySlider.setValue(newIntegerValue);         } else if             (evt.getPropertyName().equals(                    DefaultController.ELEMENT_ROTATION_PROPERTY)) {             int newIntegerValue = (Integer)evt.getNewValue();             rotationSpinner.setValue(newIntegerValue);             rotationSlider.setValue(newIntegerValue);         } else if            (evt.getPropertyName().equals(                    DefaultController.ELEMENT_TEXT_PROPERTY)) {             String newStringValue = evt.getNewValue().toString();             text.setText(newStringValue);         } else if            (evt.getPropertyName().equals(                    DefaultController.ELEMENT_FONT_PROPERTY)) {             Font f = (Font)evt.getNewValue();             String fontString = f.getFontName() + " " + f.getSize();             font.setText(fontString);             currentFont = f;         }          //  Remainder of the code omitted      }      // ‹/editor-fold› 
 

Again, this code sample omits portions of the code that are similar to the sections shown.

The final portion consists of the GUI event listeners. Code Sample 7 contains listeners that are called whenever GUI events occur, such as pushing the Change Font button or the Opacity spinner buttons, or resetting the text in any of the text fields. These are largely event listeners that most Swing developers are already familiar with. If you're using the NetBeans IDE, you'll see that the IDE can automatically generate many of these using the GUI developer.

Code Sample 7

 // ‹editor-fold defaultstate="collapsed" desc=" GUI Event Handling Code "›      //  Code omitted      private void yPositionTextFieldFocusLost(java.awt.event.FocusEvent evt) {         try {             controller.changeElementYPosition(                 Integer.parseInt(yPositionTextField.getText()));         } catch (Exception e) {             //  Handle exception.         }     }      private void yPositionTextFieldActionPerformed(java.awt.event.ActionEvent evt) {         try {             controller.changeElementYPosition(                 Integer.parseInt(yPositionTextField.getText()));         } catch (Exception e) {             //  Handle exception.         }     }      //  Code omitted -- code for xPosition     //  is nearly the same as for yPosition.      private void changeFontButtonActionPerformed(java.awt.event.ActionEvent evt) {          JFontChooserDialog fontChooser = new             JFontChooserDialog((Dialog)this.getTopLevelAncestor());         fontChooser.setSelectedFont(currentFont);         fontChooser.setVisible(true);          Font returnedFont = fontChooser.getSelectedFont();         if (returnedFont != null) {             controller.changeElementFont(returnedFont);         }     }      private void opacitySliderStateChanged(javax.swing.event.ChangeEvent evt) {         controller.changeElementOpacity((int)opacitySlider.getValue());     }      private void rotationSliderStateChanged(javax.swing.event.ChangeEvent evt) {         controller.changeElementRotation((int)rotationSlider.getValue());     }      private void opacitySpinnerStateChanged(javax.swing.event.ChangeEvent evt) {         controller.changeElementOpacity((Integer)opacitySpinner.getValue());     }      private void rotationSpinnerStateChanged(javax.swing.event.ChangeEvent evt) {         controller.changeElementRotation((Integer)rotationSpinner.getValue());     }      private void textDocumentChanged(DocumentEvent evt) {          Document document = evt.getDocument();         try {             controller.changeElementText(document.getText(0,             document.getLength()));         } catch (BadLocationException ex) {             //  Handle exception.         }     }      // ‹/editor-fold› 

Issues With Application Design

Once the application is up and running, you immediately run into a problem. Consider the following chain of events:

  1. One of the Swing components in the view receives a change, presumably from the user action.
  2. The appropriate controller method is called.
  3. The model is updated. It notifies the controller of its property change.
  4. The view receives a change event from the controller and attempts to reset the value of the appropriate Swing components.
  5. The appropriate controller method is called, and the model is updated again.

At this point, any of three different scenarios can occur, depending on what Swing component you use and how robust your model is.

  • The Swing component that prompted the initial change refuses to update itself the second time, noting that its property state cannot be updated again while it is in the process of notifying listeners of the initial state change. This primarily occurs when you use Swing text components.
  • The model notes that the value of the second update matches that of the first, its current value, and refuses to send a change notification. This is always a safe programming practice, and it automatically occurs if you use the PropertyChangeSupport class provided in the java.beans package. However, it does not keep the model from receiving a redundant update.
  • No safeguards are in place on either the model or the Swing component, and the program enters an infinite loop.

This issue occurs because the Swing components are autonomous. For example, what happens if the user presses the up arrow of the JSpinner component in PropertiesViewPanel, incrementing the spinner's value by one? After the value is updated, a GUI event listener method that is listening for value changes is called, opacitySpinnerStateChanged(), which in turn calls the controller and then updates the appropriate property in the model.

With a traditional MVC design, the view would still contain the previous value, and the change in the model would update the view to the current value. However, there is no need to update the Swing component because it has already reset itself to the correct value -- it did so before it even passed an event to the controller.

How do you get around this? One way is to write a mechanism that tells the model or the controller not to propagate a change notification under these circumstances, but this is not a good idea. Remember that more than one view may be listening for changes on the model. If you shut down the change notification for the model, no other listeners, including other views, will be notified of the change. In addition, other components in the same view may rely on the property change notification, with a slider and spinner combination, for example.

Ideally, each Swing component would be aware of its current value and the value that the view is trying to set it to. If they match, no change notifications will be sent. However, some Swing components include this logic, and others do not. One possible solution is to check the incoming changed value of the model against the current value stored in the Swing component. If they are identical, there is no need to reset the value of the Swing component.

Code Sample 8 shows an update of the modelPropertyChange() method to demonstrate this approach.

Code Sample 8

public void modelPropertyChange(final PropertyChangeEvent evt) {          if (evt.getPropertyName().equals(DefaultController.ELEMENT_X_PROPERTY)) {              String newStringValue = evt.getNewValue().toString();             if (!xPositionTextField.getText().equals(newStringValue))                 xPositionTextField.setText(newStringValue);          }          //  Remaining code omitted      } 
 

The final example, which uses two delegate views, is shown in Figure 5. The second delegate makes use of the Java 2D libraries to display the text, which is beyond the scope of this article. However, the source code is relatively easy to follow and is included in the downloadable source code.

Figure 5. Both Views Attached to a Single Model
Figure 5. Both Views Attached to a Single Model
 
Common Swing Component Listeners

As this article has shown throughout, part of the initialization of each delegate or controller requires you to subscribe to various Swing component events. However, individual Swing components can often generate multiple event types. Table 1 presents some common listener methods.

Table 1. Common Swing Event Listener Methods
 
Event to Monitor
Swing Event Listener Method
JButton pressed; JCheckBox pressed; JRadioButton pressed; JToggleButton toggled.
JButton.addActionListener(java.awt.event.ActionListener)
JSpinner value changed.
JSpinner.addChangeListener(javax.swing.event.ChangeListener)
JTextField, JFormattedTextField, JPasswordField or JTextArea character(s) are added, changed, or deleted.
JTextField.getDocument().addDocumentListener(javax.swing.event.DocumentListener)
JTextField return button is pressed, or focus switches to another component.
JTextField.addActionListener(java.awt.event.ActionListener)
JComboBox new entry is selected. from list.
JComboBox.addActionListener(java.awt.event.ActionListener)
JComboBox editor (typically a text field) characters are added, changed, or deleted.
JTextField editor = ((JTextField)comboBox.getEditor().getEditorComponent());
editor.getDocument().addDocumentListener(javax.swing.event.DocumentListener)
JComboBox return button is pressed.
JComboBox.addActionListener(java.awt.event.ActionListener)
JComboBox pop-up menu is about to become visible, invisible, or be cancelled without a selection.
JComboBox.addPopupMenuListener(javax.swing.event.PopupMenuListener)
JList new entry is selected.
JList.addListSelectionListener(javax.swing.event.ListSelectionListener)
JTabbedPane new tab is selected.
JTabbedPane.addChangeListener(javax.swing.event.ChangeListener)
JScrollBar adjustment is made.
JScrollBar.addAdjustmentListener(java.awt.event.AdjustmentListener)
JScrollPane adjustment is made.
JScrollPane.getHorizontalScrollBar().addAdjustmentListener(java.awt.event.AdjustmentListener)
JScrollPane.getVerticalScrollBar().addAdjustmentListener(java.awt.event.AdjustmentListener)
JPopupMenu is about to become visible, invisible, or be cancelled without a selection.
JPopupMenu.addPopupMenuListener(javax.swing.event.PopupMenuListener)
JMenu is about to be become visible or invisible, or be cancelled without a selection.
JMenu.addMenuListener(javax.swing.event.MenuListener)
JMenuItem (in standard or pop-up menu) is selected.
JMenuItem.addActionListener(java.awt.event.ActionListener)
JSlider value is changed.
JSlider.addChangeListener(javax.swing.event.ChangeListener)
 
 
Conclusion

MVC is one of the staples of any GUI programmer's toolkit. This article has shown how to implement a variation of the MVC design using Java SE and the Swing libraries. In addition, it has demonstrated some common issues that programmers may face when using MVC, as well as listed common Swing component events that any Java platform programmer can use when creating a view.

Saturday, June 27, 2009

IT-Telecom with Java Support

Operational Support Systems are the components that a company — historically this would have been a telephone operator or telco, but now normally called a Communications Service Provider (CSP) — uses to run its network and business. Typical types of activities that count as part of OSS are taking a customer’s order, configuring network components, creating a bill and managing faults.
In the days long gone (i.e. before about 1985) OSS activities were normally done solely by people passing paper around. However, it became plain around that time that much of this activity could be replaced by computers. In the next 5 years or so, the telephone companies created a number of computing systems (or software applications) which automated much of this activity. However, they were typically not linked to each other and therefore often required manual intervention. For example, consider the case where a customer wants to order a new telephone service. The ordering system would take the customer’s details and details of their order, but would not be able to configure the telephone exchange directly - this would be done by a switch management system. So the details of the new service would need to be transferred from the order handling system to the switch management system - and this would normally be done by a technician rekeying the details from one screen into another - a process often referred to as “swivel chair integration”. This was clearly another source of inefficiency, so the focus on the next few years was on creating automated interfaces between the OSS applications - OSS integration. To a large extent, cheap and simple OSS integration remains the goal of most of the Telco’s IT departments to this day.
A brief history of OSS ArchitectureA lot of the work on OSS has been centred on defining its architecture. (To people who don’t work in IT, the concept of an architecture that isn’t about creating buildings may seem strange, but there you are…) Put simply, there are 4 key elements of OSS:
* Processes- the sequence of events
* Data- the information that is acted upon
* Applications- the components that implement processes to manage data
* Technology- how we implement the applications
Early work on defining OSS architecture was done by the ITU-T in its TMN model. This established a 4-layer model of TMN applicable within an OSS :
* Business Management Level(BML)* Service Management Level(SML)* Network Management Level(NML)* Element Management Level(EML)(Note: a fifth level is mentioned at times being the elements themselves, though the standards speak of only four levels) This was a basis for later work. Network management was further defined by the ISO using the FCAPS model - Fault, Configuration, Accounting, Performance and Security. This basis was adopted by the ITU-T TMN standards as the Functional model for the technology base of the TMN standards M.3000 - M.3599 series. Although the FCAPS model was originally concieved and is applicable for any IT enterprise network, it was adopted for use in the public networks run by telcommunication service providers adhering to ITU-T TMN standards.
The newest stage in OSS architecture work has come with the TMF’s [1] NGOSS programme, which was established in 2000. This established a set of principles that an OSS integration should adopt, along with a set of models that provide standardised approaches. The models include an information model (the Shared Information/Data model, or SID), a process model (the enhanced Telecom Operation Map, or eTOM) and a lifecycle model. The TMF describes NGOSS as
* a “loosely coupled”* distributed* component based architecture
along with functioning application components upon which a Communications Service Provider business can run.
* The components interact through a common information bus* The components can be programmed through the use of a process management tool to control the business processes of the service provider using the functionality provided by the components
The TMF’s work so far has been mainly technology neutral, which therefore implies that there remains considerable work to create a functioning OSS estate from NGOSS principles. However, there are now a number of standardised technology-specific implementations of NGOSS, of which OSS through Java initiative (OSS/J) is one.

Quick Contact Via SMS Send Now

Type SMS Here->