State Estimation and Network Marketing Systems

Size: px
Start display at page:

Download "State Estimation and Network Marketing Systems"

Transcription

1 92 CHAPTER 4 SCALABLE AND COST EFFECTIVE MODELS FOR STATE ESTIMATION SERVICES 4.1 INTRODUCTION The power system has expanded to a huge system and transmission among grids is also on the increase. The generation, transmission and distribution systems in an electric power system network experience inevitable changes in its structure. Due to increasing expansion, the power system is becoming the one that is data-intensive, information-intensive, communication-intensive and computation-intensive. The need for integrated and distributed applications for power system analysis is increasing significantly from the last decade. In a large interconnected power system, the basic operations such as load flow, optimal PMU placement, state estimation, economic load dispatch etc., are being carried out using different power system applications executing in heterogeneous platforms and the data required for analysis are stored in different formats. Each power system is represented differently and implemented in different computing paradigm and hence the interoperability between various power system applications needs to be enhanced. The power system operations carried out in a control centre provide valuable information that also needs to be integrated in an efficient manner. Currently, the researchers focus on providing Web enabled solutions for various power system operations and control. Scalability is

2 93 significant to the success of many power sectors currently involved in providing the power system services on the Web. Scalability is a measure of the ability of the application to expand to meet the power utility needs. Scalable applications are able to operate normally as they grow and can have more resources added at anytime to service more customer demands. It is very unlikely that a Web application to meet the consumer needs on a single server. At some point in time it is required to add more servers to meet increasing demands in order to meet service quality requirements. Cloud services are becoming popular in which computing resources are made available on-demand to the user as needed. Cloud computing offers a powerful environment to scale Web applications without difficulty. In Web services environment, the clients can see only the service and not the implementation and the service providers are concerned about the infrastructure required for service delivery. The service providers cannot gain access to their applications from anywhere through their connected devices. In cloud services environment, they need not concern about the infrastructure required for the service delivery. In the cloud computing environment, the applications are purchased, licensed and run over the network instead of the user desktop. The processing power, bandwidth and storage are all managed remotely. Startup cost for providing services in the cloud environment is inexpensive. In cloud computing, investing ahead of demand is not required and we simply use and pay for exactly what we use and when we need it. Service consumers are billed based upon server utilization, processing power used or bandwidth consumed. Large high performance power system applications can benefit from on-demand access and scalability of compute and storage resources provided by the cloud environments.

3 94 The large interconnected power system requires a common computational environment and needs to communicate between the service provider and client in a heterogeneous environment. It became obvious that to have an effective operation of the electric power grid, there needed to be a coordinated effort related to the exchange of information between applications. Since there is a tremendous growth in power systems, an architecture is needed that allows plug-in of new services or upgrading existing services in a granular fashion to address the new requirements. The power system services have to be readily available with universal visibility to be accessed by the clients. The changing environment demands that the control centres be distributed and be fully decentralized, integrated, open, flexible and able to cope up with changes in the power system network. 4.2 WEB ENABLED STATE ESTIMATION SERVICES The existing Web enabled models for power system operations are mainly concerned with sharing of information and do not provide convenient environment for enhancing the interoperability while solving power system applications. Integration of various power system applications is a challenging task, which is of vital importance for coordinated, secure and reliable operation of the power systems. The software architecture for power system applications has experienced profound changes due to new innovations and technological growth in both electrical utilities and information technology industries. The concept of Web based architectures overrides the concept of distributed architectures, which are emerged from component models. Inspite of these developments, it is necessary to develop a model that supports interoperability between services on different platforms in a reliable, scalable and inherently adaptable manner. Such a model provides a loosely coupled

4 95 environment wherein the services can be easily plugged in to the existing system for solving the scalability issues in power system applications. The generalized service oriented model discussed in the last chapter is designed to meet the power system requirements using a single server environment. Dynamic scaling is an inherent feature of a cloud computing environment. The simplest model of cloud computing can be created using a pool of servers that has been virtualized using an application tool like the Web services directory, Universal Description, Discovery and Integration (UDDI) or a network tool used for server load balancing. This can make multiple real or virtual servers appear as a single resource, which is actually meant as a cloud environment. It is proposed to develop Web based models for providing state estimation and optimal PMU placement services and then exported them to Platform as a Service cloud environments such as Google App Engine and Windows Azure. The Web based services are designed using UDDI registry and Model-View-Controller approach for solving state estimation and optimal PMU placement problems respectively. State estimation is essential for the monitoring of power systems and can be obtained using Weighted Least Square algorithm. The result gives the current operating state of the power system which primarily helps in maintaining the security of the power system. The Web provides an environment for invoking the power system services from anywhere through the Internet thus providing an opportunity for the power system engineers to make effective, efficient and timely decisions by understanding the current operating state of the power system without the need for personnel visits to transmission and distribution locations. Web services based model for representation of state estimation service is shown in Figure 4.1. This model has three elements namely State Estimation Service Provider, Power System Registry and Power Systems Client.

5 96 UDDI Registry State Estimation Service Binding Template tmodel Publish Service and Service Description State Estimation Service Description WSDL Available Operations setbus getresult Port Information Endpoint Details Finds the Service and its Description Publish service metadata Creates interface and WSDL based service description. Power System State Estimation Service Client SOAP communicates XML Messages Power System State Estimation Service Provider Figure 4.1 Web Service Model for Power System State Estimation The service provider offers the state estimation service and describes its interface using WSDL (Web Services Description Language) which is in the form of XML that makes the service available in the UDDI Registry. The step by step implementation details of the proposed Web service model for state estimation are given below and its representation as a Web service stack is shown in Figure 4.2. WSFL UDDI UDDI WSDL SOAP HTTP State Estimation Service Flow State Estimation Service Discovery State Estimation Service Publishing State Estimation Service Description XML Based SOAP Messaging Network Figure 4.2 Power System State Estimation Web Service Stack

6 97 The state estimation service interface is created as given below: public interface PSStateEstimationInt extends Remote { public void XMLGenerationPSData() throws RemoteException public void setbus(int busno) throws RemoteException public void getresult(double voltage, double angle) throws RemoteException; public Object[] wls() throws RemoteException; //wls-weighted Least Square Method } The configuration of the interface which is used to create state estimation service description (WSDL file) is depicted as an XML file (config.xml). The configuration file contains the information and details about the deployed state estimation service and metadata such as service name, namespace and description as given below. <configuration> <service name="powerwlsservice" targetnamespace="urn:power" typenamespace="urn:power" packagename="power"> <interface name="power.psstateestimationint "/> </service> </configuration>

7 98 The state estimation service description file contains descriptions about various operations like getresult() and setbus() that are represented in XML as given below: <service name="powerwlsservice" scope="application"> <description>power WLS Service</description> <parameter name="serviceclass">power.powerws</parameter> <operation name="setbus"> // To set the number of buses in the test system input for which the // estimate is be found out <messagereceiver class="org.apache.axis2.receivers. RawXMLINOnlyMessageReceiver"/> </operation>.. </service> To perform the key operations of the proposed Web service model such as publish, find and bind in an interoperable manner, there must be a state estimation Web service stack that embraces standards at each level, as shown in Figure 4.2. State estimation Web service, which is publicly available on the Internet use commonly deployed HTTP protocol. The WSDL file contains various mapping information like PowerWLSServiceHttpBinding, PowerWLSServiceHttpEndpoint and porttype. The porttype defines input and output messages using elements defined in the <types> section. For instance, the input message setbus() is described as an endpoint.

8 99 The state estimation service description which is obtained using config.xml is given below: <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions xmlns:wsdl=" targetnamespace=" <wsdl:documentation>powerwlsservice</wsdl:documentation> <wsdl:message name="setbusrequest"> <wsdl:part name="parameters" element="ns:setbus" /> </wsdl:message> <wsdl:message name="setbusresponse" /> <wsdl:operation name="setbus"> <wsdl:inputmessage="ns:setbusrequest"wsaw:action="urn:setbus"/> <wsdl:output message="ns:setbusresponse" wsaw:action="urn:setbusresponse" /> <wsdl:binding name="powerwlsservicesoap11binding" type="ns:powerwlsserviceporttype"> <wsdl:binding name="powerwlsservicehttpbinding" type="ns:powerwlsserviceporttype"> < verb="post" /> < location="powerwlsservice/setbus" /> <wsdl:input> <mime:content type="text/xml" part="setbus" /> </wsdl:input> <wsdl:service name="powerwlsservice"> <wsdl:port name="powerwlsservicehttpsoap11endpoint" binding="ns:powerwlsservicesoap11binding"> <soap:address location=" services/powerwlsservice. PowerWLSServiceHttpSoap11Endpoint/" /> </wsdl:port> <wsdl:port name="powerwlsservicehttpsoap12endpoint" binding="ns:powerwlsservicesoap12binding"> <soap12:address location=" /services/power WLSService.Power WLSServiceHttpSoap12Endpoint/" />. </wsdl:definitions>

9 100 The state estimation service description file delineates how the service provider and the power system client communicate with each other, provides metadata for defining the state estimation service, represents information about the interface and also provides semantics of how to invoke a service. It contains the information about the data type, binding and address information for invoking the services from the service provider. The service provider reads this information and uses it to access the state estimation service. The proposed Web service model for state estimation requires a registry to deploy the service for easy integration, reuse and effective governance of services to meet the growing requirements. Registry has to delegate permission to the service provider entities to publish their own service descriptions. The registry allows the power system client to discover and communicate with the services efficiently. The main purpose of the registry is to allow fast and reliable communication and interoperability among diverse applications. The state estimation service, which provides the operating state of the power system, is published in the UDDI registry using HTTP POST method. The power system clients communicate with the state estimation service provider using SOAP messages. The body of the SOAP message represents the mandatory processing information between the client and state estimation service provider. SOAP uses the HTTP POST for request and response in the form of messages. The service details of the deployed service such as the service name, service key, bindingtemplate, tmodelinstance and other details can be viewed in the UDDI registry. The UDDI Inquiry API namely the get_servicedetail() gives the full information about the state estimation service structure.

10 101 At the time of operation, the power system clients discover the required service which is available in the Registry. Once the service is discovered, the client will query the services by their names to get the binding information and the identification of the provider. Based on this information, the clients access the provider for invoking the services. The output will be obtained after giving the FindService Request wherein the correct keyedreference is passed which includes the keyname, keyvalue and the tmodel key through the SOAP message. The HTTP POST request to extract the servicekey to find the PowerWLSService is given below: POST /juddi/inquiry HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.4 Host: localhost:9999 Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 672 <soapenv:body> <uddiv2:find_service generic="2.0" maxrows="5" xmlns:uddiv2="urn:uddi-org:api_v2"> <uddiv2:categorybag> <uddiv2:keyedreference keyname="uuid:c1acf26d D70-39B756E62AB4" keyvalue="wsdlspec" tmodelkey="c1acf26d D70-39B756E62AB4"/>..

11 102 The response thus obtained is shown below: HTTP/ OK Server: Apache-Coyote/1.1 Content-Type: text/xml;charset=utf-8 Date: Sun, 13 Jun :55:12 GMT Connection: close <soapenv:body> <servicelist generic="2.0" operator="juddi.org" xmlns="urn:uddi-org:api_v2"> <serviceinfos> <serviceinfo businesskey="08ca ec-11df-aa08- AAAB52B6D56F" servicekey="8dd1b940-74ec-11df-b940-ebd81a843e1d"> <name>powerwlsservice</name> From the above response, the servicekey is obtained. The HTTP POST request submitted to get the URL of the PowerWLSService provider using the servicekey is as follows: POST /juddi/inquiry HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.4 Host: localhost:9999 Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 438

12 103 <soapenv:body> <uddiv2:get_servicedetail generic="2.0" xmlns:uddiv2="urn:uddiorg:api_v2"> <uddiv2:servicekey>8dd1b940-74ec-11df-b940- EBD81A843E1D</uddiv2:serviceKey> </uddiv2:get_servicedetail> </soapenv:body> The response to the above request provides the URL of the PowerWLSService service provider. This URL is used to bind the service. HTTP/ OK <soapenv:body> <servicedetail generic="2.0" operator="juddi.org" xmlns="urn:uddi-org:api_v2"> <businessservice businesskey="08ca ec-11df-aa08-aaab52b6d56f" <name>powerwlsservice</name> <accesspoint URLType="http"> </accesspoint> <overviewurl> </overviewurl> </soapenv:body> Using the URL obtained from the above response, the required PowerWLSService can be invoked. The steps involved in the invocation of state estimation service are shown in Figure 4.3. A SOAP connection is established to the destination as specified in the SOAP message; the power system client is capable of invoking the required state estimation service at the specified port. The SOAP based communication model defines a loosely

13 104 coupled and document-driven communication. Hence, the proposed Web service model for state estimation makes the service provider and the power system clients to exist in a loosely coupled environment. SOAP request State Estimation service endpoint SOAP Protocol java/ XML State Estimation Service Provider SE Service End point interface SOAP response Publish WSDL Binding binding Implementation classes WSDL Get WSDL Power System Client Figure 4.3 Invoking the State Estimation Service The power system clients geographically apart can access the services whenever required. The power system clients discover the service available in the registry by service names and acquire the interface information using WSDL of the state estimation service. Based on this information, the clients have a binding with the service provider and can invoke services using SOAP messages. The Web service model for state estimation service has been tested on 6-Bus, Anderson and Fouad 9-Bus, IEEE14-Bus, IEEE 30 and IEEE 118-Bus systems and the HTTP response obtained for IEEE 14-Bus system is shown below: HTTP/ OK Server: Apache-Coyote/1.1.. <?xml version='1.0' encoding='utf-8'?> <soapenv:envelope

14 105 xmlns:soapenv=" <soapenv:body> <ns:getresultresponse xmlns:ns=" <ns:answer> <stateestimationdata> <psdata> <busno>1</busno> <voltage>1.0575</voltage> <angle>0.0000</angle> </psdata> <psdata> <busno>2</busno> <voltage>1.0415</voltage> <angle> </angle> </psdata>.. <busno>14</busno> <voltage>1.0147</voltage> <angle> </angle> </psdata> </stateestimationdata> </ns:answer> </ns:getresultresponse> </soapenv:body> </soapenv:envelope> The proposed Web service model uses static allocation for both computation and storage resources. The network administrator has to monitor the server load and manually adjust the server capacity according to the

15 106 number of users, which is unpredictable for exponentially growing large interconnected power systems. Since there is a tremendous growth in power systems, an architectural model is needed that allows plug-in of new services or upgrading existing services in a granular fashion to address the new requirements. Only a distributed environment provides an opportunity for making the power delivery more efficient, whether by minimizing the personnel visits to transmission and distribution locations or by enabling better decisions through more timely and best estimate of the power system network. 4.3 CLOUD ARCHITECTURAL MODEL FOR POWER SYSTEM SERVICES In one perspective, the cloud computing has changed the way of development, deployment, updation and maintenance of applications and the infrastructure on which they are being executed. From another perspective, cloud computing is nothing new because it uses approaches, concepts, and best practices that have already been established. The Chairman, Microsoft Corporation India says, it is only once in every years that something revolutionary happens in the Information Technology sector and cloud computing certainly has the power to change the way IT will be used in future. Cloud computing when properly implemented, provides the users with greater flexibility, portability, and choice in their computing options. It allows IT to be delivered in multiple ways. Cloud Computing reduces the capital expenditure because it is pay as you go model. Cloud computing defines a model where specific services are assigned to systems that are accessed through a network. It is a type of computing in which dynamically scalable and often virtualized resources are provided as services over the Internet (Buyya et al 2009). It is based on the

16 107 use of distributed computing resources that are easily allocated, de-allocated, migrated and possibly re-allocated on user request (Mancini et al 2010). As such, it relies heavily on the use of virtualization technologies that are able to offer an almost unlimited amount of virtual computing resources. With the help of virtualization, which controls the access to physical resources in a transparent way, it is possible to offer computational resources with full control for accessing various power system operations using which, the power system clients can configure them as administrators, without any restriction. Cloud computing architectural model simplifies infrastructure while maximizing availability, scalability and performance. These features play a vital role for the usage of cloud computing architecture for power system applications. The Five major components of Cloud Computing are Application, Platform, Software, Storage and Infrastructure as shown in Figure 4.4. Applications refer to various power system applications like Load Flow, Economic Load Dispatch, Contingency Analysis, State Estimation, Optimal PMU placement etc. The cloud environment that provides Platform as a Service allows various power system applications developed using different programming paradigms to interact with each other without any modifications. It further allows adding of generation, transmission and distribution resources on demand and the power system applications need to be properly designed to scale along with the underlying hardware. When Software is provided as a Service, it allows the electrical network service providers to develop the power system services and host them in the cloud environment which are used to serve the power system clients.

17 108 Load Flow Economic Load Dispatch Optimal PMU Placement State Estimation Power System Applications Integration Middleware Messaging Platform as a Service Power System DataBase Files XML Data Other Data Storage as a Service Hardware Abstraction Connectivity Infrastructure as a Service Figure 4.4 Cloud Architectural Model for Power System Applications A cloud infrastructure can operate solely for a particular power sector like a local distribution substation which is connected to the consumers through feeder section. Rather than purchasing the hardware and software to run various power system applications, clients need only a computer or a server to download the required power system applications and Internet access to run the software. The cloud hypervisor manages the servers and the virtual machines and thus allocates the necessary hardware on demand thereby providing Infrastructure as a Service (Reese 2009). Along with the scaling capacity of cloud platforms, we need to pay as we use similar to the electric power distribution systems, wherein we pay for the usage. Processed data can be stored securely in the cloud storage either in the form of blobs or tables depending upon the type of the data. The stored data can be accessed from anywhere at any time and therefore no data backups are required.

18 109 Cloud computing heavily relies on communication protocols. Standards are implemented openly to aid collaboration between services thereby providing independence between device and software. The well known PaaS (Platform as a Service) providers, Google App Engine and Azure Cloud are selected to deploy the state estimation and optimal PMU placement services. The computation of services in cloud model is based on distributed IT concepts that are inherent, which provides the easy way of interaction between power system applications in a heterogeneous environment. The application providers can deploy their applications without any limitation in a cloud environment and users can access complex, data rich deployed applications from anywhere on demand basis. The deployment of applications in a cloud environment reduces the cost for service providers when compared other distributed environments. The componentized service oriented model for power system services is extended to scalable and cost-effective cloud model for solving various power system problems as shown in Figure 4.5. Generalized Service oriented Model SOAP Communication Public Cloud PaaS Providers Figure 4.5 Extending Service Oriented Model to Cloud Model The service description and behaviour components are represented in the Software as a Service layer. The information component is represented in the Storage as a Service (SaaS) layer. These two layers are interacting with each other using SOAP communication. The proposed generalized service oriented model concerns about the infrastructure for service delivery. The scalability of the application is enhanced by the way of integrating the service oriented model with cloud environment as shown in Figure 4.6.

19 110 Platform as a Service Cloud Software as a Service Layer Power System Services Descriptor Behaviour Component Action Decision and Deployment Implementation Process Service Invocation Power System clients Interaction Component SOAP Communication Storage as a Service Layer Information Component Figure 4.6 Proposed Cloud Representation with Inherent Service Oriented Model The process module of the behaviour component is extended to access the Platform as a Service cloud providers to invoke the hosted services and responds to the interaction component. The action module is modified to extract the necessary deployment descriptor file and the App Engine based configuration file from the service description and to create the war file using the contents and the structure shown below. To deploy the state estimation service in Google cloud environment, a single directory named stateestimation is used to store all the project files.

20 111 The complete project directory looks like this: stateestimation/ index.jsp busdata.xml WEB-INF/ appengine-web.xml web.xml classes/ Complex.class StateEstimate.class The index.jsp is designated as a welcome file and it is displayed when the URL request is forwarded by the process module to the client machine through interaction component. The index.jsp file displays a HTML form to obtain the general power system data from the client. Based on this data, the interaction component extracts the bus and line data required for state estimation analysis from the information component as per the schema defined and stores them in a file called busdata.xml under stateestimation directory. The following code segment in the action module prepares the directory structure and stores the necessary files at sub-level directories as per the deployment requirement of Google App Engine. String strmanydirectories="stateestimation/web-inf/classes"; boolean success = (new File(strManyDirectories)).mkdirs(); String filename ="StateEstimate.class"; File f = new File(filename); FileInputStream fis = new FileInputStream(f); byte [] buffer = new byte[(int) f.length()]; fis.read(buffer, 0, buffer.length);

21 112 fis.close(); //to store StateEstimate.class in the classes sub-directory File f1 = new File(".\\stateestimation\\WEB-INF\\classes\\"+ filename); FileOutputStream fos = new FileOutputStream(f1); DataOutputStream dos = new DataOutputStream(fos); dos.write(buffer); dos.close(); //to store the deployment descriptor file into WEB-INF sub-directory File f2 = new File(".\\stateestimation\\WEB-INF\\web.xml"); FileOutputStream fos1 = new FileOutputStream(f2); PrintStream ps = new PrintStream(fos1); ps.println("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<web-app> \n<welcome-file-list> \n "); ps.println("<welcome-file>"+ index.jsp + "</welcome-file> "); ps.println("</welcome-file-list> </web-app>"); ps.close(); //similarly other required files for deployment are copied in the directory //structure The following code segment in the action module automates the deployment procedure and uploads all the contents from the stateestimation directory to the space reserved for the state estimation service in the Google cloud environment. Once the deployment is over, the service is ready for execution. Runtime rt = Runtime.getRuntime(); Process p2 = rt.exec("cmd /c appcfg.cmd update c:\\gae\\stateestimation"); The action module uploads the contents of the stateestimation directory for deployment to the Google App Engine and instructs the process module how to access the service from the cloud environment. The process

22 113 module is designed to retrieve the response from the cloud in HTML format and then formulates the SOAP response based on the values contained in the attributes and forwards the same to interaction component to dispatch to the clients Power System Services using Google App Engine Platform as a Service (PaaS) cloud provides with an infrastructure as well as complete operational and development environments for the deployment of complex power system applications. Most commonly used PaaS cloud environment is Google App Engine. To leverage Google App Engine, the required power system application is written in Java using Google s development framework along with tools like Google file system and data repositories. Google App Engine is selected to deploy the power system services to solve the optimal placement of phasor measurement units and power system state estimation. The architectural model for the proposed power system services in Google App Engine (GAE) cloud environment is shown in Figure 4.7. Cloud Environment Power System Services Visualization State Estimation Accessibility Optimal PMU placement Power System Management Configuration Deployment Monitoring Execution Virtualization Deploying Virtual Machines Hypervisor Resources Power System Data Storage Hardware Standards Runtimes Networks Figure 4.7 Power System Services in Google App Engine

23 114 Platform as a Service cloud environment supplies all the resources required to build power system applications and services completely from the Internet, without having to download or install software. The other power system problems can also be implemented in a similar way in the GAE cloud environment State Estimation Service The GAE allows dynamic allocation of system resources for a power system application based on the actual demand. The power system application developed using App Engine is easy to build, maintain and to scale up or down depending on the traffic and data storage. A deployment descriptor file is to be created while deploying the state estimation service on to the GAE Cloud. The deployment descriptor file is configured as follows: <web-app version="2.5" xmlns= xmlns:xsi=" xsi:schemalocation=" <welcome-file-list> <welcome-file>stateestimation.jsp</welcome-file> </welcome-file-list> </web-app> The above configuration file contains the information and details about the deployed state estimation service. On receiving the request from the client, the Web server determines all the information using this Web application deployment descriptor. An additional configuration file has to be

24 115 created in order to deploy and run the state estimation service in the Google App Engine that includes an application identifier and the version number. The <application> element contains the application id (stateestimation). This is the application id which has been created and registered in the Google App Engine. The <version> element contains the version identifier for the latest version of the application. The App Engine based Web application configuration is given as follows: <appengine-web-app xmlns=" xmlns:xsi= xsi:schemalocation=' download/schema/appengine-web.xsd appengine-web.xsd'> <application>stateestimation</application> <version>1</version> </appengine-web-app> Both Web service deployment descriptor (web.xml) and the App Engine based Web application configuration (appengine-web.xml) files are stored in the service description component of the proposed cloud model. Later, these files are used by the action module to develop the war file for deployment. Generally, the App Engine Software Development Kit is used to create and upload the state estimation service by the service provider. The GAE is used for registering, uploading and accessing the state estimation problem in the proposed cloud computing model. The multi-purpose tool appcfg is used for uploading the state estimation service onto the cloud. At the time of uploading the information, appcfg gets the application id (stateestimation) from the appengine-web.xml file and uploads the contents and state estimation is provided as a service from the following URL

25 116 which can be accessed by the power system clients worldwide. The above steps have been automated using action module of the behaviour component in the proposed cloud representation model with inherent service oriented features. Hence, the solution for the given state estimation problem is provided as a service, which allows the dynamic allocation of system resources for the power system application based on the actual demand. The power system clients can access the state estimation service from anywhere and anytime. Proper formatting and easy navigation of pages have been followed during the implementation of the state estimation service. In addition to it, the inappropriate contents and excessive contents were avoided. These few important characteristics adopted in the state estimation service implementation allow the power system clients to avail the service from any electronic gadget including a mobile client Optimal PMU Placement Service It is proposed to use Struts Framework for implementing the Optimal PMU placement service before exported into Google Cloud Infrastructure. Struts is a popular open source framework, which is used to build Web applications with integration of standard technologies such as Servlets, Java Beans and Java Server Pages (JSP). Struts offer many benefits to the Web application developer, including the Model-View-Controller (MVC) design patterns in Web applications. This is one of the best practices for designing web applications. Struts framework offers a set of tag libraries to support the faster development of the different layers for the power system Web application. The general idea behind the MVC architecture is to segregate the power system application into three layers namely the model layer that represents

26 117 the implementation of the power system service, the view layer that represents the power system data processed by the model component; and a controller layer that is responsible for interaction between the model and the view. As compared with the proposed cloud representation with inherent service oriented model, the model layer is treated as behaviour component; the view layer represents the data formatting logic included in the interaction component, which formats the response from the process module before delivering to client and the controller layer represents the process module along with SOAP communication. The model contains the power system service logic and communicates with the information component to store, retrieve and manipulate power system data through interaction component. This is actually carried out in the proposed Struts model for optimal PMU placement service by an ActionServlet, namely PowerAction, which encapsulates the Binary Integer Linear Programming logic to obtain the solution for optimal locations. PowerActionForm is a bean class, having set and get methods defined in it. Separate Methods have been defined for getting the number of buses and line data and for formulating the equations and the objective function. PowerAction helps to invoke the Optimal PMU placement logic by getting the input from the PowerActionForm bean class. When the client needs a power system service to be invoked, the request is received by the PowerAction servlet that selects the appropriate view to be returned. The view is responsible for displaying the results for the optimal PMU placement service to the power system clients, which is implemented using JSP. This ActionServlet writes the result by invoking the set methods defined in the bean class. In order to configure the optimal PMU placement service in the Struts environment, the PowerAction, which is an ActionServlet class, needs

27 118 initial Meta information from a configuration file called struts-config.xml as given below: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" " <struts-config> <form-beans> <form-bean name="poweractionform" type="power.poweractionform"/> </form-beans> <action-mappings> <action input="/index.jsp" name="poweractionform" path="/power" type="power.poweraction"> <forward name="success" path="/success.jsp"/> </action> </action-mappings> </struts-config> During startup, the ActionServlet reads the struts-config.xml file and creates an instance of an Action class. Processing the client request, the PowerAction makes decision by referring to this object. PowerAction receives the request for optimal PMU placement service and bundles all the request parameters into a JavaBean class which extends ActionForm class, namely PowerActionForm. Thus PowerAction decides which action is to be invoked to process the request. It also validates the power system data entered by the client. The action class processes the request with the help of the model component. After processing the request, the action class returns an ActionForward to the controller. Based on the ActionForward the controller invokes the appropriate view. To deploy and run the OPP Problem

28 119 in the Google App Engine, an additional configuration file called as appengine-web.xml is required to include the application identifier ( optimumpmuplacement ) and the version number of the application. On receiving the request from the client, the Web server determines all the information using the following Web application deployment descriptor. <?xml version="1.0" encoding="utf-8"?> <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.actionservlet</servletclass> <init-param> <param-name>config</param-name> <param-value>/web-inf/struts-config.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>poweraction.do</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> The HTTP response is sent to the client by the view component. On successful execution of the PowerAction, the response is redirected to success.jsp. All the implementation classes and configuration files are bundled together and packaged into a war file which is deployed in the cloud. Once deployed, the optimal PMU placement service is provided from the URL, which can be accessed by the power system clients worldwide.

29 Power System Services using Windows Azure The deployment of power system services in the cloud environment is further investigated using Windows Azure Cloud. The PaaS provider, Microsoft Azure provides a framework that is based on the more ubiquitous.net platform and hence easily portable across Microsoft environments. The state estimation and optimal PMU placement services are deployed in the Azure environment and the performance is compared with the Google cloud environment. The architectural model of the Azure cloud for providing power system services is shown in Figure 4.8. The different power system services are deployed in the Windows Azure public cloud environment in which the virtualization of power system resources is taken care by the Infrastructure as a Service layer. In this model, a single logical instance of the power system application is being shared by several customers. The power system clients can access the required power system service through the WebRole instance. Client 1 Client 2 Client 3 Storage as a Service Load Balancer WebRole State Estimation as a Service OPP as a Service Host Partition Guest Partition Guest Partition Azure Hypervisor Hardware Figure 4.8 Power System Services in Azure Cloud Environment

30 121 The power system client interacts with the service and the WebRole instance helps in processing the request and response. The WebRole stays as a single HTTP endpoint for the external clients. The incoming request for the power system service is forwarded to the WebRole through the Load Balancer that ensures functionalities like proper load distribution and fault tolerance. In the above architecture the state estimation service and optimal PMU placement service are included in the application layer between the WebRole and PaaS layers. The following XML document shows the description of the state estimation service that is deployed in the Azure environment. It consists of various metadata like service name, details of WebRole and the configuration settings. <ServiceDefinition name="se_cloud" xmlns=" ServiceHosting/2008/10/ServiceDefinition"> <WebRole name="se_webrole"> <InputEndpoints> <InputEndpoint name="httpin" protocol="http" port="80"/> </InputEndpoints> <ConfigurationSettings> <Setting name="diagnosticsconnectionstring"/> <Setting name="dataconnectionstring"/> </ConfigurationSettings> </WebRole> </ServiceDefinition> The values for the service definition are configured when the WebRole instance is running. The service configuration shown below for this WebRole instance includes the number of virtual machines for each role and credentials like Account Name and Account Key.

31 122 <ServiceConfiguration servicename=" SE_Cloud " xmlns=" ServiceHosting/2008/10/ServiceConfiguration"> <Role name=" SE_WebRole "> <Instances count="1" /> <ConfigurationSettings> <Setting name="diagnosticsconnectionstring" value="defaultendpointsprotocol=https; AccountName=stateestimation; AccountKey=mj6etjDXP9rhDKEYUVDNI +6T0KzcnJ5gG7tCJ6e8wAl716jtphtCOliUp 3KafwiXFhls90BXH+K3s9G6tWPWrx== /> </ConfigurationSettings> </Role> </ServiceConfiguration> The service definition and configuration files are also created for deploying optimal PMU placement service using the servicename, OPP_Cloud and the AccountName as optimumpmuplacement. The state estimation service, which provides the operating states of the power system network is packaged, uploaded and deployed in the Azure Cloud environment. The clients invoke the required state estimation service through the HTTP GET method using the URL, and the optimal PMU placement service is invoked to obtain the number of PMUs and their optimal locations in the power system network using the URL,

32 123 The HTTP GET Request carries the bus and line data of the power system as input for which the state estimates are to be determined. The state estimation output from Azure cloud for the IEEE 14-Bus system is shown in Figure 4.9. Figure 4.9 State Estimation Results from Azure Environment The optimal PMU placement problem requires the bus data and the connectivity between the nodes of the power system network as input. Once the above information is provided, the OPP problem is formulated and solved using Binary Integer Linear Programming. Figure 4.10 shows the input provided by the client for solving the optimal PMU placement problem for real time 230 kv sub network, which has 8 nodes.

33 124 Figure 4.10 Input Data for OPP Service The output for the OPP Service is obtained from the Azure Cloud which can be viewed from the Uniform Resource Locator (URL) The Figure 4.11 shows the results obtained for the OPP problem for real time 230 kv sub network. Figure 4.11 Optimal PMU locations for 230 KV Sub Network

34 125 The solution thus obtained for the 230 kv sub network shows that three PMUs are to be placed in buses 3, 6 and 8. The solution provides the optimal location of PMUs for the given network maintaining complete observability of the network. Solutions for different test systems namely 6- Bus, Anderson and Fouad 9-Bus, IEEE 14-Bus, IEEE 30-Bus and real time systems namely sub networks of State Electricity board 110 kv (North and South) and 400 kv Southern Region grid are also obtained. 4.4 PERFORMANCE ANALYSIS Effective Cloud based Architectural models using GAE and Azure have been developed for solving power system problems and tested using 6-Bus, Anderson and Fouad 9-Bus, IEEE 14, IEEE 30-Bus systems and real time systems. After developing, deploying and testing the power system applications in the Azure and Google infrastructures, the request traffic, bandwidth usage and the CPU usage are tracked from the power system application console. The average elapsed time and throughput for the different power system services deployed in the Google App Engine and Windows Azure are compared and are given in Table 4.1 below: Table 4.1 Comparison of QoS Measures for Power System Services Average QoS Measures State Estimation Service Optimal PMU Placement Service Azure GAE Azure GAE Round Trip Time (sec) Throughput (Mbit/sec) The performance measures thus obtained in both the environments refer to the average values when 30 different power system clients accessed the required power system service. Request Elapsed Time is the time that

35 126 elapses between the initiation and fetching of the required service by the power system client. From the obtained performance measures, it is clear that there is a minimal difference between the two environments for accessing the services. The various characteristics of the two environments while solving the power system problems are given in Table 4.2. Table 4.2 Comparison between two Cloud Environments Characteristics GAE Windows Azure Developed Language Java Asp.Net Cost Free Free for limited usage File Size Smaller Larger when compared with App Engine Deployment Time Lesser Higher when compared with App Engine The main characteristic of the cloud environment is that it is on-demand and cost effective. Further, environments like Google App Engine provide the developers to upload and test certain specific number of applications for free of cost for a limited memory usage and other criterion. Even though Azure platform provides an environment for the developers to test their applications free of cost, it will incur charges if the application is hosted on-line for a longer period of time. The size of the power system service developed for deploying in GAE is smaller when compared to that developed for Azure Environment. It stays as one of the reasons for a longer deployment time in Windows Azure when compared with Google App Engine. The deployment procedure in Azure environment is time consuming than in the GAE. The variations of the RTT and throughput for different power system services are shown in Figures 4.12 and 4.13.

36 127 RTT (in seconds) State Estimation Service Power System Services Optimal PMU placement Service Azure GAE Figure 4.12 Variation of RTT for different Power System Services Throughput (Mbit / sec) State Estimation Service Optimal PMU placement Service Power System Services Azure GAE Figure 4.13 Variation of Throughput for different Power System Services From the obtained throughput, it is clear that the Google App Engine is efficient in fetching the required service when compared with the Azure environment. One of the major concerns from the client s perspective would be the response time, which is found to vary minimally in both the environments for the tested power system services.

37 CONCLUSION Scalable Web Service models have been developed for solving state estimation and optimal PMU placement problems. The state estimation service is implemented using UDDI registry. Model-View-Controller approach is used to implement optimal PMU placement service. An innovative cloud model has been developed for providing power system services by configuring the components of the generalized service oriented model as its Software as a Service and Storage as a Service layers. The power system services are implemented in two different Platform as a Service cloud environments, namely GAE and Azure platforms, which are highly distributed and have inherent features like ease of use, dynamic scalability, reliability and low cost. The performance of the proposed cloud model has been analyzed with different test systems and the parameters like round trip time and throughput have been estimated and reported. The effectiveness of the proposed cloud service model has been validated based on these parameters. Cloud being an environment that dynamically allocates computational resources, any number of power system clients can be served with the power system services without any limitations. The scalability of power system services are enhanced by the way of integrating the service oriented model with the cloud environment.

CHAPTER 4 CLOUD SERVICES FOR POWER SYSTEM TRANSIENT STABILITY ANALYSIS

CHAPTER 4 CLOUD SERVICES FOR POWER SYSTEM TRANSIENT STABILITY ANALYSIS 90 CHAPTER 4 CLOUD SERVICES FOR POWER SYSTEM TRANSIENT STABILITY ANALYSIS 4.1 INTRODUCTION The virtualization and grid computing technologies are the key concepts for evaluation of cloud computing. Mohsin

More information

INTRODUCTION TO CLOUD COMPUTING CEN483 PARALLEL AND DISTRIBUTED SYSTEMS

INTRODUCTION TO CLOUD COMPUTING CEN483 PARALLEL AND DISTRIBUTED SYSTEMS INTRODUCTION TO CLOUD COMPUTING CEN483 PARALLEL AND DISTRIBUTED SYSTEMS CLOUD COMPUTING Cloud computing is a model for enabling convenient, ondemand network access to a shared pool of configurable computing

More information

Enterprise Application Designs In Relation to ERP and SOA

Enterprise Application Designs In Relation to ERP and SOA Enterprise Application Designs In Relation to ERP and SOA DESIGNING ENTERPRICE APPLICATIONS HASITH D. YAGGAHAVITA 20 th MAY 2009 Table of Content 1 Introduction... 3 2 Patterns for Service Integration...

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1) E14294-04 January 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include: What

More information

2012 LABVANTAGE Solutions, Inc. All Rights Reserved.

2012 LABVANTAGE Solutions, Inc. All Rights Reserved. LABVANTAGE Architecture 2012 LABVANTAGE Solutions, Inc. All Rights Reserved. DOCUMENT PURPOSE AND SCOPE This document provides an overview of the LABVANTAGE hardware and software architecture. It is written

More information

Cloud Computing: Computing as a Service. Prof. Daivashala Deshmukh Maharashtra Institute of Technology, Aurangabad

Cloud Computing: Computing as a Service. Prof. Daivashala Deshmukh Maharashtra Institute of Technology, Aurangabad Cloud Computing: Computing as a Service Prof. Daivashala Deshmukh Maharashtra Institute of Technology, Aurangabad Abstract: Computing as a utility. is a dream that dates from the beginning from the computer

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1.6) E14294-06 November 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include:

More information

CrownPeak Java Web Hosting. Version 0.20

CrownPeak Java Web Hosting. Version 0.20 CrownPeak Java Web Hosting Version 0.20 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

The Learning Service Bus Based on SOA

The Learning Service Bus Based on SOA The Learning Service Bus Based on SOA Xiaoqiang Liu and Yingpei Wu Abstract---In this paper, the concept of the LSB (Learning Service Bus) is presented, and the SOA (Service-Oriented Architecture) is led

More information

Tutorial: Building a Web Application with Struts

Tutorial: Building a Web Application with Struts Tutorial: Building a Web Application with Struts Tutorial: Building a Web Application with Struts This tutorial describes how OTN developers built a Web application for shop owners and customers of the

More information

Lecture Notes course 02267 Software Development of Web Services

Lecture Notes course 02267 Software Development of Web Services Lecture Notes course 02267 Software Development of Web Services Hubert Baumeister huba@dtu.dk Fall 2014 Contents 1 Web Service Coordination 1 1.1 What is Coordination.........................................

More information

CLOUD COMPUTING & WINDOWS AZURE

CLOUD COMPUTING & WINDOWS AZURE CLOUD COMPUTING & WINDOWS AZURE WORKSHOP Overview This workshop is an introduction to cloud computing and specifically Microsoft s public cloud offering in Windows Azure. Windows Azure has been described

More information

Service Oriented Architecture

Service Oriented Architecture Service Oriented Architecture Charlie Abela Department of Artificial Intelligence charlie.abela@um.edu.mt Last Lecture Web Ontology Language Problems? CSA 3210 Service Oriented Architecture 2 Lecture Outline

More information

AquaLogic Service Bus

AquaLogic Service Bus AquaLogic Bus Wolfgang Weigend Principal Systems Engineer BEA Systems 1 What to consider when looking at ESB? Number of planned business access points Reuse across organization Reduced cost of ownership

More information

Service-Oriented Architectures

Service-Oriented Architectures Architectures Computing & 2009-11-06 Architectures Computing & SERVICE-ORIENTED COMPUTING (SOC) A new computing paradigm revolving around the concept of software as a service Assumes that entire systems

More information

Grid Computing Vs. Cloud Computing

Grid Computing Vs. Cloud Computing International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 6 (2013), pp. 577-582 International Research Publications House http://www. irphouse.com /ijict.htm Grid

More information

Fundamentals of Web Programming a

Fundamentals of Web Programming a Fundamentals of Web Programming a Universal Description, Discovery, and Integration Teodor Rus rus@cs.uiowa.edu The University of Iowa, Department of Computer Science a Copyright 2009 Teodor Rus. These

More information

APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS

APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS This article looks into the benefits of using the Platform as a Service paradigm to develop applications on the cloud. It also compares a few top PaaS providers

More information

T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm

T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm Based on slides by Sasu Tarkoma and Pekka Nikander 1 of 20 Contents Short review of XML & related specs

More information

SOA and Cloud in practice - An Example Case Study

SOA and Cloud in practice - An Example Case Study SOA and Cloud in practice - An Example Case Study 2 nd RECOCAPE Event "Emerging Software Technologies: Trends & Challenges Nov. 14 th 2012 ITIDA, Smart Village, Giza, Egypt Agenda What is SOA? What is

More information

What Is the Java TM 2 Platform, Enterprise Edition?

What Is the Java TM 2 Platform, Enterprise Edition? Page 1 de 9 What Is the Java TM 2 Platform, Enterprise Edition? This document provides an introduction to the features and benefits of the Java 2 platform, Enterprise Edition. Overview Enterprises today

More information

PROGRESS Portal Access Whitepaper

PROGRESS Portal Access Whitepaper PROGRESS Portal Access Whitepaper Maciej Bogdanski, Michał Kosiedowski, Cezary Mazurek, Marzena Rabiega, Malgorzata Wolniewicz Poznan Supercomputing and Networking Center April 15, 2004 1 Introduction

More information

Base One's Rich Client Architecture

Base One's Rich Client Architecture Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.

More information

IBM Rational Rapid Developer Components & Web Services

IBM Rational Rapid Developer Components & Web Services A Technical How-to Guide for Creating Components and Web Services in Rational Rapid Developer June, 2003 Rev. 1.00 IBM Rational Rapid Developer Glenn A. Webster Staff Technical Writer Executive Summary

More information

LinuxWorld Conference & Expo Server Farms and XML Web Services

LinuxWorld Conference & Expo Server Farms and XML Web Services LinuxWorld Conference & Expo Server Farms and XML Web Services Jorgen Thelin, CapeConnect Chief Architect PJ Murray, Product Manager Cape Clear Software Objectives What aspects must a developer be aware

More information

In this chapter, we lay the foundation for all our further discussions. We start

In this chapter, we lay the foundation for all our further discussions. We start 01 Struts.qxd 7/30/02 10:23 PM Page 1 CHAPTER 1 Introducing the Jakarta Struts Project and Its Supporting Components In this chapter, we lay the foundation for all our further discussions. We start by

More information

Lecture 02a Cloud Computing I

Lecture 02a Cloud Computing I Mobile Cloud Computing Lecture 02a Cloud Computing I 吳 秀 陽 Shiow-yang Wu What is Cloud Computing? Computing with cloud? Mobile Cloud Computing Cloud Computing I 2 Note 1 What is Cloud Computing? Walking

More information

The Data Grid: Towards an Architecture for Distributed Management and Analysis of Large Scientific Datasets

The Data Grid: Towards an Architecture for Distributed Management and Analysis of Large Scientific Datasets The Data Grid: Towards an Architecture for Distributed Management and Analysis of Large Scientific Datasets!! Large data collections appear in many scientific domains like climate studies.!! Users and

More information

Contents. Client-server and multi-tier architectures. The Java 2 Enterprise Edition (J2EE) platform

Contents. Client-server and multi-tier architectures. The Java 2 Enterprise Edition (J2EE) platform Part III: Component Architectures Natividad Martínez Madrid y Simon Pickin Departamento de Ingeniería Telemática Universidad Carlos III de Madrid {nati, spickin}@it.uc3m.es Introduction Contents Client-server

More information

CLOUD COMPUTING. When It's smarter to rent than to buy

CLOUD COMPUTING. When It's smarter to rent than to buy CLOUD COMPUTING When It's smarter to rent than to buy Is it new concept? Nothing new In 1990 s, WWW itself Grid Technologies- Scientific applications Online banking websites More convenience Not to visit

More information

zen Platform technical white paper

zen Platform technical white paper zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant

More information

Cloud computing - Architecting in the cloud

Cloud computing - Architecting in the cloud Cloud computing - Architecting in the cloud anna.ruokonen@tut.fi 1 Outline Cloud computing What is? Levels of cloud computing: IaaS, PaaS, SaaS Moving to the cloud? Architecting in the cloud Best practices

More information

Virtual Credit Card Processing System

Virtual Credit Card Processing System The ITB Journal Volume 3 Issue 2 Article 2 2002 Virtual Credit Card Processing System Geraldine Gray Karen Church Tony Ayres Follow this and additional works at: http://arrow.dit.ie/itbj Part of the E-Commerce

More information

Consuming and Producing Web Services with WST and JST. Christopher M. Judd. President/Consultant Judd Solutions, LLC

Consuming and Producing Web Services with WST and JST. Christopher M. Judd. President/Consultant Judd Solutions, LLC Consuming and Producing Web Services with WST and JST Christopher M. Judd President/Consultant Judd Solutions, LLC Christopher M. Judd President/Consultant of Judd Solutions Central Ohio Java User Group

More information

Introduction to Cloud Computing. Lecture 02 History of Enterprise Computing Kaya Oğuz

Introduction to Cloud Computing. Lecture 02 History of Enterprise Computing Kaya Oğuz Introduction to Cloud Computing Lecture 02 History of Enterprise Computing Kaya Oğuz General Course Information The textbook: Enterprise Cloud Computing by Gautam Shroff (available at bookstore). Course

More information

Introduction to Service Oriented Architectures (SOA)

Introduction to Service Oriented Architectures (SOA) Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction

More information

Assignment # 1 (Cloud Computing Security)

Assignment # 1 (Cloud Computing Security) Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual

More information

Cloud Computing for SCADA

Cloud Computing for SCADA Cloud Computing for SCADA Moving all or part of SCADA applications to the cloud can cut costs significantly while dramatically increasing reliability and scalability. A White Paper from InduSoft Larry

More information

White Paper: 1) Architecture Objectives: The primary objective of this architecture is to meet the. 2) Architecture Explanation

White Paper: 1) Architecture Objectives: The primary objective of this architecture is to meet the. 2) Architecture Explanation White Paper: 1) Architecture Objectives: The primary objective of this architecture is to meet the following requirements (SLAs). Scalability and High Availability Modularity and Maintainability Extensibility

More information

So You Want an SOA: Best Practices for Migrating to SOA in the Enterprise. Eric Newcomer, CTO

So You Want an SOA: Best Practices for Migrating to SOA in the Enterprise. Eric Newcomer, CTO So You Want an SOA: Best Practices for Migrating to SOA in the Enterprise Eric Newcomer, CTO Overview First of all: concepts and definitions Change your thinking about your IT environment Including organization

More information

System Models for Distributed and Cloud Computing

System Models for Distributed and Cloud Computing System Models for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Classification of Distributed Computing Systems

More information

SOA, case Google. Faculty of technology management 07.12.2009 Information Technology Service Oriented Communications CT30A8901.

SOA, case Google. Faculty of technology management 07.12.2009 Information Technology Service Oriented Communications CT30A8901. Faculty of technology management 07.12.2009 Information Technology Service Oriented Communications CT30A8901 SOA, case Google Written by: Sampo Syrjäläinen, 0337918 Jukka Hilvonen, 0337840 1 Contents 1.

More information

A standards-based approach to application integration

A standards-based approach to application integration A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist Macnair@us.ibm.com Copyright IBM Corporation 2005. All rights

More information

Linstantiation of applications. Docker accelerate

Linstantiation of applications. Docker accelerate Industrial Science Impact Factor : 1.5015(UIF) ISSN 2347-5420 Volume - 1 Issue - 12 Aug - 2015 DOCKER CONTAINER 1 2 3 Sawale Bharati Shankar, Dhoble Manoj Ramchandra and Sawale Nitin Shankar images. ABSTRACT

More information

ITS. Java WebService. ITS Data-Solutions Pvt Ltd BENEFITS OF ATTENDANCE:

ITS. Java WebService. ITS Data-Solutions Pvt Ltd BENEFITS OF ATTENDANCE: Java WebService BENEFITS OF ATTENDANCE: PREREQUISITES: Upon completion of this course, students will be able to: Describe the interoperable web services architecture, including the roles of SOAP and WSDL.

More information

Developing Java Web Services

Developing Java Web Services Page 1 of 5 Developing Java Web Services Hands On 35 Hours Online 5 Days In-Classroom A comprehensive look at the state of the art in developing interoperable web services on the Java EE platform. Students

More information

White Paper on CLOUD COMPUTING

White Paper on CLOUD COMPUTING White Paper on CLOUD COMPUTING INDEX 1. Introduction 2. Features of Cloud Computing 3. Benefits of Cloud computing 4. Service models of Cloud Computing 5. Deployment models of Cloud Computing 6. Examples

More information

Windows Azure Data Services (basics) 55093A; 3 Days

Windows Azure Data Services (basics) 55093A; 3 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Windows Azure Data Services (basics) 55093A; 3 Days Course Description This

More information

Oracle Service Bus. Situation. Oracle Service Bus Primer. Product History and Evolution. Positioning. Usage Scenario

Oracle Service Bus. Situation. Oracle Service Bus Primer. Product History and Evolution. Positioning. Usage Scenario Oracle Service Bus Situation A service oriented architecture must be flexible for changing interfaces, transport protocols and server locations - service clients have to be decoupled from their implementation.

More information

SHARPCLOUD SECURITY STATEMENT

SHARPCLOUD SECURITY STATEMENT SHARPCLOUD SECURITY STATEMENT Summary Provides details of the SharpCloud Security Architecture Authors: Russell Johnson and Andrew Sinclair v1.8 (December 2014) Contents Overview... 2 1. The SharpCloud

More information

Cloud Computing & Service Oriented Architecture An Overview

Cloud Computing & Service Oriented Architecture An Overview Cloud Computing & Service Oriented Architecture An Overview Sumantra Sarkar Georgia State University Robinson College of Business November 29 & 30, 2010 MBA 8125 Fall 2010 Agenda Cloud Computing Definition

More information

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

Building Web Services with Apache Axis2

Building Web Services with Apache Axis2 2009 Marty Hall Building Web Services with Apache Axis2 Part I: Java-First (Bottom-Up) Services Customized Java EE Training: http://courses.coreservlets.com/ Servlets, JSP, Struts, JSF/MyFaces/Facelets,

More information

Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat

Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat Page 1 of 14 Roadmap Client-Server Architecture Introduction Two-tier Architecture Three-tier Architecture The MVC Architecture

More information

Contents. 1010 Huntcliff, Suite 1350, Atlanta, Georgia, 30350, USA http://www.nevatech.com

Contents. 1010 Huntcliff, Suite 1350, Atlanta, Georgia, 30350, USA http://www.nevatech.com Sentinet Overview Contents Overview... 3 Architecture... 3 Technology Stack... 4 Features Summary... 6 Repository... 6 Runtime Management... 6 Services Virtualization and Mediation... 9 Communication and

More information

How To Understand Cloud Computing

How To Understand Cloud Computing Overview of Cloud Computing (ENCS 691K Chapter 1) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ Overview of Cloud Computing Towards a definition

More information

WEB SERVICES. Revised 9/29/2015

WEB SERVICES. Revised 9/29/2015 WEB SERVICES Revised 9/29/2015 This Page Intentionally Left Blank Table of Contents Web Services using WebLogic... 1 Developing Web Services on WebSphere... 2 Developing RESTful Services in Java v1.1...

More information

Web Services Technologies

Web Services Technologies Web Services Technologies XML and SOAP WSDL and UDDI Version 16 1 Web Services Technologies WSTech-2 A collection of XML technology standards that work together to provide Web Services capabilities We

More information

Middleware Lou Somers

Middleware Lou Somers Middleware Lou Somers April 18, 2002 1 Contents Overview Definition, goals, requirements Four categories of middleware Transactional, message oriented, procedural, object Middleware examples XML-RPC, SOAP,

More information

Enhancing A Software Testing Tool to Validate the Web Services

Enhancing A Software Testing Tool to Validate the Web Services Enhancing A Software Testing Tool to Validate the Web Services Tanuj Wala 1, Aman Kumar Sharma 2 1 Research Scholar, Department of Computer Science, Himachal Pradesh University Shimla, India 2 Associate

More information

2) Xen Hypervisor 3) UEC

2) Xen Hypervisor 3) UEC 5. Implementation Implementation of the trust model requires first preparing a test bed. It is a cloud computing environment that is required as the first step towards the implementation. Various tools

More information

Introduction to Engineering Using Robotics Experiments Lecture 18 Cloud Computing

Introduction to Engineering Using Robotics Experiments Lecture 18 Cloud Computing Introduction to Engineering Using Robotics Experiments Lecture 18 Cloud Computing Yinong Chen 2 Big Data Big Data Technologies Cloud Computing Service and Web-Based Computing Applications Industry Control

More information

Cache Configuration Reference

Cache Configuration Reference Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...

More information

WIRIS quizzes web services Getting started with PHP and Java

WIRIS quizzes web services Getting started with PHP and Java WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS

More information

CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment

CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management Page 2 Table of

More information

Cloud Computing. Adam Barker

Cloud Computing. Adam Barker Cloud Computing Adam Barker 1 Overview Introduction to Cloud computing Enabling technologies Different types of cloud: IaaS, PaaS and SaaS Cloud terminology Interacting with a cloud: management consoles

More information

Call Detail Record Access Service Part No. 520-0015-01R01

Call Detail Record Access Service Part No. 520-0015-01R01 Call Detail Record Access Service Part No. 520-0015-01R01 Summary Objective WSDL URL (Testing) WSDL URL (Hosting Production) Endpoint URL (Testing) Endpoint URL (Hosting Production) Namespace URI Service

More information

Accessing Data with ADOBE FLEX 4.6

Accessing Data with ADOBE FLEX 4.6 Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data

More information

Manjrasoft Market Oriented Cloud Computing Platform

Manjrasoft Market Oriented Cloud Computing Platform Manjrasoft Market Oriented Cloud Computing Platform Innovative Solutions for 3D Rendering Aneka is a market oriented Cloud development and management platform with rapid application development and workload

More information

Motivation Definitions EAI Architectures Elements Integration Technologies. Part I. EAI: Foundations, Concepts, and Architectures

Motivation Definitions EAI Architectures Elements Integration Technologies. Part I. EAI: Foundations, Concepts, and Architectures Part I EAI: Foundations, Concepts, and Architectures 5 Example: Mail-order Company Mail order Company IS Invoicing Windows, standard software IS Order Processing Linux, C++, Oracle IS Accounts Receivable

More information

Platform Autonomous Custom Scalable Service using Service Oriented Cloud Computing Architecture

Platform Autonomous Custom Scalable Service using Service Oriented Cloud Computing Architecture Platform Autonomous Custom Scalable Service using Service Oriented Cloud Computing Architecture 1 B. Kamala 2 B. Priya 3 J. M. Nandhini 1 2 3 ABSTRACT The global economic recession and the shrinking budget

More information

Structured Content: the Key to Agile. Web Experience Management. Introduction

Structured Content: the Key to Agile. Web Experience Management. Introduction Structured Content: the Key to Agile CONTENTS Introduction....................... 1 Structured Content Defined...2 Structured Content is Intelligent...2 Structured Content and Customer Experience...3 Structured

More information

Research on the Model of Enterprise Application Integration with Web Services

Research on the Model of Enterprise Application Integration with Web Services Research on the Model of Enterprise Integration with Web Services XIN JIN School of Information, Central University of Finance& Economics, Beijing, 100081 China Abstract: - In order to improve business

More information

SOA Planning Guide. 2015 The Value Enablement Group, LLC. All rights reserved.

SOA Planning Guide. 2015 The Value Enablement Group, LLC. All rights reserved. SOA Planning Guide 1 Agenda q SOA Introduction q SOA Benefits q SOA Principles q SOA Framework q Governance q Measurement q Tools q Strategic (long term) View 2 Introduction to SOA q Service-oriented architecture

More information

Tamanna Roy Rayat & Bahra Institute of Engineering & Technology, Punjab, India talk2tamanna@gmail.com

Tamanna Roy Rayat & Bahra Institute of Engineering & Technology, Punjab, India talk2tamanna@gmail.com IJCSIT, Volume 1, Issue 5 (October, 2014) e-issn: 1694-2329 p-issn: 1694-2345 A STUDY OF CLOUD COMPUTING MODELS AND ITS FUTURE Tamanna Roy Rayat & Bahra Institute of Engineering & Technology, Punjab, India

More information

Learn Oracle WebLogic Server 12c Administration For Middleware Administrators

Learn Oracle WebLogic Server 12c Administration For Middleware Administrators Wednesday, November 18,2015 1:15-2:10 pm VT425 Learn Oracle WebLogic Server 12c Administration For Middleware Administrators Raastech, Inc. 2201 Cooperative Way, Suite 600 Herndon, VA 20171 +1-703-884-2223

More information

IT Exam Training online / Bootcamp

IT Exam Training online / Bootcamp DumpCollection IT Exam Training online / Bootcamp http://www.dumpcollection.com PDF and Testing Engine, study and practice Exam : 70-534 Title : Architecting Microsoft Azure Solutions Vendor : Microsoft

More information

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems If company want to be competitive on global market nowadays, it have to be persistent on Internet. If we

More information

CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2. Author: Foster Moore Date: 20 September 2011 Document Version: 1.7

CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2. Author: Foster Moore Date: 20 September 2011 Document Version: 1.7 CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2 Author: Foster Moore Date: 20 September 2011 Document Version: 1.7 Level 6, Durham House, 22 Durham Street West PO Box 106857, Auckland City Post Shop, Auckland

More information

A Scalability Model for Managing Distributed-organized Internet Services

A Scalability Model for Managing Distributed-organized Internet Services A Scalability Model for Managing Distributed-organized Internet Services TSUN-YU HSIAO, KO-HSU SU, SHYAN-MING YUAN Department of Computer Science, National Chiao-Tung University. No. 1001, Ta Hsueh Road,

More information

Building Scalable Applications Using Microsoft Technologies

Building Scalable Applications Using Microsoft Technologies Building Scalable Applications Using Microsoft Technologies Padma Krishnan Senior Manager Introduction CIOs lay great emphasis on application scalability and performance and rightly so. As business grows,

More information

Sentinet for Windows Azure SENTINET

Sentinet for Windows Azure SENTINET Sentinet for Windows Azure SENTINET Sentinet for Windows Azure 1 Contents Introduction... 2 Customer Benefits... 2 Deployment Topologies... 3 Isolated Deployment Model... 3 Collocated Deployment Model...

More information

Aneka: A Software Platform for.net-based Cloud Computing

Aneka: A Software Platform for.net-based Cloud Computing Aneka: A Software Platform for.net-based Cloud Computing Christian VECCHIOLA a, Xingchen CHU a,b, and Rajkumar BUYYA a,b,1 a Grid Computing and Distributed Systems (GRIDS) Laboratory Department of Computer

More information

A Quick Introduction to SOA

A Quick Introduction to SOA Software Engineering Competence Center TUTORIAL A Quick Introduction to SOA Mahmoud Mohamed AbdAllah Senior R&D Engineer-SECC mmabdallah@itida.gov.eg Waseim Hashem Mahjoub Senior R&D Engineer-SECC Copyright

More information

Data Management in an International Data Grid Project. Timur Chabuk 04/09/2007

Data Management in an International Data Grid Project. Timur Chabuk 04/09/2007 Data Management in an International Data Grid Project Timur Chabuk 04/09/2007 Intro LHC opened in 2005 several Petabytes of data per year data created at CERN distributed to Regional Centers all over the

More information

CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS. Review Business and Technology Series www.cumulux.com

CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS. Review Business and Technology Series www.cumulux.com ` CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS Review Business and Technology Series www.cumulux.com Table of Contents Cloud Computing Model...2 Impact on IT Management and

More information

Enterprise Service Bus

Enterprise Service Bus We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications

More information

Planning the Migration of Enterprise Applications to the Cloud

Planning the Migration of Enterprise Applications to the Cloud Planning the Migration of Enterprise Applications to the Cloud A Guide to Your Migration Options: Private and Public Clouds, Application Evaluation Criteria, and Application Migration Best Practices Introduction

More information

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5 Course Page - Page 1 of 5 WebSphere Application Server 7.0 Administration on Windows BSP-1700 Length: 5 days Price: $ 2,895.00 Course Description This course teaches the basics of the administration and

More information

4. Concepts and Technologies for B2C, B2E, and B2B Transaction

4. Concepts and Technologies for B2C, B2E, and B2B Transaction 4. Concepts and Technologies for B2C, B2E, and B2B Transaction 4.4 Exchanging Information within Open Business Communities 4.4.1 Pre-Internet B2B standards: EDI, Interactive EDI, Universal EDI, OpenEDI

More information

Developing XML Solutions with JavaServer Pages Technology

Developing XML Solutions with JavaServer Pages Technology Developing XML Solutions with JavaServer Pages Technology XML (extensible Markup Language) is a set of syntax rules and guidelines for defining text-based markup languages. XML languages have a number

More information

A Comparative Study of cloud and mcloud Computing

A Comparative Study of cloud and mcloud Computing A Comparative Study of cloud and mcloud Computing Ms.S.Gowri* Ms.S.Latha* Ms.A.Nirmala Devi* * Department of Computer Science, K.S.Rangasamy College of Arts and Science, Tiruchengode. s.gowri@ksrcas.edu

More information

Qlik Sense Enabling the New Enterprise

Qlik Sense Enabling the New Enterprise Technical Brief Qlik Sense Enabling the New Enterprise Generations of Business Intelligence The evolution of the BI market can be described as a series of disruptions. Each change occurred when a technology

More information

Hadoop in the Hybrid Cloud

Hadoop in the Hybrid Cloud Presented by Hortonworks and Microsoft Introduction An increasing number of enterprises are either currently using or are planning to use cloud deployment models to expand their IT infrastructure. Big

More information

Service-Oriented Computing and Service-Oriented Architecture

Service-Oriented Computing and Service-Oriented Architecture Service-Oriented Computing and Service-Oriented Architecture Week 3 Lecture 5 M. Ali Babar Lecture Outline Service-Oriented Computing (SOC) Service-Oriented Architecture (SOA) Designing service-based systems

More information

Unlocking the Power of SOA with Business Process Modeling

Unlocking the Power of SOA with Business Process Modeling White Paper Unlocking the Power of SOA with Business Process Modeling Business solutions through information technology TM Entire contents 2006 by CGI Group Inc. All rights reserved. Reproduction of this

More information

Web Application Development for the SOA Age Thinking in XML

Web Application Development for the SOA Age Thinking in XML Web Application Development for the SOA Age Thinking in XML Enterprise Web 2.0 >>> FAST White Paper August 2007 Abstract Whether you are building a complete SOA architecture or seeking to use SOA services

More information

Improvised Software Testing Tool

Improvised Software Testing Tool Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 9, September 2014,

More information

Lecture 10 Fundamentals of GAE Development. Cloud Application Development (SE808, School of Software, Sun Yat-Sen University) Yabo (Arber) Xu

Lecture 10 Fundamentals of GAE Development. Cloud Application Development (SE808, School of Software, Sun Yat-Sen University) Yabo (Arber) Xu Lecture 10 Fundamentals of GAE Development Cloud Application Development (SE808, School of Software, Sun Yat-Sen University) Yabo (Arber) Xu Outline GAE Architecture GAE Dev Environment Anatomy of GAE

More information

Getting Started with Web Applications

Getting Started with Web Applications 3 Getting Started with Web Applications A web application is a dynamic extension of a web or application server. There are two types of web applications: Presentation-oriented: A presentation-oriented

More information