active questions tagged services - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:19:34Z http://stackoverflow.com/feeds/tag/services http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1906357/windows-server-dependencies 1 Windows server dependencies viswanathan 2009-12-15T10:02:48Z 2009-12-15T10:18:44Z <p>Hi</p> <p>I have an application which has 3 services which are dependent on SQL server.</p> <p>The database used by my application is present in another machine(different from machine where i have the 3 services).</p> <p>These 3 services are dependent services for SQLserver.</p> <p>I have established an ODBC Connection with my DB in remote machine and my services are running fine.</p> <p>Now i terminate or stop the SQLserver in the machine where my services are running. Since my services are dependent services windows will stop my services also.</p> <p>Question1: Is it possible for me to remove the dependency from services.msc for my services from properties of sqlserver.</p> <p>Question2: Suppose i remove the dependency for my services and that i killed sqlserver exe will my services continue to work with the DB which is in a remote machine.</p> <p>Thanks</p> http://stackoverflow.com/questions/1897777/storing-passwords-for-external-apis-best-practice 4 Storing Passwords for External APIs - Best Practice viatropos 2009-12-13T21:17:00Z 2009-12-14T14:56:24Z <p>If I built an application that accessed some of the data from say Gmail, Twitter and Facebook, and I want the user to be able to only have to enter their authentication info once, and it's reset after some days or weeks, what is the best way to do this, dynamically, in Ruby?</p> <p>I see a lot of people just having a config file of their clients'/users' credentials like so:</p> <p><pre><code> <code>gmail_account: username: myClient password: myClientsPassword</code> </code></pre></p> <p>This seems a) like it's very insecure, and b) it wouldn't work if I wanted to store this kind of information for thousands of users. What is the recommended way to do this?</p> <p>I would like to be able to build an interface on top of these services, so having to enter credentials every time the user made a transaction isn't feasible.</p> http://stackoverflow.com/questions/387514/windows-event-scheduler-custom-service 2 Windows event scheduler custom service Abdullah Jibaly 2008-12-22T22:07:58Z 2009-12-14T00:52:46Z <p>I need to create a Windows service that works just like the task scheduler in that I can configure what time it runs and it basically just calls a .NET class at that scheduled time (recurring). What is the recommended way to do this? Also, any information on installing/removing that service would be appreciated!</p> <p>Update: Using the task scheduler in not an option (customer requirement, something to do with their IT standards). That was my suggestion to them as well, but it's not going to work.</p> <p>Solution: Thanks to everyone for your answers, the Quartz.Net solution especially looks good, however I found the following which has exactly what I need:</p> <p><a href="http://www.c-sharpcorner.com/UploadFile/ajifocus/AppScheduler05262006074807AM/AppScheduler.aspx?ArticleID=b52f76da-943f-4807-9675-869f135ef2cd" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/ajifocus/AppScheduler05262006074807AM/AppScheduler.aspx?ArticleID=b52f76da-943f-4807-9675-869f135ef2cd</a></p> http://stackoverflow.com/questions/1897511/php-connecting-to-mediawiki-api-and-retrieve-data 0 php connecting to MediaWiki API and retrieve data Gal 2009-12-13T19:45:20Z 2009-12-13T20:28:37Z <p>Hi guys, I noticed there was a question somewhat similar to mine, only with c#:<a href="http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api">link text</a>. Let me explain: I'm very new to the whole web-services implementation and so i'm experiencing some difficulty understanding (especially due to the vague mediawiki api manual).</p> <p>I want to retrieve the <em>entire page as a string</em> in PHP (xml file) and then process it in PHP (i'm pretty sure there are other more sophisticated ways to parse xml files but w/e): <a href="http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;rvprop=content&amp;format=xml&amp;redirects&amp;titles=Main%20Page" rel="nofollow">Main Page wikipedia</a>.</p> <p>I tried doing <code>$fp = fopen($url,'r');</code> it outputs: <code>HTTP request failed! HTTP/1.0 400 Bad Request</code>. the api does not require a key to connect to it.</p> <p>Can you describe in detail how to connect to the API and get the page as a string?</p> <p>Thank you.</p> <p><strong>EDIT:</strong> the url is this: <code>$url='<a href="http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;rvprop=content&amp;format=xml&amp;redirects&amp;titles=Main" rel="nofollow">http://en.wikipedia.org/w/api.php?action=query&amp;prop=revisions&amp;rvprop=content&amp;format=xml&amp;redirects&amp;titles=Main</a> Page';</code> I simply want to read the entire content of the file into a string to use it.</p> http://stackoverflow.com/questions/812685/end-to-end-testing-of-webservices 0 End to End testing of Webservices sasuke 2009-05-01T18:46:39Z 2009-12-13T19:00:08Z <p>Hi all, first time poster and TDD adopter. :-) I'll be a bit verbose so please bear with me.</p> <p>I've recently started developing SOAP based web services using the Apache CXF framework, Spring and Commons Chain for implementing business flow. The problem I'm facing here is with testing the web services -- testing as in Unit testing and functional testing.</p> <p>My first attempt at Unit testing was a complete failure. To keep the unit tests flexible, I used a Spring XML file to keep my test data in. Also, instead of creating instances of "components" to be tested, I retrieved them from my Spring Application context. The XML files which harbored data quickly got out of hand; creating object graphs in XML turned out to be a nightmare. Since the "components" to be tested were picked from the Spring Application Context, each test run loaded <em>all</em> the components involved in my application, the DAO objects used etc. Also, as opposed to the concept of unit test cases being centralized or concentrated on testing only the component, my unit tests started hitting databases, communicating with mail servers etc. Bad, really bad.</p> <p>I knew what I had done wrong and started to think of ways to rectify it. Following an advice from one of the posts on this board, I looked up Mockito, the Java mocking framework so that I could do away with using real DAO classes and mail servers and just mock the functionality.</p> <p>With unit tests a bit under control, this brings me to my second problem; the dependence on data. The web services which I have been developing have very little logic but heavy reliance on data. As an example, consider one of my components:</p> <pre><code>public class PaymentScheduleRetrievalComponent implements Command { public boolean execute(Context ctx) { Policy policy = (Policy)ctx.get("POLICY"); List&lt;PaymentSchedule&gt; list = billingDAO.getPaymentStatementForPolicy(policy); ctx.put("PAYMENT_SCHEDULE_LIST", list); return false; } } </code></pre> <p>A majority of my components follow the same route -- pick a domain object from the context, hit the DAO [we are using iBatis as the SQL mapper here] and retrieve the result.</p> <p>So, now the questions:<br /> - How are DAO classes tested esp when a single insertion or updation might leave the database in a "unstable" state [in cases where let's say 3 insertions into different tables actually form a single transaction]?<br /> - What is the de-facto standard for functional testing web services which move around a lot of data i.e. mindless insertions/retrievals from the data store? </p> <p>Your personal experiences/comments would be greatly appreciated. Please let me know in case I've missed out some details on my part in explaining the problem at hand.</p> <p>-sasuke</p> http://stackoverflow.com/questions/1896989/wcf-ria-services-silverlight-3-0 0 WCF RIA Services Silverlight 3.0 John 2009-12-13T16:32:31Z 2009-12-13T16:55:35Z <p>Hi, I have downloaded WCF RIA Services Beta from the following website: WCF RIA Services Beta for Visual Studio 2008 SP1</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&amp;displaylang=en#filelist" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&amp;displaylang=en#filelist</a> </p> <p>But I am unable to add a reference to the following assembly : system.Windows.Ria.Data I searched at the downloaded location c:\Program files\Microsoft SDK's\RIA Services but i am unable to find this dll. </p> <p>Would appreciate if you could point me what I am missing here. </p> http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service 0 Implementing an async WCF service bambuska 2009-12-11T20:28:34Z 2009-12-12T21:24:38Z <p>I have a WPF application which I'm currently working on separating into a client and server side - using WCF. I did not like the mess I initially got with the straight forward solution, so now I'm restructuring following the recommendations in the screencast of Miguel Castro, <a href="http://www.dnrtv.com/default.aspx?showNum=122" rel="nofollow">WCF Extreme</a>. If you're not familiar with the video he basically sets up the whole communication manually - without using service references. This includes: </p> <ul> <li>A common Contract with all service and data contracts - referenced by the client and server</li> <li>A console application hosting the service</li> <li>Proxy classes on the client mapping up the service, and passing calls to it (using ClientBase or ClientFactory)</li> </ul> <p>I've followed all his steps, and I really like where this is going. However, he does not address asynchronous service calls, and this is what I'd like to use. </p> <p>When adding a Service Reference I can check a "Generate async operations" checkbox, and I get MyServiceCompleted and MyServiceAsync. However, I guess this is something which was generated when adding the service reference, and not some magic in the classes this builds on? </p> <p>So, can I get async operations from ClientBase or ClientFactory somehow? Or do I have to define the actual server side services to be async? If so - could someone please give me a few hints or examples on how to get started with a simple async service? I've been reading around on MSDN on the subject, but it has left me all confused feeling like an idiot for not getting this already.. </p> http://stackoverflow.com/questions/1893789/google-privacy-concerns-trustworthy-alternatives-for-migration -1 Google privacy concerns: trustworthy alternatives for migration? [closed] Markos Fragkakis 2009-12-12T15:39:01Z 2009-12-12T15:39:01Z <p>I have come to realize the tremendous amount of information Google has on its users. I am a typical Google user, using Gmail, Google Reader. This means that right now Google now has the following information at its disposal: </p> <ul> <li>Who my friends are (Gmail)</li> <li>What we talk about (Gmail, Google Talk)</li> <li>What news sources I follow (Google Reader)</li> <li>How frequently I check them and which ones I consider important enough to share (Google Reader)</li> <li>A lot of other stuff</li> <li>What I search about and when (if I search when logged in) (Web search)</li> </ul> <p>I have no reason to believe that this information is used for reasons other than adjusting what ads I am displayed when I visit a site with Google Ads. However, I have realised that I am in no position to be certain that this is absolutely true, or that it always will be.</p> <p>On the other hand, I don't want to reach the uber-privacy-maniac state of maintaining my own email server and installing a desktop RSS reader in all my machines.</p> <p>So, I am asking for your opinions:</p> <p><strong>What services constitute a good set of alternatives to the Google services, promising better privacy?</strong></p> <p>Pros:</p> <ul> <li>Privacy</li> <li>Free</li> <li>Powerful</li> <li>Usable</li> </ul> http://stackoverflow.com/questions/1884702/i-want-to-pass-the-array-of-request-to-web-service-at-once-it-it-possible 0 i want to pass the array of request to web service at once...it it possible? Sikender 2009-12-10T23:00:05Z 2009-12-11T04:20:05Z <p>I am working with some web services and I want to pass the array of request to the web service at once and the output should be returned once for the whole array of request.</p> <p>For example, let's say I am requesting the city details by city name. I want to build the array of city names and pass it to the web service and get all the details in one response.</p> <p>I am using ASP.NET</p> <pre><code>&lt;AirAvailability_6_2&gt; &lt;AirAvailMods&gt; &lt;GenAvail&gt; &lt;NumSeats&gt;1&lt;/NumSeats&gt; &lt;Class&gt;&lt;![CDATA[ ]]&gt;&lt;/Class&gt; &lt;StartDt&gt;20091214&lt;/StartDt&gt; &lt;StartPt&gt;LON&lt;/StartPt&gt; &lt;EndPt&gt;AAH&lt;/EndPt&gt; &lt;StartTm&gt;1200&lt;/StartTm&gt; &lt;TmWndInd&gt;D&lt;/TmWndInd&gt; &lt;StartTmWnd&gt;0800&lt;/StartTmWnd&gt; &lt;EndTmWnd&gt;1400&lt;/EndTmWnd&gt; &lt;FltTypeInd&gt;&lt;/FltTypeInd&gt; &lt;StartPtInd&gt;&lt;/StartPtInd&gt; &lt;EndPtInd&gt;&lt;/EndPtInd&gt; &lt;IgnoreTSPref&gt;&lt;/IgnoreTSPref&gt; &lt;/GenAvail&gt; &lt;/AirAvailMods&gt;&lt;/AirAvailability_6_2&gt; &lt;AirAvailability_6_2&gt; &lt;AirAvailMods&gt; &lt;GenAvail&gt; &lt;NumSeats&gt;1&lt;/NumSeats&gt; &lt;Class&gt;&lt;![CDATA[ ]]&gt;&lt;/Class&gt; &lt;StartDt&gt;20091214&lt;/StartDt&gt; &lt;StartPt&gt;LON&lt;/StartPt&gt; &lt;EndPt&gt;AAH&lt;/EndPt&gt; &lt;StartTm&gt;1200&lt;/StartTm&gt; &lt;TmWndInd&gt;D&lt;/TmWndInd&gt; &lt;StartTmWnd&gt;0800&lt;/StartTmWnd&gt; &lt;EndTmWnd&gt;1400&lt;/EndTmWnd&gt; &lt;FltTypeInd&gt;&lt;/FltTypeInd&gt; &lt;StartPtInd&gt;&lt;/StartPtInd&gt; &lt;EndPtInd&gt;&lt;/EndPtInd&gt; &lt;IgnoreTSPref&gt;&lt;/IgnoreTSPref&gt; &lt;/GenAvail&gt; &lt;/AirAvailMods&gt;&lt;/AirAvailability_6_2&gt; </code></pre> http://stackoverflow.com/questions/1885005/how-can-i-use-multiple-threads-for-passing-the-web-service-request 0 how can i use multiple threads for passing the web service request? Sikender 2009-12-11T00:09:41Z 2009-12-11T00:22:24Z <p>can you please suggest me how to pass the web service request using threads in asp.net</p> http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename 1 How can a Windows Service determine its ServiceName? NVRAM 2009-12-03T18:11:05Z 2009-12-09T22:32:51Z <p>I've looked and couldn't find what should be a simple question:</p> <p><strong>How can a Windows Service determine the ServiceName for which it was started?</strong></p> <p>I know the installation can hack at the registry and add a command line argument, but logically that seems like it <em>should</em> be unnecessary, hence this question.</p> <p>I'm hoping to run multiple copies of a single binary more cleanly than the registry hack.</p> <p><strong>Edit</strong>:</p> <p>This is written in C#. My apps <em>Main()</em> entry point does different things, depending on command line arguments:</p> <ul> <li>Install or Uninstall the service. The command line can provide a non-default ServiceName and can change the number of worker threads.</li> <li>Run as a command-line executable (for debugging),</li> <li>Run as a "Windows Service". Here, it creates an instance of my <em>ServiceBase</em>-derived class, then calls <em>System.ServiceProcess.ServiceBase.Run(instance);</em></li> </ul> <p>Currently, the installation step appends the service name and thread count to the <em>ImagePath</em> in the registry so the app can determine it's ServiceName.</p> http://stackoverflow.com/questions/1394495/jboss-esb-stop-working-or-logging-after-startup 0 JBoss ESB stop working or logging after startup deger 2009-09-08T14:59:12Z 2009-12-09T20:00:02Z <p>Hi all,</p> <p>I am using JbossESB as an integrasion layer between applications. I am reading messages from the file system, parse them and then sent them to the remote application by jms.</p> <p>My configuration file - jboss-esb.xml</p> <pre><code>&lt;fs-provider name="SitaIstProvider"&gt; </code></pre> <p> </p> <p><br /> </p> <p> </p> <p>the thing is when JbossESB is starting everything is going ok. But after startup there will be no log entry about this action, although the files are moved from INOUTDIR to OKDIR without any log entry. </p> <p>Is something wrong with my listener or logger, i don't know? but i do know that there are couple of services working on ESB and they are working just fine and making entries into the log file.</p> <p>Thannks.</p> http://stackoverflow.com/questions/1243210/is-soap-obsolete 5 Is SOAP obsolete? DevDevDev 2009-08-07T06:28:50Z 2009-12-09T17:58:34Z <p>What is the current best practice for implementing Web Services? Is it still with SOAP?</p> <p>Windows Communication Framework is seemingly better, but isn't it SOAP under the covers?</p> http://stackoverflow.com/questions/1870755/how-one-can-be-a-good-about-web-services 1 how one can be a good about web services... [closed] qqqqqqqqqqq 2009-12-09T00:02:03Z 2009-12-09T00:14:10Z <p>what basics and what advance things should be learn to be master in web services...</p> http://stackoverflow.com/questions/1865551/script-to-list-non-microsoft-services 1 Script to list non-Microsoft Services unknown (google) 2009-12-08T08:38:00Z 2009-12-08T11:35:38Z <p>Hi guys Been lookin' for a way to list the non-Microsoft Services to a *.txt file.</p> <p>Either using vbs or a batch file will be sufficient.</p> <p>I've tried numerous ways with WMI and the sc.exe command, but can't seem to put my finger on it.</p> <p>Thanks,</p> <p>Tim</p> http://stackoverflow.com/questions/1863987/business-logic-and-services 0 Business logic and services James P. 2009-12-08T01:23:06Z 2009-12-08T01:26:59Z <p>In a three-tier/multitier architecture (UI/Logic/DAO/Domain model), can services be considered as belonging to the business logic layer or are they situated as something separate ?</p> http://stackoverflow.com/questions/1364015/silverlight-wcf-service-cross-domain-question 1 Silverlight WCF Service Cross Domain Question Nate Bross 2009-09-01T18:48:47Z 2009-12-07T20:01:06Z <p>I have a silverlight app (hosted at intranet.mydomain.net) and a WCF service at (webservices.mydomain.net)</p> <p>Do I need a cross-site policy file? If so, what would it look like to only allow access from intranet.mydomain.net?</p> http://stackoverflow.com/questions/1861467/analysis-services-real-time-trace-logs 0 Analysis Services Real Time Trace Logs Chilly 2009-12-07T17:23:47Z 2009-12-07T17:33:06Z <p>I'm looking to get the trace logs for AS (same stuff as for SQL server) in real time. I can't find any .net interfaces to this stuff. So far the only realistic solution I can think of is to run it permanently and have it dump to a new table which I listen to on updates via triggers.</p> <p>Does anyone know of a better way of doing this?</p> <p>This is the data I'm after (all of it): <a href="http://msdn.microsoft.com/en-us/library/ms174901%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms174901%28SQL.90%29.aspx</a></p> <p>Ta</p> http://stackoverflow.com/questions/1849489/soap-error-parsing-wsdl 0 SOAP-ERROR: Parsing WSDl unknown (google) 2009-12-04T20:34:17Z 2009-12-07T17:27:09Z <p>In my ASP.NET website I am trying to comsume a webserice and I and getting the following error: SOAP-ERROR: Parsing WSDL: Couldn't load from '<a href="https://usaepay.com/soap/gate/3213EA2A/usaepay.wsdl" rel="nofollow">https://usaepay.com/soap/gate/3213EA2A/usaepay.wsdl</a>' : failed to load external entity "https://usaepay.com/soap/gate/3213EA2A/usaepay.wsdl" </p> <p>Any idea on how to resolve it.</p> <p>Thanks, Pinaz.</p> http://stackoverflow.com/questions/1859693/manage-timeouts-in-the-reporting-services-2005 0 Manage timeouts in the Reporting Services 2005 Akim Khalilov 2009-12-07T12:28:54Z 2009-12-07T12:30:00Z <p>Hi. There're some problem. I have a report which is executed long time. When the one hour passes "The page cannot be displayed" error is appear. I think it's smth. with timeout settings. </p> <p>This settings had been increased:</p> <p>C:\Program Files\Microsoft SQL Server\MSSQL.2\ReportingServices\ReportManager\Web.config C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\Web.config</p> <p>&lt;httpRuntime executionTimeout="<strong>18000</strong>"/&gt;</p> <p>C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\rsreportserver.config <br><br>&lt;Add Key="SQLCommandTimeoutSeconds" Value="<strong>18000</strong>"/&gt; <br>&lt;Add Key="MaxActiveReqForOneUser" Value="20"/&gt; <br>&lt;Add Key="DatabaseQueryTimeout" Value="<strong>18000</strong>" /&gt;</p> <p>Also:<br><br> Report Manager->Site settings->Report Execution Timeout->select “<strong>do not timeout report execution</strong>”.</p> <p>Changes doesn't solved my problem.</p> <p>May be there're smth. in IIS configuration? Is there're any other timeout settings I should to increase?</p> <p>Hope for your help. Thanks.</p> http://stackoverflow.com/questions/1848580/wcf-and-web-service-compatiblity 1 wcf and web service compatiblity zachary 2009-12-04T17:53:10Z 2009-12-04T18:08:25Z <p>I have a web service that is used by many different clients using many different languages.</p> <p>I want to switch it to wcf to take advantage of the many different endpoints.</p> <p>However what has been stopping me is that I am afraid that the clients will have to use a special sdk to connect (if they are using java or php or some other language) that is different then the sdk they use to connect to the existing web service.</p> <p>Is this true? Or is connecting to WCF the exact same as it is for web services in other languages.</p> http://stackoverflow.com/questions/1847467/any-particular-services-that-has-to-run-win32networkadapterconfiguration 0 Any particular services that has to run ? (win32_networkadapterconfiguration) Oppermann 2009-12-04T14:56:10Z 2009-12-04T14:56:10Z <p>Hi. I'm having problems with a script that changes the TCP/IP settings of my NICs. The script works as it should on most PCs, but on some it don't. I can't figure why it wont work because both the working systems and the non working systems have .NET 3.5 SP1 installed...</p> <p>The weird thing is that I have no problems getting the current TCP/IP settings with win32_netw... on any of the systems... </p> <ul> <li>Any particular services or anything else that has to run when I'm using win32_networkadapterconfiguration?</li> </ul> http://stackoverflow.com/questions/1836017/filtering-in-silverlight-with-ria-services 0 Filtering in Silverlight with RIA Services Mohit Nigam 2009-12-02T21:42:18Z 2009-12-03T23:09:06Z <p>I have a small SL application that uses RIA services to display employee data (Northwind database) in a data grid. I have a text filter, that works fine against varchar columns but does not filter against a nullable int column. Here is the xaml:</p> <p> xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" x:Class="FilteringSample.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:web="clr-namespace:FilteringSample.Web" xmlns:converter="clr-namespace:FilteringSample" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"> --> </p> <pre><code> &lt;riaControls:DomainDataSource.FilterDescriptors&gt; &lt;riaData:FilterDescriptorCollection LogicalOperator="Or"&gt; &lt;riaData:FilterDescriptor PropertyPath="FirstName" Operator="Contains"&gt; &lt;riaControls:ControlParameter ControlName="Filter" PropertyName="Text" RefreshEventName="TextChanged" /&gt; &lt;/riaData:FilterDescriptor&gt; &lt;riaData:FilterDescriptor PropertyPath="Title" Operator="Contains"&gt; &lt;riaControls:ControlParameter ControlName="Filter" PropertyName="Text" RefreshEventName="TextChanged" /&gt; &lt;/riaData:FilterDescriptor&gt; &lt;riaData:FilterDescriptor PropertyPath="TestFilter" Operator="Contains"&gt; &lt;riaControls:ControlParameter ControlName="Filter" PropertyName="Text" RefreshEventName="TextChanged"/&gt; &lt;/riaData:FilterDescriptor&gt; &lt;/riaData:FilterDescriptorCollection&gt; &lt;/riaControls:DomainDataSource.FilterDescriptors&gt; &lt;/riaControls:DomainDataSource&gt; &lt;/StackPanel&gt; &lt;data:DataGrid Name="MyGrid" ItemsSource="{Binding Data, ElementName=DataSource1}"&gt; &lt;/data:DataGrid&gt; &lt;!--&lt;data:DataPager PageSize="20" Source="{Binding Data, ElementName=DataSource1}" Margin="0,-1,0,0" /&gt;--&gt; &lt;/StackPanel&gt; </code></pre> <p> </p> <p>Any help will be appreciated. Thanks</p> http://stackoverflow.com/questions/1570702/what-does-crosscutting-requirements-concerns-mean-in-programming 4 What does Crosscutting Requirements/Concerns mean in Programming? Ankit 2009-10-15T07:06:00Z 2009-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/1272244/matrix-reporting-services-problem 0 Matrix Reporting Services Problem unknown (google) 2009-08-13T14:17:13Z 2009-12-03T12:00:05Z <p>I have a matrix with rows indicating a name (Ex Store name) and I have data pertaining to that in the DATA cells. I also have another date field in this format (MM/DD/YYYY). I would like to use a cross tab between Store Names and Just the Month of the date field.</p> <pre><code> Jan Feb Mar Apr (From Date) </code></pre> <p>A (Store Name) 10 5 3 2 B 3 4 2 1</p> <p>is there any expression I can use to get the month format on the header of column.</p> <p>thx.</p> http://stackoverflow.com/questions/1836171/android-bindservice-remote-services-any-basic-examples 0 Android bindService / remote services - any basic examples? Chris 2009-12-02T22:06:05Z 2009-12-02T22:17:09Z <p>As a newbie to Android development, I'm trying to do the basics and build a media player. It works fine in one activity, but I'm now moving the MediaPlayer stuff to a remote service so it can carry on after the activity is destroy. I've moved the necessary code to the service, left comments in the activity where I'll need to call service methods, implemented my AIDL and it all builds with no errors (Eclipse).</p> <p>However, I'm totally stumped as to how to call IPC methods. Are there any simple and minimal examples with no fat - just the bare essentials?</p> <p>As I'm using IPC methods, I don't need to use onStart() at all - right? (I intend to use LoadFile(File path), and then have public void considerDeath() { if (!isPlaying()) { MyService.stopSelf(); } } method called from activity.onDestroy )</p> <p>/guide/developing/tools/aidl.html has multiple binders, but when I use the mSecondaryConnection portion, I get "MyService.Stub cannot be resolved"</p> <p>I've tried <a href="http://www.anddev.org/remote%5Fservice%5Ftutorial-t8127.html" rel="nofollow">http://www.anddev.org/remote%5Fservice%5Ftutorial-t8127.html</a> which seems to confuse things by overloading methods.</p> <p>I can't find anything by Mark Murphy either on the subject :(</p> http://stackoverflow.com/questions/1835085/web-services-php 0 web services & php pareja 2009-12-02T19:02:40Z 2009-12-02T19:12:23Z <p>Hi... I need help because I don't know about web services using php</p> <p>somebody help me </p> <p>I need to create a web services with php and I need some any reference (free)</p> <p>Thanks for your help</p> http://stackoverflow.com/questions/1832275/creating-an-splistitem-in-a-wcf-service-deployed-to-sharepoint 0 Creating an SPListItem in a WCF service deployed to SharePoint Colin 2009-12-02T11:14:43Z 2009-12-02T13:19:58Z <p>Hi all, i have the following method in a WCF service, that has been deployed to SharePoint using Shail Malik's guide:</p> <pre><code>[OperationContract] public string AddItem(string itemTitle, Guid? idOfListToUse) { using (var portal = new SPSite(SPContext.Current.Site.Url, SPContext.Current.Site.SystemAccount.UserToken)) { using (var web = portal.OpenWeb()) { Guid listId; web.AllowUnsafeUpdates = true; if (idOfListToUse != null &amp;&amp; idOfListToUse.Value != new Guid()) { listId = idOfListToUse.Value; } else { try { listId = new Guid(web.Properties[PropertyBagKeys.TagsList]); } catch (Exception ex) { throw new MyException("No List Id for the tag list (default list) has been found!", ex); } } var list = web.Lists[listId]; string title = ""; SPSecurity.RunWithElevatedPrivileges(delegate{ var newItem = list.Items.Add(); newItem["Title"] = itemTitle; newItem.Update(); title = newItem.Title; }); web.AllowUnsafeUpdates = false; return title; } } } </code></pre> <p>When the method gets called from Javascript (using Rick Strahl's excellent ServiceProxy.js) it fails and it does so on newItem.Update() because of ValidateFormDigest().</p> <p>Here's the kicker though, when I step through the code it works! No exceptions at all!</p> http://stackoverflow.com/questions/1818031/request-on-soa-soapui-saas-and-web-services -1 Request on Soa, SoapUI, SaaS and Web services rajesh5575 2009-11-30T05:50:03Z 2009-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/1826026/java-web-service-for-net-2-0-client-on-linux-fedora 0 Java Web Service for .NET 2.0 Client on Linux (Fedora) jamiebarrow 2009-12-01T12:54:48Z 2009-12-01T13:10:35Z <p>Hi,</p> <p>I'm tasked with creating a Java Web Service for a .NET 2.0 client to consume.</p> <p>What would your suggestions for the implementation be?</p> <p>The solution doesn't need to be very heavyweight (don't need a full Java EE container I believe) but what do you think is the best solution for this? I have thought about using Glassfish v2 with JAX-WS annotations (@WebService), and JAXB XML Bindings(e.g. @XmlElement), which I assume the .NET client would be able to consume?</p> <ol> <li><p>Has anyone tried this scenario?</p></li> <li><p>Would Glassfish be overkill though, since I'm merely using the Web Service as a mechanism for .NET on Windows to communicate to the Linux box, the underlying application is extremely small.</p></li> </ol> <p>Any suggestions are more than welcome :)</p> <p>Thanks,</p> <p>James</p> <p>P.S. Other notes - would you use Axis/CXF instead of Glassfish? Would you use a servlet container such as Tomcat? etc.</p>