active questions tagged integration - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:41:53Z http://stackoverflow.com/feeds/tag/integration http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1906797/blackberry-read-profileindex-status-using-notificationmanager-and-consequence 0 Blackberry - read profileIndex status using NotificationManager and Consequence API Mintu Nandi 2009-12-15T11:23:51Z 2009-12-16T15:36:25Z <p>Below link is not enough to get profile status....</p> <p><a href="http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info">http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info</a></p> <p>Is there any indirect way to get Profile status, programmatically? I am trying to find the profileIndex but failed. If anyone know anything about this problem solution pls pls share .</p> <p>Thanks</p> http://stackoverflow.com/questions/1905226/blackberry-programmatically-create-new-exception-in-profile 1 BlackBerry - Programmatically create new exception in profile? Mintu Nandi 2009-12-15T04:49:15Z 2009-12-16T15:34:40Z <p>Hi everyone!</p> <p>Actually i trying <strong>how to read the profile status</strong> but i am not getting that.</p> <p>....</p> <p>If anyone have an idea how to create new exception in profile programmatically,</p> <p>will really helpful for me.</p> <p>Thanks</p> http://stackoverflow.com/questions/1896552/blackberry-read-custom-ringtone-name-from-address-book-contact-list 0 BlackBerry - read custom ringtone name from address book contact list? Mintu Nandi 2009-12-13T13:47:46Z 2009-12-16T15:17:27Z <p>Actually I am assigning custom ringtone with contact number in a custom database contact list. Now I am having problem with the reading to that contact list. If anyone having any idea about this problem pls pls help.</p> <p><strong>UPDATE</strong></p> <pre><code>public void showAddressBook() { try { ContactList contactList = (ContactList) PIM.getInstance() .openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE); Enumeration enumx = contactList.items(); while (enumx.hasMoreElements()) { Contact c = (Contact) enumx.nextElement(); int[] fieldIds = c.getFields(); System.out.println("SHOW:" + c.EXTENDED_FIELD_MIN_VALUE); int id; for (int index = 0; index &lt; fieldIds.length; ++index) { id = fieldIds[index]; System.out.println(c.getPIMList().getFieldLabel(id) + "==showAddressBook==" + fieldIds.length); if (c.getPIMList().getFieldDataType(id) == Contact.STRING) { for (int j = 0; j &lt; c.countValues(id); ++j) { String value = c.getString(id, j); System.out.println(c.getPIMList().getFieldLabel(id) + "=" + value); } } } } } catch (PIMException ex) { ex.printStackTrace(); } } </code></pre> http://stackoverflow.com/questions/1909697/read-word-document-in-asp-net-and-replace-text-office-2003-2007 0 Read word document in ASP.NET and replace text (Office 2003/2007) Rodrigo 2009-12-15T19:16:18Z 2009-12-16T13:04:37Z <p>Hi, </p> <p>I'm using VS 2005, asp.net 2.0.</p> <p>I need to read a word document (.doc) in asp.net, make some replaces and then generate another word document.</p> <p>So far OK. I've done it in a machine that have the Office 2003 installed, so in VS 2005 I've added a reference to the "<strong>Microsoft Word 11.0 Object Library</strong>". Everything worked perfectly. Code to open/save the word document: <a href="http://www.dnzone.com/go?1387" rel="nofollow">http://www.dnzone.com/go?1387</a></p> <p>Question 1: I need to open the same project in a machine that has Office 2007 installed and make it run. When I do it, it doesn't recognizes the references.. I only have the possibility to add reference to the "<strong>Microsoft Word 12.0 Object Library</strong>". How can I make it work smoothly in both machines with the less effort possible? Is there a way to do so?</p> <p>Question 2: Will this application work fine when I deploy it to a web server? Do I have to register some dll or component in the server or do anything else in order to this office integration to work?</p> <p>Thank you very much!</p> <p>Rodrigo</p> http://stackoverflow.com/questions/1896064/recommended-integration-mechanism-for-bi-directional-authenticated-encrypted-co 0 Recommended integration mechanism for bi-directional, authenticated, encrypted connection in C client/JVM server setup? rrc7cz 2009-12-13T10:04:46Z 2009-12-16T11:42:34Z <p>Let me first give an example. Imagine you have a single server running a JVM application. This server keeps a collection of N equations, once for each client:</p> <pre><code>Client #1: 2x Client #2: 1 + y Client #3: z/4 </code></pre> <p>This server includes an HTTP interface so that random visitors can type <em><a href="https://www.acme.com/client/3" rel="nofollow">https://www.acme.com/client/3</a></em> int their browsers and see the latest evaluated result of <strong>z/4</strong>.</p> <p>The tricky part is that either the client or the server may change the variable value at any time, informing the other party immediately.</p> <p>More specifically, Client #3 - a C app - can initially tell the server that <strong>z = 20</strong>. An hour later that same client informs the server that <strong>z = 23</strong>. Likewise the server can later inform the client that <strong>z = 28</strong>.</p> <p>As <strong>caf</strong> pointed out in the comments, there can be a race condition when values are changed by the client and server simultaneously. The solution would be for both client and server to send the <strong>operation</strong> performed in their message, which would need to be executed by the other party. To keep things simple, let's limit the operations to (commutative) addition, allowing us to disregard message ordering. For example, the client seeds the server with <strong>z = 20</strong>:</p> <pre><code>server:z=20, client:z=20 server sends {+3} message (so z=23 locally) &amp; client sends {-2} message (so z=18 locally) at the exact same time server receives {-2} message at some point, adds to his local copy so z=21 client receives {+3} message at some point, adds to his local copy so z=21 </code></pre> <p>As long as all messages are <em>eventually</em> evaluated by both parties, the correct answer will <em>eventually</em> be given to the users of the client and server since we limited ourselves to <strong>commutative</strong> operations (addition of 3 and -2). This does mean that both client and server can be returning incorrect answers in the time it takes for messages to be exchanged and processed. While undesirable, I believe this is unavoidable.</p> <p>Some possible implementations of this idea include:</p> <ul> <li>Open an encrypted, always on TCP socket connection for communication <ul> <li><strong>Pros</strong>: no additional infrastructure needed, client and server know immediately if there is a problem (disconnect) with the other party, fairly straightforward (except the the encryption), native support from both JVM and C platforms</li> <li><strong>Cons</strong>: pretty low-level so you end up writing a lot yourself (protocol, delivery verification, retry-on-failure logic), probably have a lot of firewall headaches during client app installation</li> </ul></li> <li>Asynchronous messaging (ex: <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a>) <ul> <li><strong>Pros</strong>: transactional, both C &amp; Java integration, free up the client and server apps from needing retry logic or delivery verification, pretty straightforward encryption, easy extensibility via message filters/routers/etc</li> <li><strong>Cons</strong>: need additional infrastructure (message server) which <em>must never fail</em>, </li> </ul></li> <li>Database or file system as asynchronous integration point <ul> <li>Same pros/cons as above but messier</li> </ul></li> <li>RESTful Web Service <ul> <li><strong>Pros</strong>: simple, possible reuse of the server's existing REST API, SSL figures out the encryption problem for you (maybe use RSA key a la GitHub for authentication?)</li> <li><strong>Cons</strong>: Client now needs to run a C HTTP REST server w/SSL, client and server need retry logic. <a href="http://ws.apache.org/axis2/index.html" rel="nofollow">Axis2</a> has both a Java and C version, but you may be limited to SOAP.</li> </ul></li> </ul> <p>What other techniques should I be evaluating? What real world experiences have you had with these mechanisms? Which do you recommend for this problem and why?</p> http://stackoverflow.com/questions/1909533/silverlight-cms 0 Silverlight CMS wendelstam 2009-12-15T18:51:06Z 2009-12-15T19:11:20Z <p>Hi guys.</p> <p>I am have started working with Silverlight and thought I would make a full futured website with a Silverlight front and are therefor looking for an Open Source CMS that takes care of the administration part and lets me worry about the presentation.</p> <p>This is a hobby project so I am not very intrested in spending any money on this. I have started to look into N2 Cms which is very cool but still is the a better suited framework for my task?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1907782/integrate-python-app-into-php-site 2 Integrate Python app into PHP site Franz 2009-12-15T14:21:15Z 2009-12-15T18:07:04Z <p>This might sound really crazy, but still...</p> <p>For our revamped project site, we want to integrate Trac (as code browser, developer wiki and issue tracker) into the site design. That is, of course, difficult, since Trac is written in Python and our site in PHP. Does anybody here know a way how to integrate a header and footer (PHP) into the Trac template (preferrably without invoking a - or rather two for header and footer - PHP process from the command line)?</p> http://stackoverflow.com/questions/1895464/trac-and-subversion 0 trac and subversion mrblah 2009-12-13T03:21:15Z 2009-12-15T15:20:46Z <p>What kind of integration does trac have with subversion repositories?</p> <p>Is it simply being able to view the source files or is there more to it?</p> http://stackoverflow.com/questions/1907111/linkedin-integration-establish-a-requesttoken 0 LinkedIn integration - Establish a requestToken sergionni 2009-12-15T12:29:29Z 2009-12-15T13:37:39Z <p>Hi.</p> <p>I'm developing (trying for now) portlet that will be integrated with LinkedIn.</p> <p>Following the documentation about it: <a href="http://developer.linkedin.com/docs/DOC-1008" rel="nofollow">http://developer.linkedin.com/docs/DOC-1008</a> --> The first step to authorizing a LinkedIn member is requesting a requestToken. This request is done with an HTTP POST. For the requestToken step, the following components should be present in your string to sign:</p> <pre><code>* HTTP Method (POST) * Request URI (https://api.linkedin.com/uas/oauth/requestToken) * oauth_callback * oauth_consumer_key * oauth_nonce * oauth_signature_method * oauth_timestamp * oauth_version </code></pre> <p>I have already API(it's *oauth_consumer_key*) key and i need to generate specific URL string. Have next java code for this URL and HTTP connection:</p> <pre><code>private void processAuthentication() { Calendar cal = Calendar.getInstance(); Long ms = cal.getTimeInMillis(); Long timestamp = ms / 1000; Random r = new Random(); Long nonce = r.nextLong(); String prefixUrl = "https://api.linkedin.com/uas/oauth/requestToken"; String oauthCallback = "oauth_callback=http://localhost/"; String oauthConsumerKey = "&amp;oauth_consumer_key=my_consumer_key"; String oauthNonce = "&amp;oauth_nonce=" + nonce.toString(); String oauthSignatureMethod = "&amp;oauth_signature_method=HMAC-SHA1"; String oauthTimestamp = "&amp;oauth_timestamp=" + timestamp.toString(); String oauthVersion = "&amp;oauth_version=1.0"; String mainUrl = oauthCallback + oauthConsumerKey + oauthNonce + oauthSignatureMethod + oauthTimestamp + oauthVersion; try { prefixUrl = URLEncoder.encode(prefixUrl, "UTF-8") + "&amp;" + URLEncoder.encode(mainUrl, "UTF-8"); URL url = new URL(prefixUrl); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); String msg = connection.getResponseMessage(); } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } </code></pre> <p>The question is next,for those, who had faced this problem: <strong>How should really look URL string for connection and how response is received?</strong></p> <p>For URL, it's interested the example of URL, you generated. And for response interested, method to get it. As i understand, after HTTP connection been established,that response is:</p> <pre><code>connection.getResponseMessage(); </code></pre> http://stackoverflow.com/questions/1902796/utilizing-a-current-web-sites-assets-in-a-new-mobile-version 0 Utilizing a current web site's assets in a new mobile version KeyStroke 2009-12-14T18:56:16Z 2009-12-14T19:11:59Z <p>Hi,</p> <p>I recently joined a friend of mine in developing his web app. He built it from scratch using the MVC pattern.</p> <p>Now I'm trying to make a new (and separated in a sub domain) mobile site that's based on CodeIgniter, but I have no idea how to utilize the models my friend made, especially considering they don't follow CodeIgniter's rules, plus they have includes and dependencies on other files in them.</p> <p>Any suggestions on how I could approach this?</p> <p>Your help is much appreciated :)</p> http://stackoverflow.com/questions/1453164/blackberry-make-a-call-from-native-address-book 1 Blackberry - make a call from native address book sonia 2009-09-21T06:59:31Z 2009-12-13T20:34:07Z <p>how to make a call from menu item appended in native book of BB('Call from ABC' option)? </p> http://stackoverflow.com/questions/1895926/integrating-authentication-for-different-web-applications 0 Integrating Authentication For Different Web Applications vigilant 2009-12-13T08:32:20Z 2009-12-13T08:37:27Z <p>What is the best way to share authentication information between two unrelated applications. Is there a standard for this?</p> <p>For example, if I use MoinMoin and vBulletin on a same website, is it possible for both systems to share the same authentication information (i.e. so, a user will only need to signup for 1 to have a common login for both)?</p> http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info 1 Blackberry - Get list of Profiles and active Profile info srinivas-g 2009-12-12T06:38:02Z 2009-12-12T17:17:42Z <p>Hi, I'm developing a Blackberry application, where I need to get the list of profiles from phone (for sound settings).</p> <p>Is there any way for getting the profile info?</p> http://stackoverflow.com/questions/1837585/whats-the-best-air-ruby-integration-tool-framework 0 What's the best AIR & Ruby integration tool/framework? btelles 2009-12-03T04:13:05Z 2009-12-11T22:52:13Z <p>Well, I tried Shoes, Titanium, and RubyFX (or was it FXRuby?) and am not yet <em>quite</em> happy with the stability and cross-platform support from any of them as desktop application GUI tools. Next in line is Adobe AIR. Anyone know what the best tool is that will integrate Ruby and Adobe AIR? Is it even possible?</p> http://stackoverflow.com/questions/1890719/ip-board-3-cookies 0 IP.Board 3 Cookies Justin White 2009-12-11T20:35:10Z 2009-12-11T20:35:10Z <p>I am integrating a custom written CMS with IP.Board 3. I would like to use the cookie information (username) that IP.Board stores upon login.</p> <p>Does anyone know how I can access that cookie? This would be in PHP, of course.</p> http://stackoverflow.com/questions/1889847/integrating-my-website-with-blogengine-net 1 Integrating my website with BlogEngine.Net Kabeer 2009-12-11T18:04:59Z 2009-12-11T18:15:05Z <p>Hello. I am developing a site (ASP.Net based) that, besides other features enables the users to blog as well. I am thinking of integrating BlogEngine.Net to my portal.</p> <p>From whatever little I have analyzed, integrating at presentation layer will be far more challenging in comparison to doing so at business layer. That means (I guess) I will have to use the BlogEngine.Core.dll in my application.</p> <p>I am looking for some sort of approval from the community, complimented with suggested do's and dont's. BTW, I find the business layer a bit intimidating (complex) as I want some basic &amp; necessary features only.</p> http://stackoverflow.com/questions/1886145/is-there-a-method-in-java-that-can-do-integration 1 Is there a method in Java that can do integration? Ben Fossen 2009-12-11T06:14:46Z 2009-12-11T16:31:38Z <p>I am writing a program in java that models a carnot engine and I want to calculate the work done and I need to use integration. I have been looking around on google and haven't found quite what I am looking for, have any suggestions?</p> http://stackoverflow.com/questions/1882207/crm-tool-integartion-with-pbx 0 CRM Tool Integartion with PBX Pradeep Ravindra 2009-12-10T16:26:46Z 2009-12-10T16:26:46Z <p>Hello RAJ.. </p> <p>I wanted to know if you can share how I could leverage the tool you have developed to achieve this Integration... Please mail me at pradeep.ravindra@gmail.com</p> http://stackoverflow.com/questions/1871574/schools-interoperability-framework-sif-integration-into-application 0 Schools Interoperability Framework (SIF) integration into application Tyler 2009-12-09T04:28:47Z 2009-12-10T15:58:51Z <p>Does anyone know of any good resources that will help me get started with understanding SIF and how to integrate it into a web-based application?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1880311/how-to-listen-visual-studio-code-model-events 0 How to listen Visual Studio code model events ? Alex Ilyin 2009-12-10T11:16:09Z 2009-12-10T13:30:42Z <p>I am implementing Visual Studio Add-in and I want my service to be notified when class or method is removed in C# editor. Is there any samples showing how to do that ? </p> http://stackoverflow.com/questions/1797802/webservice-on-navision-microsoft-dynamics-version-5-or-else 0 Webservice on Navision / Microsoft Dynamics version 5... or else? mac 2009-11-25T15:43:18Z 2009-12-09T18:18:46Z <h2>Go bounty!</h2> <p>This question has earned me a tumbleweed badge (7 views in 7 days!), which is somehow a strong confirmation that <em>Navision</em> has a very limited market share, which - I suspect - should be a confirmation Navision is neither all that great piece of software... </p> <p>But hey... that's what we got as a back-end, so I am ready to fight with this. :-O</p> <p>If there is some daring navision developer who is able to shed light onto this... the bounty is there for you! :)</p> <p><hr></p> <h2>Original Post</h2> <p>I have recently implemented a rather complex e-commerce system that interacts with a legacy back-end based on Navision 5. So far the exchange of data between the two platform has happened via XML files, but this method is quite clumsy and very much prone to mishaps.</p> <p><strong>Our needs are:</strong></p> <ol> <li>To <strong>expose certain elements of the business logic</strong> of each platform to the other one (for example: "what's the total amount ever purchased by this customer?", "what are the products currently on offer?", "how many new customers have registered on the website?", etc...).</li> <li>To <strong>have mechanisms of feed-back / validation</strong> for the various transactions (for example: "Here's the a new order from customer X" ... "Ok, got it, the order will now start to be processed" ... "Ok, copy that, bye!").</li> <li>If possible, <strong>avoid playing around with files</strong>, but keeping all of this happening in terms of calls/ports/services...</li> </ol> <p>The most natural way I could think of would be to integrate the two systems via webservice, but Navision 5 does not support this natively. So I did my "due diligence" and found a few things on MSDN including <a href="http://blogs.msdn.com/nav/archive/2008/04/15/using-web-services-to-access-microsoft-dynamics-nav-5-0.aspx" rel="nofollow">this article</a> and <a href="http://msdn.microsoft.com/en-us/library/ms952079.aspx" rel="nofollow">this other one</a>.</p> <p>According to these articles <strong>it should not be that difficult to create a webservice on Navision 5</strong>, but when I suggested this solution to the team in charge of the legacy system, they told us that it is "pure theory" and they do not know of anybody who ever implemented it.</p> <p>I have no reason to doubt their word, but <em>mileage can vary</em>... and I thought that maybe in the SO community there are professionals from other countries who actually implemented something similar and are available to share their experience.</p> <p>So, my question is two-folded:</p> <ol> <li>Is there anybody who has <em>tried this at home</em> and would be available to share a bit on what have been the greatest difficulties, if the final result is reliable, if they think the outcome is worth the effort, etc... ?</li> <li>Is there anybody who faced a similar problem but solved it with a different approach and that would be available to present their solution ("I never did it myself, but if I had to do it I would do it like this..." type of answers are also welcome)?</li> </ol> <p>Thank you in advance for your time! :)</p> http://stackoverflow.com/questions/340471/how-can-i-update-bugzilla-bugs-from-bash-and-php-scripts 2 How can I update Bugzilla bugs from bash and php scripts? Peter Howe 2008-12-04T12:48:42Z 2009-12-09T04:57:41Z <p>Our development process is highly automated via a raft of bash and php scripts (including subversion hook scripts.) These scripts do a number of things to integrate with our Bugzilla 3.0 installation.</p> <p>But the current integration approach is a bunch of SQL calls which update the bugzilla database directly - which obviously has a number of downsides - including making me nervous about upgrading to 3.2 in case the database schema has changed!</p> <p>For example, to add a comment to a bug, I'm doing an INSERT into the longdescs table.</p> <p>So my (slightly long-winded) question is:</p> <ul> <li>should I be using Bugzilla WebServices (and if so, is there any good documentation other than the Bugzilla API docs which aren't getting me up to speed quickly)</li> <li>or, should I be using some other Bugzilla API (direct perl calls?) - and, again, is there any decent doco on this?</li> <li>or, should I just keep doing what I'm doing (direct SQL calls) because the db doesn't change that much and it "does the job"</li> </ul> http://stackoverflow.com/questions/1868770/do-i-need-a-separate-server-to-implement-an-esb-e-g-apache-camel-mule 0 Do I need a separate server to implement an ESB (e.g. Apache Camel, Mule) ? Flaviu 2009-12-08T18:04:34Z 2009-12-08T18:16:10Z <p>Do I need a separate server to implement an ESB (e.g. Apache Camel, Mule) ?</p> http://stackoverflow.com/questions/1299432/spring-mvc-and-flex-integration-over-blazeds 1 Spring MVC and Flex integration over BlazeDS??? alexander 2009-08-19T11:48:19Z 2009-12-07T16:56:26Z <p>Hello dear Stackoverflow - community, my quastion is, which is the best way to integrate existent spring-MVC-Project with flex. I'am using Spring-2.5 lib with annotations. </p> <p>e.g my list controller:</p> <pre><code>package xxx.xxx.controller; @Controller public class ListController { @Autowired private ColorHome colorHome; @RequestMapping("/admin/colors.do") public ModelMap colorsHandler() { Collection&lt;Object&gt; colors = this.colorHome .findColors(); return new ModelMap(colors); } </code></pre> <p>i have also a colors.jsp which displays the colors. Now i would like to integrate flex as an UI-Layer. I only need to integrate the Spring-View with shown RequestMappings above. I would appreciate the answers. Thank you. Alex :)</p> http://stackoverflow.com/questions/1859537/iphone-app-non-app-store-safari-purchases 0 iPhone app non-app store (safari) purchases unknown (google) 2009-12-07T11:50:39Z 2009-12-07T11:55:14Z <p>I wanted to develop an iphone magazine application which will allow a user to purchase single issues or subscriptions through safari with a user id instead of the app store. What does my website require to be able to handle this? </p> http://stackoverflow.com/questions/1839148/blackberry-location-directory-on-device-to-save-file-from-application 0 BlackBerry - Location/directory on device to save file from application Bohemian 2009-12-03T10:46:21Z 2009-12-05T09:49:14Z <p>My program saves a file on the device during runtime and reads/writes data from it during runtime. Currently it gets saved in the SDCard. I want to know if saving it in device flash memory would be better than removable media. Does device allows us to write something in its internal memory? Suggestions/Ideas? Thanks</p> http://stackoverflow.com/questions/581186/can-someone-explain-why-scipy-integrate-quad-gives-different-results-for-equally 1 Can someone explain why scipy.integrate.quad gives different results for equally long ranges while integrating sin(X)? batbrat 2009-02-24T10:10:29Z 2009-12-04T18:33:05Z <p>I am trying to numerically integrate an arbitrary (known when I code) function in my program using numerical integration methods. I am using Python 2.5.2 along with SciPy's numerical integration package. In order to get a feel for it, i decided to try integrating sin(x) and observed this behavior-</p> <pre><code>&gt;&gt;&gt; from math import pi &gt;&gt;&gt; from scipy.integrate import quad &gt;&gt;&gt; from math import sin &gt;&gt;&gt; def integrand(x): ... return sin(x) ... &gt;&gt;&gt; quad(integrand, -pi, pi) (0.0, 4.3998892617846002e-14) &gt;&gt;&gt; quad(integrand, 0, 2*pi) (2.2579473462709165e-16, 4.3998892617846002e-14) </code></pre> <p>I find this behavior odd because -<br /> 1. In ordinary integration, integrating over the full cycle gives zero.<br /> 2. In numerical integration, this (1) isn't necessarily the case, because you may just be approximating the total area under the curve.</p> <p>In any case, either assuming 1 is True or assuming 2 is True, I find the behavior to be inconsistent. Either both integrations (-pi to pi and 0 to 2*pi) should return 0.0 (first value in the tuple is the result and the second is the error) or return 2.257...</p> <p>Can someone please explain why this is happening? Is this really an inconsistency? Can someone also tell me if I am missing something really basic about numerical methods?</p> <p>In any case, in my final application, I plan to use the above method to find the arc length of a function. If someone has experience in this area, please advise me on the best policy for doing this in Python.</p> <p><strong>Edit</strong><br /> <strong>Note</strong><br /> I already have the first differential values at all points in the range stored in an array.<br /> Current error is tolerable.<br /> <strong>End note</strong></p> <p>I have read Wikipaedia on this. As Dimitry has pointed out, I will be integrating sqrt(1+diff(f(x), x)^2) to get the Arc Length. What I wanted to ask was - is there a better approximation/ Best practice(?) / faster way to do this. If more context is needed, I'll post it separately/ post context here, as you wish.</p> http://stackoverflow.com/questions/929180/e-commerce-webapp-integration-via-web-services-with-ms-dynamics-navision-2009 2 e-commerce webapp integration via Web Services with MS Dynamics (Navision 2009) Ahsan Ali 2009-05-30T06:34:07Z 2009-12-04T16:42:59Z <p>Hi,</p> <p>Has anyone tried to build an e-commerce site atop MS Dynamics, using the new Web Services introduced in Nav 2009 ? I'd like to know what kind of load these web services can take, and what kind of resources can be read/written, and any other challenges that I can expect.</p> <p>I intend to integrate an existing linux-based webapp via Web Services ...</p> <p>Thanks.</p> http://stackoverflow.com/questions/516915/how-to-automate-integration-testing 3 How to automate integration testing ? Nicolas Dorier 2009-02-05T17:21:56Z 2009-12-04T04:44:39Z <p>Hi,</p> <p>I'd like to know something, I know that to make your test easier you should use mock during unit testing to only test the composant you want, without external depedencies.</p> <p>But at some time you have to bite the bullet, and test classes wich interact with your database/file/network...</p> <p>So my question is : What do you do to test these classes ? I don't feel that installing a database on my CI server is a good practice, but have you other options ?</p> <p>Should I create another server with another CI tools, with all externals depedencies ?</p> <p>Should I run integration test on my CI as often as my unit tests ?</p> <p>Maybe a full time person should be in charge to test these components manually ? (or in charge to create the test environment and configure the interaction between your class and your external depedency (like editing config files of your application))</p> <p>I'd like to know how do you do in the real world ?</p> http://stackoverflow.com/questions/1506096/help-integrating-wordpress-with-symfony 1 Help integrating Wordpress with Symfony lyoshenka 2009-10-01T19:56:03Z 2009-12-03T02:40:30Z <p>I have a site built with Symfony 1.2. I'm trying to integrate Wordpress 2.8.4 into it to power my blog. I followed the instructions at <a href="http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/" rel="nofollow">http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/</a>, including the 2 steps in the comments at h ttp://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-573 (sorry for not linking. New users can only post 1 hyperlink). My actions.class.php file looks like this:</p> <p> <pre><code> // Don't load symfony's I18N $standard_helpers = sfConfig::get('sf_standard_helpers'); $standard_helpers = array_diff($standard_helpers, array('I18N')); sfConfig::set('sf_standard_helpers', $standard_helpers); define('WP_USE_THEMES', true); chdir( dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'wordpress' ); global $wpdb; ob_start(); require_once( 'wp-blog-header.php' ); $this-&gt;blog = ob_get_contents(); if (function_exists('is_feed') &amp;&amp; is_feed()) { ob_end_flush(); throw new sfStopException(); } else { ob_end_clean(); } </code></pre> <p>} } ?></p> <p>My indexSuccess.php is simply</p> <pre><code>This is a test &lt;?php echo $blog ?&gt; </code></pre> <p>And my wp-blog-header.php is </p> <pre><code>&lt;?php /** * Loads the WordPress environment and template. * * @package WordPress */ if ( !isset($wp_did_header) ) { $wp_did_header = true; require_once( dirname(__FILE__) . '/wp-load.php' ); // @HACK FABRICE // All variables defined here are considered global by Wordpress $local_global_vars = get_defined_vars(); foreach($local_global_vars as $local_name =&gt; $local_value) { $GLOBALS[$local_name] = $local_value; } // Don't create new global variables ourselves, and do not overwrite other global variables, for example $name... unset($local_name, $local_value, $local_global_vars); // @HACK FABRICE wp(); // @HACK Fabrice global $posts; // @HACK Fabrice require_once( ABSPATH . WPINC . '/template-loader.php' ); } </code></pre> <p><strong>Here's my problem:</strong></p> <p>As it is, I get nothing when I go to the page. None of my Symfony headers, no Wordpress content, nothing. When I comment out the line "require_once( 'wp-blog-header.php' );" in actions.class.php, everything works fine but there is no Wordpress content. This leads me to believe that that Symfony is dying somewhere in the process of including the Wordpress stuff. Does anyone have any ideas on how this might be fixed?</p> <p>Thanks in advance.</p>