SlideShare a Scribd company logo
1 of 5
Download to read offline
ISSN: 2278 – 1323
                    International Journal of Advanced Research in Computer Engineering & Technology
                                                                        Volume 1, Issue 4, June 2012


   Promulgate: an approach to Optimize the data
     transfer in Service Oriented Architecture
                    B. Chandra Mouli                                                     Prof. C. Rajendra,
           M. Tech (Software Engineering),                                           Head, Department of CSE,
   Audisankara College of Engineering & Technology,                      Audisankara College of Engineering & Technology,
             Gudur, Andhrapradesh, India,                                          Gudur, Andhrapradesh, India.
               bathalamouli@gmail.com

Abstract— The main potential benefit of Service-oriented           architecture was hardly ever performed. With the rise of
architecture (SOA) is applying across multiple solution            multi-tier applications, the variations with which
environments based on the request and reply paradigm.              applications could be delivered began to dramatically
Service-oriented architecture integrates both enterprise and       increase. IT departments started to recognize the need for a
application architectures. When the services and size of the       standardized definition of a baseline application that could
workflow increases, the SOA orchestration reaches the              act as a template for all others. This definition was abstract
scalability limits and same effected on the data transmission      in nature, but specifically explained the technology,
between services, a standard orchestration desires to transport    boundaries, rules, limitations, and design characteristics that
all the data through a workflow engine when communicate on         apply to all solutions based on this template. This was the
the web service without any third party data transfer, which       birth of the application architecture.
results redundant data transfer and engine to become a
bottleneck to execution of a workflow.                                 Application architecture is a blueprint for the application
     As a solution, we present Promulgate, an alternative          development team; different organizations may construct
service-oriented architecture. Promulgate proposed an              different applications architectures. Some may document it
orchestration model as central control in grouping with a          as high level providing abstract physical and logical
choreography model of optimized distributed data transport.        representations of the technical blueprint, and others include
We are using Data caching techniques by using dynamic proxy        data models, communication flow diagrams, application-
deployment and SOAP compression techniques by using zipped         wide security requirements, and aspects of infrastructure. It
SOAP for this hybrid architecture to optimize the data transfer
                                                                   is not unusual for an organization to have numerous
in SOA.
                                                                   application architectures. A single architecture document
Keywords-SOA; Promulgate; data transfer; data caching;             typically represents a distinct solution environment. For
SOAP- compression; ZippedSOAP.                                     example, an organization that houses both .NET and J2EE
                                                                   solutions would very likely have separate application
                                                                   architecture specifications for each. It is for this reason that
                     I.    INTRODUCTION                            when multiple application architectures exist within an
    Service-oriented architecture (SOA) is the advancement         organization, they are almost always accompanied by and
of distributed computing based on the request and reply            kept in alignment with governing enterprise architecture.
paradigm. In the early days, distributed applications                  In larger IT organizations, the need to control and direct
communicated using proprietary protocols, and system               IT infrastructure is critical, when various, disparate
administrators used ad hoc methods to manage systems that          application architectures co-exist and sometimes even
might be across town, on another continent, or anywhere in         integrate, the demands on the underlying hosting platforms
between. Many standards have been developed over the               can be complex and onerous. Therefore, it is necessary for
years to reduce the costs of deployment and maintenance,           create a master specification, providing a high-level
with varying degrees of success. Today, the key                    overview of all forms of heterogeneity that exist within an
technologies in distributed systems are service-oriented           enterprise, as well as a definition of the supporting
architecture (SOA). [1]                                            infrastructure. An enterprise architecture specification is to
    In considering the term service-oriented architecture, it      an organization what an urban plan is to a city. Typically,
is useful to review the key terms. Architecture is the             changes to enterprise architectures directly affect application
structure of a system, defining its functions, externally          architectures, which is why architecture specifications often
visible properties, and interfaces and internal components         are maintained by the same group of individuals. Further,
and their relationships, along with the principles governing       enterprise architectures often contain a long-term vision of
its design, operation, and evolution [2]. A service is a           how the organization plans to evolve its technology and
software component that can be access via a network to             environments.
provide functionality to a service client and used in a                Service-oriented architecture integrate both enterprise
technology neutral standard form [3]. The term service-            and application architectures. The main potential benefit of
oriented architecture is a pattern of constructing distributed     SOA is applying across multiple solution environments.
systems that transport functionality as services, with the         This is where the investment in building reusable and
loosely coupling and interacting services. In older                interoperable services based on a vendor-neutral
environments, the building of the solution was so straight         communications platform can fully be leveraged. Both the
forward that the task of abstracting and defining its              architectures are integrated by placing the service layer in



                                                                                                                              542
                                                All Rights Reserved © 2012 IJARCET
ISSN: 2278 – 1323
                    International Journal of Advanced Research in Computer Engineering & Technology
                                                                        Volume 1, Issue 4, June 2012
between them. The service layer acts as an interface between     redundant data transfer and engine to become a bottleneck to
the both the architectures.                                      execution of a workflow.
    Service is a functionality offered to satisfy the                This paper presents and evaluates the Promulgate
consumer’s need according to a negotiated contract which         architecture, which sits in between pure orchestration
includes Service Agreement. Web Service is a piece of code       (completely centralized) and pure choreography (completely
that can be retrieving via a network to provide services as      decentralized). This centralized control flow; distributed
functionality to a service client without knowing the code       data flow model maintains the sturdiness and plainness of
behind it. Web service is also defied as a software system       centralized orchestration but services choreography by
designed to support interoperable machine to machine             allowing services to transfer data between themselves,
interaction over a network. A Web service provides as “a         without the complications associated with modeling and
standardized way of integrating Web-based applications           deploying service choreographies. The Promulgate
using the XML, SOAP, WSDL, and UDDI open standards               architecture reduces data transfer between services (which
over an Internet protocol backbone. The XML, SOAP,               don’t contain functionality for third-party data transfer),
UDDI are the available open standards, each have their own       which in turn speeds up the execution time of workflows
uses, XML is for to tagging the data, SOAP is for                and removes the bottlenecks associated with centralized
transferring the data, WSDL is for describing the services       orchestration.
available in the service describing, and UDDI is for listing         The promulgate approach concentrates on the two main
what services are available in the universal description.        issues, one is the data caching using dynamic proxy
    Work flow is the automation of business processes, in        deployment to avoid the load balancing depending on the
whole or in part, during which documents, information or         network traffic, and another one is zippedSOAP to reduce
tasks are passed from one participant to another for action      the quantity of the data transfer between the web services.
according to a set of procedural rules.
                                                                               II.    THE PROMULGATE ARCHITECTURE
    Orchestration is a centrally controlled set of workflow
logic facilitates interoperability between two or more              This Section describes the Promulgate architecture’s
different applications. With orchestration, different            hybrid model, Web services implementation,
processes can be connected without having to redevelop the
solutions that originally automated the processes                A. Promulgate Actors
individually. Orchestration bridges this gap by introducing          The Promulgate architecture is a hybrid between
new workflow logic. Further, the use of orchestration can        orchestration and choreography techniques. In order to
significantly reduce the complexity of solution                  provide Web services with the required functionality proxies
environments. Workflow logic is abstracted and more easily       are introduced. Proxies are less disturbing than previous
maintained than when embedded within individual solution         choreography models as individual services do not have to
components.                                                      be reconfigured in order to take part in a workflow.
    The requirement for organizations to interoperate via            Proxies are proscribed during a centralized workflow
services is becoming increasingly real and increasingly          engine, running a chance workflow language; allowing
complex. This is especially true when interoperation             standards-based approaches and tooling to be utilized.
requirements extend into the realm of collaboration, where       Proxies switch references to data with the workflow engine
multiple services from different organizations need to work      and overtake actual data directly to where they are required
together to achieve a common goal. The Web Services              for the next service incantation. This allows the workflow
Choreography Description Language (WS-CDL) is one of             engine to monitor the progress and make changes to the
several specifications that attempts to organize information     execution of a workflow. To utilize a proxy, a Web service
exchange between multiple organizations (or even multiple        must first be registered. The Promulgate actors and
applications within organizations), with an emphasis on          interactions are illustrated by figure 1 and described below:
public collaboration.
    By adopting a choreography model the output of a
service incantation can be conceded straight to where it is
required, as input to the next service in the workflow, not
through a centralized workflow engine as in the case with
orchestration. Decentralized control brings a new set of
problems, which are the result of message passing between
asynchronous distributed and concurrent processes. In
addition, current choreography models are persistent, in that
each individual service needs to be re-engineered in order to
take part in choreography.                                                                                                       WFE

    When the services and size of the workflow increases,
                                                                 Figure 1 Promulgate architecture, web service are represented by hollow circles,
the SOA orchestration reaches the scalability limits and          proxies by red solid circles, dashed lines WAN hops, solid lines are LAN hops.
same effected on the data transmission between services, a
standard orchestration desires to transport all the data
through a workflow engine when communicate on the web                     Engine to proxy (WFE→P) interaction: In the
service without any third party data transfer, which results               standard orchestration model, the workflow engine
                                                                           interacts directly with all Web services, which for


                                                                                                                                           543
                                              All Rights Reserved © 2012 IJARCET
ISSN: 2278 – 1323
                     International Journal of Advanced Research in Computer Engineering & Technology
                                                                         Volume 1, Issue 4, June 2012
        the remainder of the paper the author denote the            SOAP response transmits via internet. The zippedSOAP
        engine to Web service interaction (WFE→S). Using            structure is described in figure 4. The diagram shows when
        the Promulgate architecture, the workflow engine            the compression will take place [5].
        remains the centralized orchestrator for the
        workflow, however the task of service invocation is
        delegated to a proxy (WFE→P).
       Proxy-Web service (P→S) interaction: Proxies
        neither create Web service requests, nor do they
        utilize their responses. Proxies raise services on
        behalf of a workflow engine, store the result (if
        required) and return a reference to the workflow
        engine.
       Proxy to proxy (P→P) interaction: Proxies elevate
        Web services on behalf of a workflow engine,
        instead of transfer the results of a service incantation
        back to the workflow engine; they can be stored (if
        required) within the proxy. In order for a workflow
        to improvement, i.e., the output of a service
        incantation is required as input to another service
        incantation, proxies pass data between themselves,
        moving it closer to the source of the next Web
        service incantation.                                                                  Figure 2 Zipped Soap process
    Proxies are preferably deployed as near as possible to
registered Web services; by near we mean in terms of
network distance, so that the communication slide between a                               IV.     EXPERIMENTAL SETUP
proxy and a Web service is minimized.                                   A number of performance analysis experiments have
                                                                    been devised in order to observe and analyze the behavior of
B. Web Services Implementation                                      various workflow patterns and variables to compare the
    WS-Promulgate are implemented using a combination of            Promulgate architecture with that of a standard centralized
.Net and the IIS and Apache Axis Web services toolkit [4].          orchestration model. The following sections describe the
Proxies are simple to deploy and can be configured                  structure of the resulting performance analysis experiments.
remotely, no specialized programming needs to take place in
order to develop their functionality. The only changes              A. Node Size and Network Configurations
essential are to the workflow condition itself which invokes            In our experimental set up, data flows with no data
methods on the proxy rather than the services straight. WS-         transformations (i.e., the output of one method invocation is
Promulgate are multithreaded and allow several applications         the input to another). We use nonblocking asynchronous
to invoke methods concurrently. Outcome from Web service            communication between the Web services, even though data
invocations are stored at a proxy by labeling them with a           forwarding between proxies occurs after all Web services
Universally Unique Identifier and writing them to disk.             have refined execution. For each of the 3 workflow patterns:
There is an assumption that there is sufficient disk space and      sequence, fan-in and fan-out, the time taken for the pattern
that storage is temporary, which the proxy can clean                to complete using centralized orchestration and using the
up/delete afterwards.                                               Promulgate architecture is recorded (in milliseconds) as the
                                                                    size of the input data (in Megabytes) is increased. This basic
                  III.   SOAP COMPRESSION                           set up is then run incrementally over a number of workflow
                                                                    node sizes: 4, 8 and 16 nodes in order to discover the affects
    SOAP is a simple XML-based protocol to let                      of scalability. Every node size (i.e., 4, 8 or 16) is then sprint
applications exchange information over HTTP, Or more                over unusual network configurations to explore how
simply: SOAP is a protocol for accessing a Web Service. It          network configuration affects the performance of a
is important for application development to allow Internet          workflow.
communication between programs. A better way to
communicate between applications is over HTTP, because
HTTP is supported by all Internet browsers and servers.
SOAP was created to accomplish this. SOAP provides a way
to communicate between applications running on different
operating systems, with different technologies and
programming languages.

A. ZippedSOAP                                                       Figure 3 Configurations from left to right: local LAN, remote LAN, internet scale.

    The entire SOAP transmissions are depends on the
serialization to de-serialization, and de-serialization to             We have selected the following network configuration
serialization. Where the ZippedSOAP squash the SOAP                 (shown in Figure 5) which imitate common scenarios when
message before the SOAP request transmits via internet and          composing sets of physically distributed services:



                                                                                                                                                544
                                                 All Rights Reserved © 2012 IJARCET
ISSN: 2278 – 1323
                      International Journal of Advanced Research in Computer Engineering & Technology
                                                                          Volume 1, Issue 4, June 2012
   LAN experiments: Stirring the Web services to a               A. Techniques in Data Transfer Optimisation
comparatively uniform network topology in terms of speed,           There are a limited number of research papers that have
e.g., a LAN allows for a basic analysis of the two models. In    identified the problem of a centralized approach to service
a LAN, it is expected that the cost of the communication         orchestration.
links WFE→S, P→S and P→P have little variance in terms
of bandwidth. In this case the performance assistance with           The Flow-based Infrastructure for Composing
                                                                 autonomous Services or FICAS [6] is distributed data-flow
respect to the different workflow patterns may be showing
                                                                 architecture for composing software services. Composition
more readily. We explore this with a LAN configuration
                                                                 of the services in the FICAS architecture is specified using
with a local workflow engine i.e., same LAN and a LAN            the Compositional Language for Autonomous Services
with a remote workflow engine i.e., connected through a          (CLAS), FICAS is intrusive to the application code as each
WAN.                                                             application that is to be deployed needs to be wrapped with
                                                                 a FICAS interface. In contrast, our proxy model is stretchier
                                                                 as the services themselves entail no variation and do not
                 V.     LAN CONFIGURATION
                                                                 even need to know that they are interacting with a proxy.
    A pool of computers from the Audisankara College of          Additionally our Promulgate proxy approach introduces the
Engineering and Technology (ACET) LAN were selected as           concept of transient references to data around and deals with
workflow nodes for these configurations. These machines          modern workflow standards.
are all located in the same building and are connected to the
network via a 100 Mbit network connection. All these                 In [8] a similar untainted choreography approach is also
machines share the same hardware/operating environment:          proposed. Authors introduce a style for transforming the
Intel Core 2 Duo with 2GB RAM running Windows XP. In             orchestration logic in BPEL into a set of individual actions
addition to these coordinated machines, related servers          that co-ordinate themselves by transecting tokens over
(detach machines) were selected to act as the workflow           shared, distributed tuple spaces. The model suitable for
engine.                                                          execution is called Executable Workflow Networks
                                                                 (EWFN), a Petri nets dialect. This approach utilizes a
                                                                 untainted choreography model which has many additional
A. LAN - Remote Orchestration
                                                                 modeling and performing problems associated with it, due
    By moving the workflow engine exterior of the LAN            primarily to the complexity of message passing between
configuration, we can discover workflow engine to Web            distributed, concurrent processes.
service (WFE→S) communication. This reflects a very
common real world scenario where a specific organization             In [9] Data caching techniques in Grid workflows are
provides the whole Web services used to create a workflow,       proposed. This design caches virtual data of previous
but the services are being orchestrated remotely. In             queries, so any overlapping queries and processing do not
particular this is applicable to Cloud Computing scenarios       have to be repeated. The Promulgate architecture stores data
where services are typically hosted on groups of co-located      at a proxy so that it can be transferred directly to the next
machines and where the end user requiring these services is      stage of the workflow, avoiding costly network hops back to
remote.                                                          the workflow engine. It is then up to the user to clean up
                                                                 stored data afterwards, the automated data caching
B. LAN - Local Orchestration                                     techniques proposed could be applied to the Promulgate
                                                                 proxies to further enhance performance.
    In order to discover the limits of our Promulgate
approach, the workflow engine is deployed on a computer
                                                                 B. Third-party Data Transfers
that is also connected to the proxies and Web services via a
network switch. This is a proper tentative setup to test the         This paper focuses primarily on optimizing service
supposition of communication tie equality but does not           oriented data transmissions and workflows, where services
essentially imitate frequent deployed patterns of Web            are: not equipped to handle third-party transfers, owned and
services; in general the workflow engine is remote.              maintained by different organizations, and cannot be altered
                                                                 in anyway prior to enactment.
    In a LAN environment we make the assumption that the
cost of communication is relatively uniform, therefore the           Directed Acyclic Graph Manager (DAGMan) [10]
cost of WFE→S, WFE→P, P→S and P→P can be                         submits jobs represented as a DAG to a Condor pool of
considered approximately equal. The Promulgate                   resources. DAGMan removes the workflow bottleneck as
architecture introduces extra communication links (between       data are transferred straight among vertices in a DAG
P→S) across this uniform network topology, which in turn         however focuses solely on Condor bases Grid jobs and does
degrades the execution time of a workflow when compared          not tackle the bottleneck problems related with orchestrating
to standard orchestration.                                       service-oriented workflows.
                                                                     Triana[11] is an open-source problem solving
                      VI.   RELATED WORK                         environment. It is designed to define process, analyze,
     This Section discusses all related work from the            manage, execute and monitor workflows. Triana can
literature, spanning pure choreography languages,                distribute sections of a workflow to remote machines
enhancements to widely used modeling techniques, i.e.,           through a connected peer-to-peer network.
BPMN, decentralized orchestration, data flow optimization            OGSA-DAI [12] is a middleware product that supports the
architectures and Grid toolkits.                                 exposure of data resources on to Grids. This middleware
                                                                 facilitates data streaming between home OGSA-DAI



                                                                                                                         545
                                              All Rights Reserved © 2012 IJARCET
ISSN: 2278 – 1323
                        International Journal of Advanced Research in Computer Engineering & Technology
                                                                            Volume 1, Issue 4, June 2012
instances. Our Promulgate model could be implemented on                      [7]    W. Binder, I. Constantinescu, and B. Faltings. Decentralized
this stand to take advantages of its streaming model.                               Ochestration of Composite Web Services. In Proccedings of the
                                                                                    International Conference on Web Services, ICWS’06, pages 869–876.
    Grid Services Flow Language (GSFL) [13] addresses                               IEEE Computer Society, 2006.
some of the issues discussed in this paper in the context of                 [8]    D. Martin, D. Wutke, and F. Leymann. A Novel Approach to
Grid services; in particular services adopt a peer-to peer data                     Decentralized Workflow Enactment. EDOC ’08. 12th International
                                                                                    IEEE Conference on Enterprise Distributed Object Computing, Pages
flow model. However, individual services have to be altered                         127–136, 2008.
prior to enactment, which is an invasive and custom                          [9]    D. Chiu and G. Agrawal. Hierarchical caches for grid workflows. In
solution, something that is avoided in the Promulgate                               CCGRID ’09: Proceedings of the 2009 9th IEEE/ACM International
architecture.                                                                       Symposium on Cluster Computing and the Grid, pages 228–235,
                                                                                    Washington, DC, USA, 2009. IEEE Computer Society.
                                                                             [10]   Condor Team. www.cs.wisc.edu/condor/dagman [07/06/10].
                        VII. CONCLUSSIONS
                                                                             [11]   I. Taylor, M. Shields, I. Wang, and R. Philp. Distributed P2P
   When the services and size of the workflow increases, the                        Computing within Triana: A Galaxy Visualization Test Case. In 17th
SOA orchestration reaches the scalability limits and same                           International Parallel and Distributed Processing Symposium (IPDPS
                                                                                    2003), pages 16–27. IEEE Computer Society, 2003.
effected on the data transmission between services, a
                                                                             [12]   K. Karasavvas, M. Antonioletti, M. Atkinson, N. C. Hong, T. Sugden,
standard orchestration desires to transport all the data                            A. Hume, M. Jackson, A. Krause, and C. Palansuriya. Introduction to
through a workflow engine when communicate on the web                               OGSA-DAI Services. In LNCS, volume 3458, pages 1–12, 2005
service without any third party data transfer, which results                 [13]   S. Krishnan, P. Wagstrom, and G. von Laszewski. GSFL: A
redundant data transfer and engine to become a bottleneck to                        Workflow Framework for Grid Services. Technical report, Argonne
execution of a workflow. Decentralized choreography                                 National Argonne National Laboratory, 2002.
models, even though optimal in requisites of data transfer
are far more composite to build due to message passing
between distributed, synchronized process and in practice
and rarely deployed.
    This paper has presented the Promulgate architecture; a
centralized orchestration model of control with a peer to-
peer choreography model of data transfer. This additional
functionality is achieved through the deployment of a
dynamic proxy and the zipped SOAP techniques that
provides a gateway and standard API to Web service
invocation. Prominently, proxies can be installed without
unsettling current services and with least changes in the
workflows that make use of them. This litheness allows a
regular change of infrastructures, where one could
concentrate first on improving data transfers between
services that handle large amounts data.
      Future work includes the following challenges:
   Data transformation: Shimming is the process of
changing the frequent workflow task to the output data from
one service into a slightly diverse layout to use as input into
another service. This will affect the performance of a
workflow further as it introduces an extra service into the
workflow chain. Our future work includes developing a
shim loader component, where custom shims can be
uploaded to the proxy, allowing shims to be performed
locally at a proxy, avoiding the introduction of further
network hops.

                             REFERENCES
[1]   An Overview of Service-Oriented Architecture, Web Service and Grid
      Computing by Latha Srinivasan and Jem Treadwll HP Software
      Global Business Unit (Nov, 2005).
[2]   Software Architecture in Practice, Second Edition by Len Bass, Paul
      Clemgents, Rick Kazman.
[3]   Service Oriented Architecture: Concepts,, Technology, and Design by
      Thomas Erl
[4]   Apache Axis. http://ws.apache.org/axis [24/02/11].
[5]   SOAPCompression,
      http://wiki.developerforce.com/page/SOAP_Compression
[6]   D. Liu, K. H. Law, and G. Wiederhold. Data-flow Distribution in
      FICAS Service Composition Infrastructure. In Proceedings of the 15th
      International Conference on Parallel and Distributed Computing
      Systems, 2002.




                                                                                                                                                 546
                                                         All Rights Reserved © 2012 IJARCET

More Related Content

What's hot

"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...
"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"..."A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...
"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...Prem Gurbani
 
SOA for Enterprise Architecture
SOA for Enterprise ArchitectureSOA for Enterprise Architecture
SOA for Enterprise ArchitectureYan Zhao
 
SOA Reference Architecture
SOA Reference ArchitectureSOA Reference Architecture
SOA Reference ArchitectureRajan Ramanujam
 
Service Oriented & Model Driven Architectures
Service Oriented & Model Driven ArchitecturesService Oriented & Model Driven Architectures
Service Oriented & Model Driven ArchitecturesPankaj Saharan
 
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAAS
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAASMULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAAS
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAASijseajournal
 
Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Biniam Asnake
 
Part I -Summary of service oriented architecture (soa) concepts, technology, ...
Part I -Summary of service oriented architecture (soa) concepts, technology, ...Part I -Summary of service oriented architecture (soa) concepts, technology, ...
Part I -Summary of service oriented architecture (soa) concepts, technology, ...Mohammed Omar
 
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...birdsking
 
Lectura 2.3 soa-overview-directions-benatallah
Lectura 2.3   soa-overview-directions-benatallahLectura 2.3   soa-overview-directions-benatallah
Lectura 2.3 soa-overview-directions-benatallahMatias Menendez
 
Configuration inerpsaas multi tenancy
Configuration inerpsaas multi tenancyConfiguration inerpsaas multi tenancy
Configuration inerpsaas multi tenancyijcseit
 
Service-oriented Architecture with Respect to Reusability
Service-oriented Architecture with Respect to ReusabilityService-oriented Architecture with Respect to Reusability
Service-oriented Architecture with Respect to ReusabilityYazd University
 
Part II - Summary of service oriented architecture (SOA) concepts, technology...
Part II - Summary of service oriented architecture (SOA) concepts, technology...Part II - Summary of service oriented architecture (SOA) concepts, technology...
Part II - Summary of service oriented architecture (SOA) concepts, technology...Mohammed Omar
 
CBSE VS SOA SJSU Presentation
CBSE VS SOA SJSU PresentationCBSE VS SOA SJSU Presentation
CBSE VS SOA SJSU Presentationmgp1560
 

What's hot (19)

"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...
"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"..."A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...
"A Highly Decoupled Front-end Framework for High Trafficked Web Applications"...
 
SOA for Enterprise Architecture
SOA for Enterprise ArchitectureSOA for Enterprise Architecture
SOA for Enterprise Architecture
 
Soa chapter 5
Soa chapter 5Soa chapter 5
Soa chapter 5
 
SOA Reference Architecture
SOA Reference ArchitectureSOA Reference Architecture
SOA Reference Architecture
 
Service Oriented & Model Driven Architectures
Service Oriented & Model Driven ArchitecturesService Oriented & Model Driven Architectures
Service Oriented & Model Driven Architectures
 
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAAS
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAASMULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAAS
MULTIVIEW SOA : EXTENDING SOA USING A PRIVATE CLOUD COMPUTING AS SAAS AND DAAS
 
Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)
 
Part I -Summary of service oriented architecture (soa) concepts, technology, ...
Part I -Summary of service oriented architecture (soa) concepts, technology, ...Part I -Summary of service oriented architecture (soa) concepts, technology, ...
Part I -Summary of service oriented architecture (soa) concepts, technology, ...
 
Service oriented architecture 27 May 2014
Service oriented architecture 27 May 2014Service oriented architecture 27 May 2014
Service oriented architecture 27 May 2014
 
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...
Ieee projects-2014-bulk-ieee-projects-2015-title-list-for-me-be-mphil-final-y...
 
Lectura 2.3 soa-overview-directions-benatallah
Lectura 2.3   soa-overview-directions-benatallahLectura 2.3   soa-overview-directions-benatallah
Lectura 2.3 soa-overview-directions-benatallah
 
SOA unit-3-notes-Introduction to Service Oriented Architecture
SOA unit-3-notes-Introduction to Service Oriented ArchitectureSOA unit-3-notes-Introduction to Service Oriented Architecture
SOA unit-3-notes-Introduction to Service Oriented Architecture
 
2011-ESB-WP-Draft
2011-ESB-WP-Draft2011-ESB-WP-Draft
2011-ESB-WP-Draft
 
Configuration inerpsaas multi tenancy
Configuration inerpsaas multi tenancyConfiguration inerpsaas multi tenancy
Configuration inerpsaas multi tenancy
 
Service-oriented Architecture with Respect to Reusability
Service-oriented Architecture with Respect to ReusabilityService-oriented Architecture with Respect to Reusability
Service-oriented Architecture with Respect to Reusability
 
Plastic
PlasticPlastic
Plastic
 
Introduction to SOA
Introduction to SOAIntroduction to SOA
Introduction to SOA
 
Part II - Summary of service oriented architecture (SOA) concepts, technology...
Part II - Summary of service oriented architecture (SOA) concepts, technology...Part II - Summary of service oriented architecture (SOA) concepts, technology...
Part II - Summary of service oriented architecture (SOA) concepts, technology...
 
CBSE VS SOA SJSU Presentation
CBSE VS SOA SJSU PresentationCBSE VS SOA SJSU Presentation
CBSE VS SOA SJSU Presentation
 

Viewers also liked (15)

24 26
24 2624 26
24 26
 
27 32
27 3227 32
27 32
 
75 78
75 7875 78
75 78
 
590 599
590 599590 599
590 599
 
42 46
42 4642 46
42 46
 
75 78
75 7875 78
75 78
 
102 105
102 105102 105
102 105
 
504 508
504 508504 508
504 508
 
666 670
666 670666 670
666 670
 
315 319
315 319315 319
315 319
 
1 7
1 71 7
1 7
 
119 128
119 128119 128
119 128
 
280 284
280 284280 284
280 284
 
111 118
111 118111 118
111 118
 
680 684
680 684680 684
680 684
 

Similar to 542 546

Term paper 2073131
Term paper   2073131Term paper   2073131
Term paper 2073131mtestman
 
Contemporary research challenges and applications of service oriented archite...
Contemporary research challenges and applications of service oriented archite...Contemporary research challenges and applications of service oriented archite...
Contemporary research challenges and applications of service oriented archite...Dr. Shahanawaj Ahamad
 
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESWEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESijwscjournal
 
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESWEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESijwscjournal
 
Cloud computing
Cloud computingCloud computing
Cloud computingshethzaid
 
AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06Jay van Zyl
 
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.ppt
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.ppt
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptNKannanCSE
 
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...IRJET Journal
 
20507-38933-1-PB.pdf
20507-38933-1-PB.pdf20507-38933-1-PB.pdf
20507-38933-1-PB.pdfIjictTeam
 
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdf
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdfServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdf
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdfMsDelphyP
 
Service oriented cloud computing
Service oriented cloud computingService oriented cloud computing
Service oriented cloud computingMandar Pathrikar
 
Architecture evolution for automation and network programmability
Architecture evolution for automation and network programmabilityArchitecture evolution for automation and network programmability
Architecture evolution for automation and network programmabilityEricsson
 
CBSE VS SOA Presentation
CBSE VS SOA PresentationCBSE VS SOA Presentation
CBSE VS SOA PresentationMaulik Parikh
 
Introduction to Micro Services
Introduction to Micro ServicesIntroduction to Micro Services
Introduction to Micro ServicesShashi Shekhar
 

Similar to 542 546 (20)

Performance in soa context
Performance in soa contextPerformance in soa context
Performance in soa context
 
Term paper 2073131
Term paper   2073131Term paper   2073131
Term paper 2073131
 
Contemporary research challenges and applications of service oriented archite...
Contemporary research challenges and applications of service oriented archite...Contemporary research challenges and applications of service oriented archite...
Contemporary research challenges and applications of service oriented archite...
 
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESWEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
 
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHESWEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
WEB PORTAL INTEGRATION ARCHITECTURE APPROACHES
 
Www2008 Restws Pautasso Zimmermann Leymann
Www2008 Restws Pautasso Zimmermann LeymannWww2008 Restws Pautasso Zimmermann Leymann
Www2008 Restws Pautasso Zimmermann Leymann
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06
 
As044285288
As044285288As044285288
As044285288
 
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.ppt
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.ppt
SOA@MODULE-III.pptSOA@MODULE-III.pptSOA@MODULE-III.ppt
 
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...
STUDY OF EVALUATION AND ASSESSMENT OF A CONSOLIDATED INTERNET SERVICE ARRANGE...
 
20507-38933-1-PB.pdf
20507-38933-1-PB.pdf20507-38933-1-PB.pdf
20507-38933-1-PB.pdf
 
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdf
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdfServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdf
ServiceOrientedSoftwareEngineeringSOSEASurveyandGapAnalysis.pdf
 
Service oriented cloud computing
Service oriented cloud computingService oriented cloud computing
Service oriented cloud computing
 
Basic concepts of soa
Basic concepts of soaBasic concepts of soa
Basic concepts of soa
 
Architecture evolution for automation and network programmability
Architecture evolution for automation and network programmabilityArchitecture evolution for automation and network programmability
Architecture evolution for automation and network programmability
 
CBSE VS SOA Presentation
CBSE VS SOA PresentationCBSE VS SOA Presentation
CBSE VS SOA Presentation
 
A Survey and Comparison of SDN Based Traffic Management Techniques
A Survey and Comparison of SDN Based Traffic Management TechniquesA Survey and Comparison of SDN Based Traffic Management Techniques
A Survey and Comparison of SDN Based Traffic Management Techniques
 
SOA Unit I
SOA Unit ISOA Unit I
SOA Unit I
 
Introduction to Micro Services
Introduction to Micro ServicesIntroduction to Micro Services
Introduction to Micro Services
 

More from Editor IJARCET

Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationEditor IJARCET
 
Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Editor IJARCET
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Editor IJARCET
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Editor IJARCET
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Editor IJARCET
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Editor IJARCET
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Editor IJARCET
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Editor IJARCET
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Editor IJARCET
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Editor IJARCET
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Editor IJARCET
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Editor IJARCET
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Editor IJARCET
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Editor IJARCET
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Editor IJARCET
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Editor IJARCET
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Editor IJARCET
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Editor IJARCET
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Editor IJARCET
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Editor IJARCET
 

More from Editor IJARCET (20)

Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturization
 
Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107
 

Recently uploaded

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Recently uploaded (20)

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

542 546

  • 1. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology Volume 1, Issue 4, June 2012 Promulgate: an approach to Optimize the data transfer in Service Oriented Architecture B. Chandra Mouli Prof. C. Rajendra, M. Tech (Software Engineering), Head, Department of CSE, Audisankara College of Engineering & Technology, Audisankara College of Engineering & Technology, Gudur, Andhrapradesh, India, Gudur, Andhrapradesh, India. bathalamouli@gmail.com Abstract— The main potential benefit of Service-oriented architecture was hardly ever performed. With the rise of architecture (SOA) is applying across multiple solution multi-tier applications, the variations with which environments based on the request and reply paradigm. applications could be delivered began to dramatically Service-oriented architecture integrates both enterprise and increase. IT departments started to recognize the need for a application architectures. When the services and size of the standardized definition of a baseline application that could workflow increases, the SOA orchestration reaches the act as a template for all others. This definition was abstract scalability limits and same effected on the data transmission in nature, but specifically explained the technology, between services, a standard orchestration desires to transport boundaries, rules, limitations, and design characteristics that all the data through a workflow engine when communicate on apply to all solutions based on this template. This was the the web service without any third party data transfer, which birth of the application architecture. results redundant data transfer and engine to become a bottleneck to execution of a workflow. Application architecture is a blueprint for the application As a solution, we present Promulgate, an alternative development team; different organizations may construct service-oriented architecture. Promulgate proposed an different applications architectures. Some may document it orchestration model as central control in grouping with a as high level providing abstract physical and logical choreography model of optimized distributed data transport. representations of the technical blueprint, and others include We are using Data caching techniques by using dynamic proxy data models, communication flow diagrams, application- deployment and SOAP compression techniques by using zipped wide security requirements, and aspects of infrastructure. It SOAP for this hybrid architecture to optimize the data transfer is not unusual for an organization to have numerous in SOA. application architectures. A single architecture document Keywords-SOA; Promulgate; data transfer; data caching; typically represents a distinct solution environment. For SOAP- compression; ZippedSOAP. example, an organization that houses both .NET and J2EE solutions would very likely have separate application architecture specifications for each. It is for this reason that I. INTRODUCTION when multiple application architectures exist within an Service-oriented architecture (SOA) is the advancement organization, they are almost always accompanied by and of distributed computing based on the request and reply kept in alignment with governing enterprise architecture. paradigm. In the early days, distributed applications In larger IT organizations, the need to control and direct communicated using proprietary protocols, and system IT infrastructure is critical, when various, disparate administrators used ad hoc methods to manage systems that application architectures co-exist and sometimes even might be across town, on another continent, or anywhere in integrate, the demands on the underlying hosting platforms between. Many standards have been developed over the can be complex and onerous. Therefore, it is necessary for years to reduce the costs of deployment and maintenance, create a master specification, providing a high-level with varying degrees of success. Today, the key overview of all forms of heterogeneity that exist within an technologies in distributed systems are service-oriented enterprise, as well as a definition of the supporting architecture (SOA). [1] infrastructure. An enterprise architecture specification is to In considering the term service-oriented architecture, it an organization what an urban plan is to a city. Typically, is useful to review the key terms. Architecture is the changes to enterprise architectures directly affect application structure of a system, defining its functions, externally architectures, which is why architecture specifications often visible properties, and interfaces and internal components are maintained by the same group of individuals. Further, and their relationships, along with the principles governing enterprise architectures often contain a long-term vision of its design, operation, and evolution [2]. A service is a how the organization plans to evolve its technology and software component that can be access via a network to environments. provide functionality to a service client and used in a Service-oriented architecture integrate both enterprise technology neutral standard form [3]. The term service- and application architectures. The main potential benefit of oriented architecture is a pattern of constructing distributed SOA is applying across multiple solution environments. systems that transport functionality as services, with the This is where the investment in building reusable and loosely coupling and interacting services. In older interoperable services based on a vendor-neutral environments, the building of the solution was so straight communications platform can fully be leveraged. Both the forward that the task of abstracting and defining its architectures are integrated by placing the service layer in 542 All Rights Reserved © 2012 IJARCET
  • 2. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology Volume 1, Issue 4, June 2012 between them. The service layer acts as an interface between redundant data transfer and engine to become a bottleneck to the both the architectures. execution of a workflow. Service is a functionality offered to satisfy the This paper presents and evaluates the Promulgate consumer’s need according to a negotiated contract which architecture, which sits in between pure orchestration includes Service Agreement. Web Service is a piece of code (completely centralized) and pure choreography (completely that can be retrieving via a network to provide services as decentralized). This centralized control flow; distributed functionality to a service client without knowing the code data flow model maintains the sturdiness and plainness of behind it. Web service is also defied as a software system centralized orchestration but services choreography by designed to support interoperable machine to machine allowing services to transfer data between themselves, interaction over a network. A Web service provides as “a without the complications associated with modeling and standardized way of integrating Web-based applications deploying service choreographies. The Promulgate using the XML, SOAP, WSDL, and UDDI open standards architecture reduces data transfer between services (which over an Internet protocol backbone. The XML, SOAP, don’t contain functionality for third-party data transfer), UDDI are the available open standards, each have their own which in turn speeds up the execution time of workflows uses, XML is for to tagging the data, SOAP is for and removes the bottlenecks associated with centralized transferring the data, WSDL is for describing the services orchestration. available in the service describing, and UDDI is for listing The promulgate approach concentrates on the two main what services are available in the universal description. issues, one is the data caching using dynamic proxy Work flow is the automation of business processes, in deployment to avoid the load balancing depending on the whole or in part, during which documents, information or network traffic, and another one is zippedSOAP to reduce tasks are passed from one participant to another for action the quantity of the data transfer between the web services. according to a set of procedural rules. II. THE PROMULGATE ARCHITECTURE Orchestration is a centrally controlled set of workflow logic facilitates interoperability between two or more This Section describes the Promulgate architecture’s different applications. With orchestration, different hybrid model, Web services implementation, processes can be connected without having to redevelop the solutions that originally automated the processes A. Promulgate Actors individually. Orchestration bridges this gap by introducing The Promulgate architecture is a hybrid between new workflow logic. Further, the use of orchestration can orchestration and choreography techniques. In order to significantly reduce the complexity of solution provide Web services with the required functionality proxies environments. Workflow logic is abstracted and more easily are introduced. Proxies are less disturbing than previous maintained than when embedded within individual solution choreography models as individual services do not have to components. be reconfigured in order to take part in a workflow. The requirement for organizations to interoperate via Proxies are proscribed during a centralized workflow services is becoming increasingly real and increasingly engine, running a chance workflow language; allowing complex. This is especially true when interoperation standards-based approaches and tooling to be utilized. requirements extend into the realm of collaboration, where Proxies switch references to data with the workflow engine multiple services from different organizations need to work and overtake actual data directly to where they are required together to achieve a common goal. The Web Services for the next service incantation. This allows the workflow Choreography Description Language (WS-CDL) is one of engine to monitor the progress and make changes to the several specifications that attempts to organize information execution of a workflow. To utilize a proxy, a Web service exchange between multiple organizations (or even multiple must first be registered. The Promulgate actors and applications within organizations), with an emphasis on interactions are illustrated by figure 1 and described below: public collaboration. By adopting a choreography model the output of a service incantation can be conceded straight to where it is required, as input to the next service in the workflow, not through a centralized workflow engine as in the case with orchestration. Decentralized control brings a new set of problems, which are the result of message passing between asynchronous distributed and concurrent processes. In addition, current choreography models are persistent, in that each individual service needs to be re-engineered in order to take part in choreography. WFE When the services and size of the workflow increases, Figure 1 Promulgate architecture, web service are represented by hollow circles, the SOA orchestration reaches the scalability limits and proxies by red solid circles, dashed lines WAN hops, solid lines are LAN hops. same effected on the data transmission between services, a standard orchestration desires to transport all the data through a workflow engine when communicate on the web  Engine to proxy (WFE→P) interaction: In the service without any third party data transfer, which results standard orchestration model, the workflow engine interacts directly with all Web services, which for 543 All Rights Reserved © 2012 IJARCET
  • 3. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology Volume 1, Issue 4, June 2012 the remainder of the paper the author denote the SOAP response transmits via internet. The zippedSOAP engine to Web service interaction (WFE→S). Using structure is described in figure 4. The diagram shows when the Promulgate architecture, the workflow engine the compression will take place [5]. remains the centralized orchestrator for the workflow, however the task of service invocation is delegated to a proxy (WFE→P).  Proxy-Web service (P→S) interaction: Proxies neither create Web service requests, nor do they utilize their responses. Proxies raise services on behalf of a workflow engine, store the result (if required) and return a reference to the workflow engine.  Proxy to proxy (P→P) interaction: Proxies elevate Web services on behalf of a workflow engine, instead of transfer the results of a service incantation back to the workflow engine; they can be stored (if required) within the proxy. In order for a workflow to improvement, i.e., the output of a service incantation is required as input to another service incantation, proxies pass data between themselves, moving it closer to the source of the next Web service incantation. Figure 2 Zipped Soap process Proxies are preferably deployed as near as possible to registered Web services; by near we mean in terms of network distance, so that the communication slide between a IV. EXPERIMENTAL SETUP proxy and a Web service is minimized. A number of performance analysis experiments have been devised in order to observe and analyze the behavior of B. Web Services Implementation various workflow patterns and variables to compare the WS-Promulgate are implemented using a combination of Promulgate architecture with that of a standard centralized .Net and the IIS and Apache Axis Web services toolkit [4]. orchestration model. The following sections describe the Proxies are simple to deploy and can be configured structure of the resulting performance analysis experiments. remotely, no specialized programming needs to take place in order to develop their functionality. The only changes A. Node Size and Network Configurations essential are to the workflow condition itself which invokes In our experimental set up, data flows with no data methods on the proxy rather than the services straight. WS- transformations (i.e., the output of one method invocation is Promulgate are multithreaded and allow several applications the input to another). We use nonblocking asynchronous to invoke methods concurrently. Outcome from Web service communication between the Web services, even though data invocations are stored at a proxy by labeling them with a forwarding between proxies occurs after all Web services Universally Unique Identifier and writing them to disk. have refined execution. For each of the 3 workflow patterns: There is an assumption that there is sufficient disk space and sequence, fan-in and fan-out, the time taken for the pattern that storage is temporary, which the proxy can clean to complete using centralized orchestration and using the up/delete afterwards. Promulgate architecture is recorded (in milliseconds) as the size of the input data (in Megabytes) is increased. This basic III. SOAP COMPRESSION set up is then run incrementally over a number of workflow node sizes: 4, 8 and 16 nodes in order to discover the affects SOAP is a simple XML-based protocol to let of scalability. Every node size (i.e., 4, 8 or 16) is then sprint applications exchange information over HTTP, Or more over unusual network configurations to explore how simply: SOAP is a protocol for accessing a Web Service. It network configuration affects the performance of a is important for application development to allow Internet workflow. communication between programs. A better way to communicate between applications is over HTTP, because HTTP is supported by all Internet browsers and servers. SOAP was created to accomplish this. SOAP provides a way to communicate between applications running on different operating systems, with different technologies and programming languages. A. ZippedSOAP Figure 3 Configurations from left to right: local LAN, remote LAN, internet scale. The entire SOAP transmissions are depends on the serialization to de-serialization, and de-serialization to We have selected the following network configuration serialization. Where the ZippedSOAP squash the SOAP (shown in Figure 5) which imitate common scenarios when message before the SOAP request transmits via internet and composing sets of physically distributed services: 544 All Rights Reserved © 2012 IJARCET
  • 4. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology Volume 1, Issue 4, June 2012 LAN experiments: Stirring the Web services to a A. Techniques in Data Transfer Optimisation comparatively uniform network topology in terms of speed, There are a limited number of research papers that have e.g., a LAN allows for a basic analysis of the two models. In identified the problem of a centralized approach to service a LAN, it is expected that the cost of the communication orchestration. links WFE→S, P→S and P→P have little variance in terms of bandwidth. In this case the performance assistance with The Flow-based Infrastructure for Composing autonomous Services or FICAS [6] is distributed data-flow respect to the different workflow patterns may be showing architecture for composing software services. Composition more readily. We explore this with a LAN configuration of the services in the FICAS architecture is specified using with a local workflow engine i.e., same LAN and a LAN the Compositional Language for Autonomous Services with a remote workflow engine i.e., connected through a (CLAS), FICAS is intrusive to the application code as each WAN. application that is to be deployed needs to be wrapped with a FICAS interface. In contrast, our proxy model is stretchier as the services themselves entail no variation and do not V. LAN CONFIGURATION even need to know that they are interacting with a proxy. A pool of computers from the Audisankara College of Additionally our Promulgate proxy approach introduces the Engineering and Technology (ACET) LAN were selected as concept of transient references to data around and deals with workflow nodes for these configurations. These machines modern workflow standards. are all located in the same building and are connected to the network via a 100 Mbit network connection. All these In [8] a similar untainted choreography approach is also machines share the same hardware/operating environment: proposed. Authors introduce a style for transforming the Intel Core 2 Duo with 2GB RAM running Windows XP. In orchestration logic in BPEL into a set of individual actions addition to these coordinated machines, related servers that co-ordinate themselves by transecting tokens over (detach machines) were selected to act as the workflow shared, distributed tuple spaces. The model suitable for engine. execution is called Executable Workflow Networks (EWFN), a Petri nets dialect. This approach utilizes a untainted choreography model which has many additional A. LAN - Remote Orchestration modeling and performing problems associated with it, due By moving the workflow engine exterior of the LAN primarily to the complexity of message passing between configuration, we can discover workflow engine to Web distributed, concurrent processes. service (WFE→S) communication. This reflects a very common real world scenario where a specific organization In [9] Data caching techniques in Grid workflows are provides the whole Web services used to create a workflow, proposed. This design caches virtual data of previous but the services are being orchestrated remotely. In queries, so any overlapping queries and processing do not particular this is applicable to Cloud Computing scenarios have to be repeated. The Promulgate architecture stores data where services are typically hosted on groups of co-located at a proxy so that it can be transferred directly to the next machines and where the end user requiring these services is stage of the workflow, avoiding costly network hops back to remote. the workflow engine. It is then up to the user to clean up stored data afterwards, the automated data caching B. LAN - Local Orchestration techniques proposed could be applied to the Promulgate proxies to further enhance performance. In order to discover the limits of our Promulgate approach, the workflow engine is deployed on a computer B. Third-party Data Transfers that is also connected to the proxies and Web services via a network switch. This is a proper tentative setup to test the This paper focuses primarily on optimizing service supposition of communication tie equality but does not oriented data transmissions and workflows, where services essentially imitate frequent deployed patterns of Web are: not equipped to handle third-party transfers, owned and services; in general the workflow engine is remote. maintained by different organizations, and cannot be altered in anyway prior to enactment. In a LAN environment we make the assumption that the cost of communication is relatively uniform, therefore the Directed Acyclic Graph Manager (DAGMan) [10] cost of WFE→S, WFE→P, P→S and P→P can be submits jobs represented as a DAG to a Condor pool of considered approximately equal. The Promulgate resources. DAGMan removes the workflow bottleneck as architecture introduces extra communication links (between data are transferred straight among vertices in a DAG P→S) across this uniform network topology, which in turn however focuses solely on Condor bases Grid jobs and does degrades the execution time of a workflow when compared not tackle the bottleneck problems related with orchestrating to standard orchestration. service-oriented workflows. Triana[11] is an open-source problem solving VI. RELATED WORK environment. It is designed to define process, analyze, This Section discusses all related work from the manage, execute and monitor workflows. Triana can literature, spanning pure choreography languages, distribute sections of a workflow to remote machines enhancements to widely used modeling techniques, i.e., through a connected peer-to-peer network. BPMN, decentralized orchestration, data flow optimization OGSA-DAI [12] is a middleware product that supports the architectures and Grid toolkits. exposure of data resources on to Grids. This middleware facilitates data streaming between home OGSA-DAI 545 All Rights Reserved © 2012 IJARCET
  • 5. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology Volume 1, Issue 4, June 2012 instances. Our Promulgate model could be implemented on [7] W. Binder, I. Constantinescu, and B. Faltings. Decentralized this stand to take advantages of its streaming model. Ochestration of Composite Web Services. In Proccedings of the International Conference on Web Services, ICWS’06, pages 869–876. Grid Services Flow Language (GSFL) [13] addresses IEEE Computer Society, 2006. some of the issues discussed in this paper in the context of [8] D. Martin, D. Wutke, and F. Leymann. A Novel Approach to Grid services; in particular services adopt a peer-to peer data Decentralized Workflow Enactment. EDOC ’08. 12th International IEEE Conference on Enterprise Distributed Object Computing, Pages flow model. However, individual services have to be altered 127–136, 2008. prior to enactment, which is an invasive and custom [9] D. Chiu and G. Agrawal. Hierarchical caches for grid workflows. In solution, something that is avoided in the Promulgate CCGRID ’09: Proceedings of the 2009 9th IEEE/ACM International architecture. Symposium on Cluster Computing and the Grid, pages 228–235, Washington, DC, USA, 2009. IEEE Computer Society. [10] Condor Team. www.cs.wisc.edu/condor/dagman [07/06/10]. VII. CONCLUSSIONS [11] I. Taylor, M. Shields, I. Wang, and R. Philp. Distributed P2P When the services and size of the workflow increases, the Computing within Triana: A Galaxy Visualization Test Case. In 17th SOA orchestration reaches the scalability limits and same International Parallel and Distributed Processing Symposium (IPDPS 2003), pages 16–27. IEEE Computer Society, 2003. effected on the data transmission between services, a [12] K. Karasavvas, M. Antonioletti, M. Atkinson, N. C. Hong, T. Sugden, standard orchestration desires to transport all the data A. Hume, M. Jackson, A. Krause, and C. Palansuriya. Introduction to through a workflow engine when communicate on the web OGSA-DAI Services. In LNCS, volume 3458, pages 1–12, 2005 service without any third party data transfer, which results [13] S. Krishnan, P. Wagstrom, and G. von Laszewski. GSFL: A redundant data transfer and engine to become a bottleneck to Workflow Framework for Grid Services. Technical report, Argonne execution of a workflow. Decentralized choreography National Argonne National Laboratory, 2002. models, even though optimal in requisites of data transfer are far more composite to build due to message passing between distributed, synchronized process and in practice and rarely deployed. This paper has presented the Promulgate architecture; a centralized orchestration model of control with a peer to- peer choreography model of data transfer. This additional functionality is achieved through the deployment of a dynamic proxy and the zipped SOAP techniques that provides a gateway and standard API to Web service invocation. Prominently, proxies can be installed without unsettling current services and with least changes in the workflows that make use of them. This litheness allows a regular change of infrastructures, where one could concentrate first on improving data transfers between services that handle large amounts data. Future work includes the following challenges: Data transformation: Shimming is the process of changing the frequent workflow task to the output data from one service into a slightly diverse layout to use as input into another service. This will affect the performance of a workflow further as it introduces an extra service into the workflow chain. Our future work includes developing a shim loader component, where custom shims can be uploaded to the proxy, allowing shims to be performed locally at a proxy, avoiding the introduction of further network hops. REFERENCES [1] An Overview of Service-Oriented Architecture, Web Service and Grid Computing by Latha Srinivasan and Jem Treadwll HP Software Global Business Unit (Nov, 2005). [2] Software Architecture in Practice, Second Edition by Len Bass, Paul Clemgents, Rick Kazman. [3] Service Oriented Architecture: Concepts,, Technology, and Design by Thomas Erl [4] Apache Axis. http://ws.apache.org/axis [24/02/11]. [5] SOAPCompression, http://wiki.developerforce.com/page/SOAP_Compression [6] D. Liu, K. H. Law, and G. Wiederhold. Data-flow Distribution in FICAS Service Composition Infrastructure. In Proceedings of the 15th International Conference on Parallel and Distributed Computing Systems, 2002. 546 All Rights Reserved © 2012 IJARCET