active questions tagged soa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:59:12Zhttp://stackoverflow.com/feeds/tag/soahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1773998/patterns-practices-for-designing-web-services0Patterns/Practices for designing Web Servicesnoob24872009-11-21T00:09:52Z2009-12-15T13:54:11Z
<p>Are there any good patterns/practices used while designing Services. I came across this post today:</p>
<p><a href="http://stackoverflow.com/questions/1549743/when-to-use-the-decorator-pattern/1549771#1549771">http://stackoverflow.com/questions/1549743/when-to-use-the-decorator-pattern/1549771#1549771</a></p>
<p>Though I didn't completely understand but it really gives a new direction to think about designing services.</p>
<p>Note: This question is not any technology specific.</p>
http://stackoverflow.com/questions/936400/if-soa-is-dead-whats-replacing-it3If SOA is dead, what's replacing it?Brad Mellen-Crandell2009-06-01T19:41:09Z2009-12-12T11:11:56Z
<p>Please forgive me if this question is dense.</p>
<p><em>Background:</em> We have several internal applications that integrate at the database. We are looking at how to break that up, and it seems like moving to an architecture where each application exposes its functionality through services, instead of calling other apps' databases, makes the most sense. This seems like a service-oriented architecture to me.
As I look around for info on getting started with a service-oriented architecture, I see a lot of talk around this article: <a href="http://apsblog.burtongroup.com/2009/01/soa-is-dead-long-live-services.html" rel="nofollow">SOA Is Dead; Long Live Services</a>. And I also see this from Martin Fowler & Jim Webber: <a href="http://www.infoq.com/presentations/soa-without-esb" rel="nofollow">Does My Bus Look Big In This?</a>.</p>
<p><em>Question:</em> </p>
<ul>
<li>Is SOA dead, or just the buzz around it?</li>
<li>What is the best way to start on a service-oriented architecture so that it can stay as thin and simple as possible?</li>
</ul>
http://stackoverflow.com/questions/1841243/is-this-a-known-pattern2Is this a known pattern?zoman2009-12-03T16:48:32Z2009-12-12T09:21:45Z
<p>I am trying to separate behaviour from data completely in my classes and came up with this simple solution:</p>
<pre><code>class ClassAData
{
public int Property1;
public string Property2;
public bool Property3;
}
class ClassA : SomeInterface
{
public ClassAData Data;
//behaviour
public int CalculateSomething(int value)
{
...
return result;
}
public string SomeOtherMethod(){...}
}
</code></pre>
<p>(proper encapsulation would of course be applied...)</p>
<p>I was wondering if this is known by something or used in a common pattern? Also what are the shortcomings if there are any?</p>
<p><strong>Edit:</strong>
Perhaps I should have been clearer about where I intend to use this. I do not advocate using this for every class in every situation. I plan to use this in a service-oriented application where ClassA is the actual domain object and ClassAData would be a DTO that is transferred between the service and presentation layers. This approach avoids a fair bit of code duplication especially if there are many classes with lots of properties.</p>
http://stackoverflow.com/questions/1062754/mule-aggregator-streaming-aggregation0Mule Aggregator - Streaming Aggregationpjp2009-06-30T09:43:37Z2009-12-11T16:49:44Z
<p>The collection aggregator used in the Mule 2.0 framework works a bit like this:</p>
<ul>
<li><p>An inbound router takes a collection of messages and splits it up into a number of smaller messages - each smaller message get stamped with a correlation id corresponding to the parent message</p></li>
<li><p>These messages flow through various services</p></li>
<li><p>Finally these messages arrive at an inbound aggregator that collects up the messages based on the correlation id of the parent message and the number of expected messages. Once all of the expected messages have been received then the aggregation function is called and the result is returned.</p></li>
</ul>
<p>Now this works fine when the number of messages in a group is reasonably small. However once the number of messages in a group becomes huge ~100k then a lot of memory is tied up holding onto the group of messages waiting for the later messages to arrive. This is made worse if there are multiple groups being aggregated at the same time.</p>
<p>A way around this issue would be to implement a streaming aggregator. In my use case I am essentially summing up the various messages based on a key and this could be done without having to see all of the messages in the group at the same time. I'd only want to know that all of the messages had been received before forwarding the result onto the endpoint.</p>
<p>Does this sound like a reasonable solution to the problem? </p>
<p>Is this already implemented somewhere in Mule? </p>
<p>Are there better ways of doing this? </p>
http://stackoverflow.com/questions/1887194/wpf-as-part-of-a-service-oriented-architecture0WPF as part of a service oriented architectureAJM2009-12-11T10:31:44Z2009-12-11T10:31:44Z
<p>I'm looking into doing a WPF application. I want as much as possible of the business logic to be exposed as WCF services.</p>
<p>Has anyone got any experience of doing this / useful links etc</p>
http://stackoverflow.com/questions/1883639/wpf-thick-client-or-thin-client-and-what-about-when-wcf-comes-in-to-play-with-s0wpf - thick client or thin client and what about when wcf comes in to play with SOA!AJM2009-12-10T20:07:58Z2009-12-10T21:00:04Z
<p>I usually work on web apps or faceless apps with the occasional winforms utility so I'm in need of some help to clarify my understanding of WPF and terminology.</p>
<p>I would term ASP.NET apps as "thin client" apps because apart from some javascript the bulk of the applications work is done on the server. In the same way I would view a WPF app (apart from a stand alone XAML app) as "thick client" as all the business logic is executed on the client machine. <strong>So my first question is whether this a correct understanding of ASP.NET and WPF's places in the world?</strong> </p>
<p>My second question is. Say you wanted to centralise things into a service oriented architecture via WCF webservices so that ASP.NET OR WPF could access common functionality via web services that live on a server somewhere else. <strong>Could you start viewing WPF as a thin client in that soley provides the (rich UI) to interact with business logic encapsualted on webservices on another server?</strong></p>
http://stackoverflow.com/questions/1864216/soa-architecture-real-world-samples-with-net0SOA Architecture Real-World Samples with .NETYoann. B2009-12-08T02:26:08Z2009-12-09T17:15:28Z
<p>Hi,</p>
<p>Any SOA Architecture (n-tier) Real-World Samples with .NET for getting started ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1855388/what-do-we-mean-by-variability-in-web-services1What do we mean by 'Variability in Web Services'?Alex Xander2009-12-06T13:27:18Z2009-12-07T05:20:29Z
<p>In the era of <strong>SOA</strong> and <strong>Cloud Computing</strong>, we often hear the term "Variability in Web Services". I think it means how an implemented web service can be modified to the new requirements of user or geography. </p>
<p>Still what would be a good definition of this?</p>
http://stackoverflow.com/questions/1828793/what-data-service-is-where0What data/service is where?MrTelly2009-12-01T20:45:06Z2009-12-06T13:34:10Z
<p>What management tools (open source or otherwise) are there to track the location of data, the services that deliver/use that data and the services themselves. If you believe the snake oil a combination of DB, ESB and SOA will deliver anything anywhere, but how do you know what's where. BTW I'm not interested at the WSDL level, I'm thinking of a tool that the users/BA community would populate and use.</p>
<p>A combination of SOA and Database is now the bedrock of most applications, however what used to be called Data Dictionaries, and would now be Service Catalogues? or MetaData repositories still seem to live in purely DataCentric world.</p>
http://stackoverflow.com/questions/1304377/sugar-crm-soap-getentrylist0Sugar CRM SOAP get_entry_listJasim2009-08-20T06:48:22Z2009-12-04T13:00:03Z
<p>I have sugarcrm instance and want to fetch some data from it using a raw php</p>
<p>I am using nusoap client. I am able fetch the data but want to select data of particular id only. what i am doing is</p>
<pre><code>$response = $client->call('get_entry_list',array('session'=>$session_id , 'module_name'=>'itf_Apartments', 'where'=>'itf_Apartments.id=2', 'order_by'=>'','offset'=>'','select_fields'=>array('name')));
</code></pre>
<p>but iam not getting any results. is ther any problem with my code???</p>
http://stackoverflow.com/questions/1570702/what-does-crosscutting-requirements-concerns-mean-in-programming4What does Crosscutting Requirements/Concerns mean in Programming?Ankit2009-10-15T07:06:00Z2009-12-03T16:21:32Z
<p>These I come across this term a lot "crosscutting requirements/concerns" in programming world.</p>
<p>Although I think I have an idea what it means still I do not have a clear idea. I hear it a lot in web service and SOA in general.</p>
<p>Can this be explained using a <strong>hello world</strong> example?</p>
http://stackoverflow.com/questions/1818031/request-on-soa-soapui-saas-and-web-services-1Request on Soa, SoapUI, SaaS and Web servicesrajesh55752009-11-30T05:50:03Z2009-12-02T09:42:49Z
<p>Hi all,</p>
<p>I recently moved south to Bangalore and I am working for a large software integrator mainly testing. My project team is working on web service project. We plan to use an open source software like soapUI now. Are you able to point me to online and offline resources/trainings that can help me and friends get up to speed with this technology.</p>
<p>All the help group members can provide in this regard is much appreciated.</p>
<p>Thanks,
Rajesh Ahuja</p>
http://stackoverflow.com/questions/1047161/contract-first-soa-with-wcf3Contract-First SOA with WCFjrista2009-06-26T03:25:52Z2009-12-02T04:42:27Z
<p>Hello StackOverflow gurus! This question is more of a probe to discover what people are doing in the community, in practical situations, than a specifically targeted question. I have searched pretty broadly about this, and while I have found a lot of bloggers advocating contract-first service design and some comments backing them up, I have yet to find much practical information about implementing contract-first with WCF, the pros and cons of doing so in a real-world environment, etc. I have recently done some extensive research into SOA, primarily through Thomas Erl's books, and one of the primary concepts he advocates is contract-first design.</p>
<p>My question, or rather questions, are as follows:</p>
<ol>
<li>How do you approach contract-first service design with .NET and WCF?</li>
<li>Are there other tools besides svcutil that can generate both client and service from contract? (Anything that integrates with VS would be ideal)</li>
<li>What real-world pros have you encountered with contract-first design and wCF?</li>
<li>What real-world cons have you encountered with contract-first design and WCF?</li>
</ol>
<p>One of the major problems with contract-first development seems to be tooling. Svcutil is the only thing I have found that can generate service code from a contract, and it has some pretty poor output. Its single-file, chock full of attributes and code-generation artifacts, and it basically needs to be regenerated and replaced any time the contract is updated. I would prefer a better approach, preferably something that doesn't require regen-replace. I'm fine with manually creating the service-side contract even, assuming it is practical in a real-world scenario.</p>
<p>I appreciate any insight and advice!</p>
<p>EDIT:</p>
<p>Thanks everyone for your input! While WCSF solved my immediate needs, learning about <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">Protocol Buffers</a> and <a href="http://msdn.microsoft.com/en-us/library/cc487895.aspx" rel="nofollow">Service Factory</a> are both intriguing tools that I am sure will help me in the future.</p>
http://stackoverflow.com/questions/1825608/is-msmq-obsolete2Is MSMQ obsolete?mattRo552009-12-01T11:35:33Z2009-12-01T11:47:31Z
<p>I've just been chatting with a Microsoft MVP, and he told me that MSMQ is obsolete. Is this true? What's the infrastructure for SOA then???</p>
http://stackoverflow.com/questions/1819306/openesb-how-can-i-deploy-an-externally-created-bpel-process0OpenESB: (How) Can I deploy an externally-created BPEL process?java.is.for.desktop2009-11-30T11:37:58Z2009-11-30T21:59:47Z
<p>Hello, everyone!</p>
<p>I have downloaded the <strong>OpenESB-Netbeans</strong> bundle.
It can be used to create and deploy (run) <strong>BPEL</strong> processes.</p>
<p>But what I need is to be able to deploy an <strong>externally</strong>-created BPEL process.</p>
<p>My external process comes from <strong>Enterprise Architect</strong> and consists just of two files <code>.bpel</code> and <code>.wsdl</code>.</p>
<p><strong>EDIT</strong>:<br>
<strong>Enterprise Architect</strong> sadly only creates BPEL 1.x files, which are not supported by Netbeans' BPEL editor.</p>
http://stackoverflow.com/questions/1242412/how-to-balance-dry-principle-with-minimizing-dependencies4How to balance DRY principle with minimizing dependencies?duffymo2009-08-07T01:19:40Z2009-11-24T18:50:44Z
<p>I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines.</p>
<p>Rules engines in large IT organizations tend to be Enterprise (note the capital "E" - that's serious business). All rules must be expressed once, nice and DRY, and centralized in an expensive rules engine. A group maintains the rules engine and are the keepers of the rules sets.</p>
<p>When that IT organization is part of an American insurance company, there tend to be lots of rules. There are rules that apply to all states and products, but each state tends to evolve its own laws for different products, so the rules need to reflect these quirks. The categories are many: actuarial, underwriting, even for ordering credit and motor vehicle reports from 3rd party bureaus. </p>
<p>The problem that I have from a design standpoint is that centralizing rules and processing is certainly nice and DRY, but there are costs: </p>
<ol>
<li>Additional network hops to access the centrally located rules service and return results; </li>
<li>Additional complexity if the rules engine is exposed as a SOAP web service - consumers have to package up SOAP requests and OXM the response back to their own domain;</li>
<li>Additional interfaces between the enterprise group that maintains the rules engine, the business that sets and maintains the rules, and the developers that consume them;</li>
<li>Additional complexity - sometimes a data-driven solution might be enough.</li>
<li>Additional dependencies - components who don't have control of their own rules have to worry about external dependencies on the rules engine for testing, deployment, releases, etc.</li>
</ol>
<p>These problems crop up with lots of other Enterprise technologies (e.g., B2B gateways, ESBs, etc.)</p>
<p>The same Enterprise groups also tout SOA as a foundational principle. But my understanding of proper service design is that they should tile the business space and be idempotent, independent, and isolated. How can a service be independent and isolated if its rules are maintained somewhere else?</p>
<p>I'd like to err on the side of simplicity, arguing that eliminating dependencies should take precedence over centralization if the rules can be shown to apply only in isolated circumstances. I'm not sure the argument will win the day.</p>
<p>So my questions are:</p>
<ol>
<li>Where do you fall on the centralization versus independence argument? </li>
<li>What's your experience with Enterprise tools like rules engines? </li>
<li>How can I make the argument for isolation stronger?</li>
<li>If my view is incorrect, what argument would you make in favor of centralization? </li>
</ol>
http://stackoverflow.com/questions/103448/free-open-source-service-soa-management-and-monitoring-tools2Free/open source service (SOA) management and monitoring toolsmmh2008-09-19T16:26:23Z2009-11-24T18:46:26Z
<p>Hi,</p>
<p>I was looking for Free/open source service (SOA) management and monitoring tools. What tools have you used and is there any tool that you recommend?</p>
<p>Thanks
Manju</p>
http://stackoverflow.com/questions/1773086/soa-with-wcf-responsibilities-and-dependencies0SOA with WCF responsibilities and dependenciesblu2009-11-20T20:34:16Z2009-11-23T14:29:42Z
<p>I am moving onto a new team that has implemented a solution using SOA with WCF. The services are all very vertical, for example: a CustomerService, an AddressService, an AccountService, etc. To return the fully populated objects the services may call another service over a wcf endpoint. </p>
<p>There are a few very high level vertical areas, but underneath they can reuse a lot of the core service logic.</p>
<p>How valid is the following? </p>
<p>The webservices are thin layers that handle remote calls; they are strictly for communication. The real functionality would be implemented in something lets call, "business or domain services".</p>
<p>Domain Service responsibilities:</p>
<ul>
<li>Reference data access / repository interfaces for working with the infrastructure</li>
<li>Call multiple repository methods to create fully populated objects</li>
<li>Process data against the complex business rules</li>
<li>Call other domain services (not having to call WCF) </li>
</ul>
<p>This would give us domain services that can be tested outside of specific WCF and SQL Server implementations.</p>
<p>The web services reusing the different business services seems to be the biggest gain and yet the biggest potential pitfall. </p>
<ul>
<li>On one hand the logic can be reused for multiple services, eliminating web service calling web service calling web service. </li>
<li>On the other hand, if someone changes one of the assemblies multiple services need to be updated, potentially breaking multiple applications.</li>
</ul>
<p>Have people tried this and had success? Are there better approaches?</p>
http://stackoverflow.com/questions/1774293/fast-concurrent-checking-of-soa-dns-records-for-co-za-domains0Fast concurrent checking of SOA DNS records for .co.za domainsFreshCode2009-11-21T02:18:44Z2009-11-23T08:23:04Z
<p>I want to implement <strong>bulk availability checking</strong> of <strong>.co.za</strong> domain names as accurately as possible by checking for the existence of <strong>SOA</strong> or <strong>MX records</strong> using C# ASP.NET.</p>
<p>I am looking for a solution that can check for the relevant DNS records in a way that properly utilises threading to check at least 10 domains at a time.</p>
<h2><strong>"Why don't you just use an API?"</strong></h2>
<p>The only truly accurate way of checking the availibility of a .co.za domain is to use <a href="http://co.za/whois.shtml" rel="nofollow">http://co.za/whois.shtml</a>, but the archaic WHOIS service does not allow bulk checking and limits consecutive checks for a given IP.</p>
<h2>Previous Work</h2>
<p>To date, I have gotten <em>fairly</em> accurate results by using my ancient classic ASP script utilising an old DNS library called "Simple DNS Resolver" by Emmanuel Kartmann. However, this approach <strong>does not scale well</strong> and I need to be able to handle more users with a properly threaded ASP.NET implementation.</p>
<p>The naughty code I'm using right now looks something like this:</p>
<pre><code>Dim oDNS, pDomain, found_names
Set oDNS = CreateObject("Emmanuel.SimpleDNSClient.1")
oDNS.ServerAddresses = "127.0.0.1" // Set DNS server to use
oDNS.Separator = "," // Set separator for found_names multiple outputs
</code></pre>
<p>Execute the following for each domain:</p>
<pre><code>Err.Clear // Reset error flag. I know, I hate it too.
oDNS.Resolve pDomain, found_names, "C_IN", "T_SOA" // Look for SOA records for domain
If Err <> 0 Then // No SOA records could be found.
Err.Clear // Reset error flag
oDNS.GetEmailServers pDomain, found_names // Look for MX records
If Err <> 0 Then // No MX records found either
AssumeDomainIsAvailable(pDomain);
Else // Found some MX records
DomainUnavailable(pDomain);
End If
Else // Found some SOA records
DomainUnavailable(pDomain);
End If
</code></pre>
<p>Any recommendation for improving detection is appreciated. This is my first question on SO, so forgive my verbosity and thanks for your precious time.</p>
http://stackoverflow.com/questions/102417/best-esb-and-soa-registry-out-there5Best ESB and SOA registry out theremagellings2008-09-19T14:45:54Z2009-11-19T13:58:25Z
<p>Our company is looking to implement an ESB into our SOA. Our SOA is in initial development stages. We currently have F5/BigIP in place with sufficient health checking, load balancing, redundancy, etc. and use WCF as our service technology with occasional Java clients, but majority .NET WCF clients.</p>
<p>From a financial and beginning implementation perspective, have been looking into a few open source options, Mule Galaxy and WSO2. Also have been looking a bit at MS Biztalk 2006 and UDDI. UDDI seems to be a bit of a legacy registry standard.</p>
<p>Have also been debating whether to roll our own ESB in the form of a routing service since are just starting, with option of migrating to larger scale ESB later.</p>
<p>Any opinions out there on good/bad ESB and SOA registry choices? As well as if we are taking the right approach on implementing an ESB and SOA registry (governance) in intial phase of our SOA. Thanks</p>
http://stackoverflow.com/questions/1755096/sharing-components-in-net-platform0Sharing components in .NET platformtucaz2009-11-18T10:35:13Z2009-11-18T10:41:44Z
<p>Hi!</p>
<p>I have an e-commerce website that is already up and running for some time. It's built on .NET 3.5. So far, so good.</p>
<p>The "problem" is that now I need to start sharing functionality (products list, order mechanics, customer information, etc) from this project with new projects and external vendors. Since I know the thing is gonna be big I think the best solution is to create a "platform" based on a service layer pretty much like SalesForce.com where I can offer all functionality from my base e-commerce app to anyone who wants it.</p>
<p>My question is:</p>
<p>1) for organizational purposes I would like to be able to create a new VSS Solution that would consume the business DLL that I already have from e-commece app. But, if I create a new VSS Solution to keep it separated I will need to reference the compiled DLL from the e-commece app and update this reference all the time due to e-commerce changes. What do you think? Is the best way to go? Or is the best way to keep using the same solution and put everything together so I can create a reference directly to the project instead of the DLL?</p>
<p>2) if I choose to keep the same VSS Solution, what if I need to create a service that exposes functionality from other systems? Should I create the new service in the same solution that the component I want to expose is located?</p>
<p>My problems are pretty much related to organization of projects. We have several projects and they are following the same development standards, so my initial idea was create a new VSS Solution to center all of the functionality of this new platform just in one place, but if I do that it seems that DLL management will be hard to do.</p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1747102/methods-for-modeling-systems-integration0Methods for modeling systems integrationmichael lucas2009-11-17T07:07:26Z2009-11-18T04:55:30Z
<p>When it comes to systems integration how do you model integration requirements? Do you use UML or BPMN or some other techniques? </p>
<p>What limitiations you see in existing approaches and what would be an ideal modeling approach to system integration requirements in your opinion?</p>
http://stackoverflow.com/questions/266172/which-web-service-specifications-ws-actually-make-sense-to-implement1Which web service specifications (WS-*) actually make sense to implement?Kaiser Advisor2008-11-05T18:38:56Z2009-11-17T16:22:37Z
<p>Hi,</p>
<p>I'm implementing an SOA at a large company, and I'm not sure which web service specifications (WS-*) actually make sense to implement. At a minimum, I'm looking at WS-Addressing, WS-Security, WS-Eventing, and WS-ReliableMessaging. However, there are <a href="http://www-128.ibm.com/developerworks/webservices/standards/" rel="nofollow">several other standards</a> that look interesting, but I don't know which ones are widely adapted. I don't want to implement a standard (and force all the developers to follow them) if they're not mature or necessary.</p>
<p>EDIT:</p>
<p>I'm asking this question not about a specific situation, but in general. There are quite a few WS-* standards that don't seem to have a lot of practical use (at least to me), so I'm really curious about which ones are widely used.</p>
<p>Thanks for your help!</p>
<p>KA</p>
http://stackoverflow.com/questions/343150/can-mvc-or-mvp-co-exist-with-soa3Can MVC (or MVP) co-exist with SOA?Andrew Robertson2008-12-05T07:49:31Z2009-11-17T10:52:34Z
<p>I think that business logic should exist in a model when using an MVC or MVP design pattern, but should be hidden behind a service in a service-oriented architecture.</p>
<p>Can a software system use the MVC or MVP design pattern within a service-oriented architecture? If so, where does the model sit?</p>
http://stackoverflow.com/questions/1735213/wcf-based-winforms-app-in-standalone-mode1WCF based WinForms app in standalone modeAli Kazmi2009-11-14T18:59:44Z2009-11-14T19:21:06Z
<p>Hi,</p>
<p>I have a windows application that has its business logic layer implemented as a WCF service. This service is currently hosted on IIS. I wanted to know that if there's a way where I could optionally run the application in standalone mode when a service isn't available/feasible.</p>
http://stackoverflow.com/questions/1716124/cross-cutting-concerns-in-soa-architecture0Cross-Cutting Concerns in SOA architecturetobias2009-11-11T15:56:35Z2009-11-11T19:48:27Z
<p>i have several classes in my service layer.</p>
<p>i want to before call methods of these(every class),call they method of a spesific class after the spesific class call them.how is that possible in c#?</p>
<p>example at ASP.NET MVC :</p>
<p>CONTROLLER CLASESES -> A SPESIFIC CLASS -> SERVICE CLASSES</p>
<p>because i need to central logging,exception handling,checking user role and permissions.....</p>
http://stackoverflow.com/questions/135832/application-specific-metadata-in-soap-header1Application specific metadata in SOAP headermmh2008-09-25T20:29:23Z2009-11-08T13:39:23Z
<p>Do you think its a good idea to put our application specific metadata in the SOAP header?</p>
<p>E.g. In our organization, we want to track each message as it passes through various services, I want to track service path (just like TCP) to know which all services processed the message etc. For all this, currently we are defining our own message format (that has header and body) over SOAP message.</p>
<p>I want to get your opinion on whether this is a good idea or should I put my application metadata in the SOAP header itself.</p>
<p>Thanks
Manju</p>
http://stackoverflow.com/questions/1692359/enterprise-ci-soa-net1Enterprise CI (SOA / .Net)AndreasKnudsen2009-11-07T07:52:32Z2009-11-07T14:11:59Z
<p>How should I tackle Continuous integration for a SOA platform?</p>
<p>Let me explain the setup. We have 30 web service solutions and 5 client solutions, the web services are quite dependent on each other (references contract dlls) and also share some common utility dlls. </p>
<p>Until now we have been happy with CruiseControl.net (37 CC projects, 5 clients, 30 WS, 1 utility project, 1 integration test project) all building and testing independent of each other. Before each deploy we trigger the builds for all projects in a well-defined order which gives us ready deploy-artifacts to deploy to some 7 different servers.</p>
<p>Until now we haven't had any versioning of services, and each deploy would deploy the complete shebang.</p>
<p>We recently went into production and now we need to branch out the code, so that any further development does not mess up our ability to hotfix what is in production now.</p>
<p>Also we want to split up our efforts, spawning separate development efforts creating new clients or adding major functionality into existing clients/services, what I'm thinking is that we need the following</p>
<p>
<li> 1 CI server "frozen in time" on a stable branch (what is in production at any given time) </li>
<li> 1 CI server for regular development on minor issues / touchups on production (the trunk, release cycle = 1 month) </li>
<li> 1 CI server per development effort (release cycle = 3-6 months)</li>
</p>
<p>that way we can always hotfix prod with very little effort, we will continue to improve prod based on user feedback on a monthly basis, and we can launch new major efforts on our SOA stack without interfering with the first two (until we merge the code that is :) )</p>
<p>The question is: what tools should we use for CI?
options as I see them:</p>
<ol>
<li> duplicate projects within our ccnet instance </li>
<li> duplicate ccnet: xcopy CCnet to X locations on build machine, setup new services on different ports, tweak svn source, build location and deploy artifact location </li>
<li> use a different CI server more suited to these problems </li>
</ol>
<p>1: I don't like it (unwieldy, when is it green, all teams use same pool)</p>
<p>2: I could see us doing this, but it feels a bit clunky</p>
<p>3: Which server should we use? So far I've heard the names Hudson and Cruise, would these be applicable?</p>
<p>4: Have I thought completely wrong? How do you other guys do CI on a SOA stack that is meant to support many teams' development efforts? </p>
http://stackoverflow.com/questions/1684055/android-are-services-shared-among-processes0Android - Are services shared among processes?Declan Shanaghy2009-11-05T22:21:52Z2009-11-06T18:44:30Z
<p>I have an android library which is distributed as a jar file for inclusion in 3rd party applications. </p>
<p>Within the jar file is an Android Service.
The service is exposed through a facade class in the jar file.
Hence 3rd parties do not directly bind to the service, they just use the facade class.</p>
<p>I have 2 questions about this architecture:</p>
<p>1)
If two completely separate 3rd party applications use this facade (different package names, different user ids etc..) class are two instances of the service created or is a single instance shared?</p>
<p>2)
Does it make a difference if the service is bound directly to the 3rd party apps rather than accessed thru a facade?</p>
<p>P.S.
<a href="http://developer.android.com/reference/android/app/Service.html" rel="nofollow">http://developer.android.com/reference/android/app/Service.html</a>
Does not answer these questions.</p>
http://stackoverflow.com/questions/1683959/consume-a-wcf-service-from-a-console-app-as-part-of-a-sql-job0Consume a WCF service from a console app as part of a SQL job?Darth Continent2009-11-05T22:04:48Z2009-11-05T22:31:25Z
<p>I'm working with one WCF service which will be consuming records I queue up for it with another. Service A will package up an object containing a series of records (I guess an XML document, haven't nailed down the format yet) queried from a database, and submit it to Service B for processing.</p>
<p>Service B is on a separate department's system and is out of my control, so I'm using my service to package the data to conform to B's inputs.</p>
<p>I'm thinking of instantiating my service via a client in a console app, which would be called as part of a SQL job on MS SQL 2005.</p>
<p>Could someone please suggest alternatives and any better ideas?</p>