A Model-based Approach to Service-Oriented Computing


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News A Model-based Approach to Service-Oriented Computing
# 1  
Old 10-30-2008
A Model-based Approach to Service-Oriented Computing

HPL-2008-174 A Model-based Approach to Service-Oriented Computing - Pruyne, Jim; Singhal, Sharad
Keyword(s): Web Services, Middleware, Service Oriented Computing, Model-Driven Architecture
Abstract: Web Services are the current best practice for developing distributed software and integrating disparate components across the Internet or within an enterprise. In this approach, services are characterized by their interface-what they can do, and their location-how they are accessed. We augment thes ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Computing difference based on line contents

I have the following awk script set up to copy the contents of a line that contains 0008 in each line that contains values of 1895 through 2012. awk -v OFS=" " '{val=0+substr($1,length($1)-3,4);if(val==0008){print;$1=x;y=$0}else{if(val>=1895&&val<=2012){print $1 y}else{print}}}' Output... (7 Replies)
Discussion started by: ncwxpanther
7 Replies

2. News, Links, Events and Announcements

ARM Based Community oriented to Job

Hi everybody, I write this small news in order to inform you an ARM network has been created around job opportunities and Vocational TRaining for student. This open group is coming together design, hardware software domains on ARM RISC Architecture. With more than 1,500 users from great... (0 Replies)
Discussion started by: ARMBasedGroup
0 Replies
Login or Register to Ask a Question
Catalyst::Helper::Model::Adaptor(3pm)			User Contributed Perl Documentation		     Catalyst::Helper::Model::Adaptor(3pm)

NAME
Catalyst::Helper::Model::Adaptor - helper for the incredibly lazy SYNOPSIS
Running: ./script/myapp_create.pl model SomeClass Adaptor MyApp::Backend::SomeClass create Will create "YourApp::Model::SomeClass" that looks like: package YourApp::Model::SomeClass; use strict; use warnings; use base 'Catalyst::Model::Adaptor'; __PACKAGE__->config( class => 'MyApp::Backend::SomeClass', constructor => 'create', ); 1; Why you need a script to generate that is beyond me, but here it is. ARGUMENTS
./script/myapp_create.pl model <model_name> Adaptor <class> [<constructor>] You need to sepecify the "model_name" (the name of the model), and "class", the class being adapted. If "$class->new" isn't going to do what you want, pass the name of $class's constructor as "constructor". AUTHOR
Jonathan Rockway "<jrockway@cpan.org>" LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself. No copyright claim is asserted over the generated code. perl v5.10.1 2010-02-09 Catalyst::Helper::Model::Adaptor(3pm)