active questions tagged interoperability - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:28:20Z http://stackoverflow.com/feeds/tag/interoperability http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1563334/how-should-an-os-x-drawing-programs-store-custom-data-in-its-pdf-pasteboard-flavo 2 How Should an OS X Drawing Programs Store Custom Data in its PDF PasteBoard Flavor? Glenn Howes 2009-10-13T22:38:28Z 2009-11-03T03:58:42Z <p>A little history. In the days when the pre-eminent Mac vectored clipboard flavor was PICT, a program could insert its own data into the PICT. The PICT could be pasted into another application. At some later date, the same drawing could be selected and put on the clipboard, and pasted back into the originating program. The originating program would extract its custom data and regenerate the original selection for live editing. </p> <p>These days, the dominant vectored clipboard flavor is PDF, which is a fine format, but Apple does not provide any means to put one's custom data into a PDF using Apple's PDF generating APIs. (If I'm wrong about this, please let me know.) Just standard strings like the title, author, etc. And it seems that new applications often do not bother to put the original graphic back on the clipboard if the selection consists solely of the original. Also, applications like Word only keep the first page of pasted PDFs. </p> <p>Is there any thing I can do today to get "round trip" editing from my app to an arbitrary other app? Baring this, what would be the ideal solution for Apple and other apps to support? Should it be like PICT and be a standard custom vendor blob embedded in PDF, or should there be a separate vendor pasteboard type that apps keep in parallel with the visible graphic? If the former, should the blob be kept at the document or page level? I would prefer not to try anything hacky, like jamming XML into the author field.</p> http://stackoverflow.com/questions/1597074/send-authenticated-user-to-wcf-application 0 Send Authenticated User To WCF Application VictorV 2009-10-20T20:23:14Z 2009-10-21T13:42:43Z <p>I have 2 applications; one is a ASP.NET 3.5 Ajax Application (Client) and the other is a WCF Web Application (BackEnd).</p> <p>The applications are deployed in a separate Windows Server 2008 over IIS 7. The backend application has the net.tcp and http bindings enabled; some services are exposed under the netTcpBinding and other services are exposed under basicHttpBinding; the bindings not have configured any security.</p> <p>The Client application use FormsAuthentication for authenticate users. All of the services under netTcpBinding are consumed in the client application. In the backend I need to know which user calls the service to make some audit task. Is this possible?</p> http://stackoverflow.com/questions/457454/net-1-1-and-net-2-config-files-working-together 0 .NET 1.1 and .NET 2 config files working together AnturCynhyrfus 2009-01-19T12:37:09Z 2009-09-28T13:00:01Z <p>I have inherited a rather large project consisting of an application written in VB6 and several DLL's and ActiveX controls written in VB6, VB.NET 1.1 and VB.NET 2. I want to change one of the settings for one of the DLL's written in VB.NET 2 that is in its application.dll.config file, but it seems to be having no effect.</p> <p>My main VB6 application (I will call it Alpha) has a configuration file (Alpha.exe.cnfig) which contains settings used by my VB.NET 1.1 DLL (which I will call Bravo). After calling Bravo, Alpha calls Charlie (my VB.NET 2 DLL). However, even though I have changed the application settings in Charlie.dll.config in the subdirectory where the DLL lives, it has no effect. I have tried putting Charlie's settings in Alpha's config file but this causes Bravo to fail with an automation error (which I think is because the format of the config files changed from .NET 1.1 and .NET 2).</p> <p>Below is a simplified directory structure and file location example:</p> <p>\Application\Alpha\Alpha.exe (my VB6 application)<br /> \Application\Alpha\Alpha.exe.config (this config file is used by Bravo.dll)<br /> \Application\Assembly\Bravo.dll (my VB.NET 1.1 DLL)<br /> \Application\Controls\Charlie\Charlie.dll (my VB.NET 2 DLL)<br /> \Application\Controls\Charlie\Charlie.dll.config (this file is ignored by Charlie.dll)</p> <p>I have re-compiled my VB.NET 2 DLL with the default settings changed, I did this to check there is no code fault with the setting itself, and this works fine. However, I want to be able to inform the client how to change the config file so he can set it to be anything he wants without me having to re-compile the DLL every time he wants a different setting.</p> <p>I only want to alter app.config and not machine.config or user.config.</p> <p>Here is an example of Alpha.exe.config:</p> <pre><code>&lt;configuration&gt; &lt;appSettings&gt; &lt;add key="MySetting" value="MyValue" /&gt; &lt;/appSettings&gt; &lt;/configuration&gt; </code></pre> <p>And here is an example of Charlie.dll.config</p> <pre><code>&lt;configuration&gt; &lt;applicationSettings&gt; &lt;Charlie.My.MySettings&gt; &lt;setting name="MySetting" serializeAs="String"&gt; &lt;value&gt;MyValue&lt;/value&gt; &lt;/setting&gt; &lt;/Charlie.My.MySettings&gt; &lt;/applicationSettings&gt; &lt;/configuration&gt; </code></pre> <p>If I try putting the applicationSettings section <del>under</del> directly beneath the appSettings section (i.e. as another child element of the configuration element) in Alpha.exe.config then Bravo.dll fails.</p> <p>Many thanks in advance for any help you can provide.</p> http://stackoverflow.com/questions/1437147/validate-java-saml-signature-from-c 0 Validate java SAML signature from C# Adrya 2009-09-17T07:03:41Z 2009-09-24T04:58:29Z <p>Hi,</p> <p>How can i validate in .Net C# a SAML signature created in Java? Here is the SAML Signature that i get from Java:</p> <pre><code> &lt;ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#"&gt; &lt;ds:SignedInfo&gt; &lt;ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"&gt; &lt;/ds:CanonicalizationMethod&gt; &lt;ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"&gt; &lt;/ds:SignatureMethod&gt; &lt;ds:Reference URI="#_e8bcba9d1c76d128938bddd5ae8c68e1"&gt; &lt;ds:Transforms&gt; &lt;ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"&gt; &lt;/ds:Transform&gt; &lt;ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"&gt; &lt;ec:InclusiveNamespaces xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" PrefixList="code ds kind rw saml samlp typens #default xsd xsi"&gt; &lt;/ec:InclusiveNamespaces&gt; &lt;/ds:Transform&gt; &lt;/ds:Transforms&gt; &lt;ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"&gt; &lt;/ds:DigestMethod&gt; &lt;ds:DigestValue&gt;zEL7mB0Wkl+LtjMViO1imbucXiE=&lt;/ds:DigestValue&gt; &lt;/ds:Reference&gt; &lt;/ds:SignedInfo&gt; &lt;ds:SignatureValue&gt; jpIX3WbX9SCFnqrpDyLj4TeJN5DGIvlEH+o/mb9M01VGdgFRLtfHqIm16BloApUPg2dDafmc9DwL Pyvs3TJ/hi0Q8f0ucaKdIuw+gBGxWFMcj/U68ZuLiv7U+Qe7i4ZA33rWPorkE82yfMacGf6ropPt v73mC0bpBP1ubo5qbM4= &lt;/ds:SignatureValue&gt; &lt;ds:KeyInfo&gt; &lt;ds:X509Data&gt; &lt;ds:X509Certificate&gt; MIIDBDCCAeygAwIBAgIIC/ktBs1lgYcwDQYJKoZIhvcNAQEFBQAwNzERMA8GA1UEAwwIQWRtaW5D QTExFTATBgNVBAoMDEVKQkNBIFNhbXBsZTELMAkGA1UEBhMCU0UwHhcNMDkwMjIzMTAwMzEzWhcN MTgxMDE1MDkyNTQyWjBaMRQwEgYDVQQDDAsxMC41NS40MC42MTEbMBkGA1UECwwST24gRGVtYW5k IFBsYXRmb3JtMRIwEAYDVQQLDAlPbiBEZW1hbmQxETAPBgNVBAsMCFNvZnR3YXJlMIGfMA0GCSqG SIb3DQEBAQUAA4GNADCBiQKBgQCk5EqiedxA6WEE9N2vegSCqleFpXMfGplkrcPOdXTRLLOuRgQJ LEsOaqspDFoqk7yJgr7kaQROjB9OicSH7Hhsu7HbdD6N3ntwQYoeNZ8nvLSSx4jz21zvswxAqw1p DoGl3J6hks5owL4eYs2yRHvqgqXyZoxCccYwc4fYzMi42wIDAQABo3UwczAdBgNVHQ4EFgQUkrpk yryZToKXOXuiU2hNsKXLbyIwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBSiviFUK7DUsjvByMfK g+pm4b2s7DAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDQYJKoZIhvcNAQEF BQADggEBAKb94tnK2obEyvw8ZJ87u7gvkMxIezpBi/SqXTEBK1by0NHs8VJmdDN9+aOvC5np4fOL fFcRH++n6fvemEGgIkK3pOmNL5WiPpbWxrx55Yqwnr6eLsbdATALE4cgyZWHl/E0uVO2Ixlqeygw XTfg450cCWj4yfPTVZ73raKaDTWZK/Tnt7+ulm8xN+YWUIIbtW3KBQbGomqOzpftALyIKLVtBq7L J0hgsKGHNUnssWj5dt3bYrHgzaWLlpW3ikdRd67Nf0c1zOEgKHNEozrtRKiLLy+3bIiFk0CHImac 1zeqLlhjrG3OmIsIjxc1Vbc0+E+z6Unco474oSGf+D1DO+Y= &lt;/ds:X509Certificate&gt; &lt;/ds:X509Data&gt; &lt;/ds:KeyInfo&gt; &lt;/ds:Signature&gt; </code></pre> <p>I know to parse SAML, i need to validate the signature. I tried this:</p> <pre><code> public bool VerifySignature() { X509Certificate2 certificate = null; XmlDocument doc = new XmlDocument(); XmlElement xmlAssertionElement = this.GetXml(doc); doc.AppendChild(xmlAssertionElement); // Create a new SignedXml object and pass it // the XML document class. SamlSignedXml signedXml = new SamlSignedXml(xmlAssertionElement); // Get signature XmlElement xmlSignature = this.Signature; if (xmlSignature == null) { return false; } // Load the signature node. signedXml.LoadXml(xmlSignature); // Get the certificate used to sign the assertion if information about this // certificate is available in the signature of the assertion. foreach (KeyInfoClause clause in signedXml.KeyInfo) { if (clause is KeyInfoX509Data) { if (((KeyInfoX509Data)clause).Certificates.Count &amp;gt; 0) { certificate = (X509Certificate2)((KeyInfoX509Data)clause).Certificates[0]; } } } if (certificate == null) { return false; } return signedXml.CheckSignature(certificate, true); } </code></pre> <p>It valides the signature of a SAML signed in .Net but not of this Java one.</p> <p>If someone knows please help!! Thank you very much.</p> http://stackoverflow.com/questions/1245389/is-it-possible-to-build-a-net-assembly-callable-from-a-native-assembly-writing-i 4 Is it possible to build a .NET assembly callable from a native assembly writing in C# alone without using COM? beef 2009-08-07T15:21:36Z 2009-09-10T19:39:01Z <p>Is it possible to build a .NET assembly callable from a native assembly writing in C# alone without using COM?</p> http://stackoverflow.com/questions/1277226/java-and-c-cryptography-interoperability 0 Java and C++ Cryptography interoperability pauldolphin 2009-08-14T10:48:31Z 2009-08-14T14:28:24Z <p>I have a message coming from an external company which has been encrypted with our public key using Java.</p> <p>Specifically the java code performing the encryption is -</p> <pre><code> //get instance of cipher using BouncyCastle cryptography provider Cipher cipher = Cipher.getInstance( "RSA/ECB/PKCS1Padding", "BC"); //initialize the cipher with the public key pulled from the X509 certificate cipher.init(Cipher.ENCRYPT_MODE, publicKey); </code></pre> <p>I need to be able to decrypt this message using our private key using C/C++ on Solaris. I have tried using the Crypto++ library and can successfully encode decode messages just using Crypto++, but am unable to work out how to decode the message encrypted from the java side.</p> <p>Specifically I tried using a RSAES_PKCS1v15_Decryptor but this does not seem to work.</p> <p>Does anyone have any suggestions as to how I can perform the decryption such as</p> <ol> <li>The required Crypto++ code (ideal)</li> <li>Alternatives to RSA/ECB/PKCS1Padding to use from the Java side</li> <li>Alternative open source C libraries I could try</li> <li>Anything else...</li> </ol> http://stackoverflow.com/questions/264128/access-ruby-objects-with-python-via-xml-rpc 1 Access Ruby objects with Python via XML-RPC? QAZ 2008-11-05T01:33:50Z 2009-08-10T21:38:59Z <p>Hello</p> <p>I am trying to export a Ruby framework via XML-RPC. However I am having some problems when trying to call a method from a class not directly added as a handler to the XML-RPC server. Please see my example below:</p> <p>I have a test Ruby XML-RPC server as follows:</p> <pre><code>require "xmlrpc/server" class ExampleBar def bar() return "hello world!" end end class ExampleFoo def foo() return ExampleBar.new end def test() return "test!" end end s = XMLRPC::Server.new( 9090 ) s.add_introspection s.add_handler( "example", ExampleFoo.new ) s.serve </code></pre> <p>And I have a test Python XML-RPC Client as follows:</p> <pre><code>import xmlrpclib s = xmlrpclib.Server( "http://127.0.0.1:9090/" ) print s.example.foo().bar() </code></pre> <p>I would expect the python client to print "hello world!" as it is the equivalent of the following ruby code:</p> <pre><code>example = ExampleFoo.new puts example.foo().bar() </code></pre> <p>However it generates an error: "xmlrpclib.ProtocolError: &lt;ProtocolError for 127.0.0.1:9090/: 500 Internal Server Error&gt;".</p> <p>print s.example.test() works fine.</p> <p>I dont expect the new ExampleBar object to go over the wire but I would expect it to be 'cached' server side and the subsequent call to bar() to be honoured.</p> <p>Can XML-RPC support this kind of usage or is it too basic?</p> <p>So I guess my question really is; how can I get this working, if not with XML-RPC what with?</p> http://stackoverflow.com/questions/826938/interoperation-between-mercurial-and-subversion 8 interoperation between mercurial and subversion Jason S 2009-05-05T21:15:38Z 2009-07-29T13:48:45Z <p>A <a href="http://stackoverflow.com/questions/799860/using-mercurial-locally-only-with-subversion-server">similar question</a> has been asked recently, but is not the same.</p> <p>The Mercurial website has a <a href="http://www.selenic.com/mercurial/wiki/index.cgi/WorkingWithSubversion" rel="nofollow">detailed page</a> listing comparisons for 4 different options for getting Mercurial and Subversion to interoperate.</p> <p><strong>I am wondering if anyone out there has tried one or more of these, and could relate any really good or really bad experiences.</strong> The note on the <a href="http://bitbucket.org/durin42/hgsubversion/overview/" rel="nofollow">hgsubversion download</a> says</p> <blockquote> <p>hgsubversion is an extension for Mercurial that allows using Mercurial as a Subversion client. Right now it is <em>not</em> ready for production use. You should only be using this if you're ready to hack on it, and go diving into the internals of Mercurial and/or Subversion.</p> </blockquote> <p>which is about as inviting to me signs that say "Abandon hope, all ye who enter here" or "Trespassers will be arrested". So I'm just wondering if this or any of the other alternatives are worth trying for someone who doesn't have a lot of extra time to hack around.</p> http://stackoverflow.com/questions/1088615/scala-java-interop-can-scala-emit-enums-in-bytecode-for-java-to-consume 4 Scala - Java interop: can Scala emit enums in bytecode for Java to consume? Boris Terzic 2009-07-06T18:44:43Z 2009-07-07T07:21:44Z <p>I have a project that is mixed Java/Scala, it is Java GUI code that makes use of a Scala library. Is there a way to write Scala code such that it will emit Java enums on compile time? The approaches I tried so far (sealed case classes, extend Enumeration) seem to generate normal classes which makes working with them from Java much hairier than straight up enums.</p> http://stackoverflow.com/questions/628082/where-can-i-find-an-as400-to-java-interface 4 Where can I find an AS400 to Java interface? Oscar Reyes 2009-03-09T21:15:59Z 2009-06-04T00:42:08Z <p>Does anyone have links and resources to connect to an AS400 from Java?</p> <p>I remember years ago, somebody told me about a connector that simulates KeyStrokes from the keyboard and other "purest" approach that connected directly. </p> <p>On the web I have found a lot of links, but I cannot find a complete product to do this (I am probably not using the right keywords).</p> <p><strong>EDIT</strong></p> <p>Thanks for the answers:</p> <p>What we are looking for is a way to access the data inside the AS400 and/or the screens it uses and expose them for other new applications re-use. Either as a webservice of some sort, or directly through Java ( and java will expose the operations using webservices ) </p> <p>Thanks in advance. </p> <p><strong>EDIT</strong></p> <p>As per MicSim post, I've also found this link:</p> <p><a href="http://www.ibm.com/developerworks/library/ws-as400/index.html" rel="nofollow">http://www.ibm.com/developerworks/library/ws-as400/index.html</a></p> http://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden 5 How to avoid building a walled garden? Stewart Johnson 2009-04-27T15:34:56Z 2009-04-27T15:46:41Z <p>Some friends and I have had an idea for a website and have started working on it. It will rely on people contributing to a shared knowledgebase, and people will also be able to create personal profiles with reasonable amounts of data. We intend people should be able to leverage their content on other sites (e.g.: flickr, youtube) when building their profile on our site.</p> <p>It occurred to us that we want to be good internet citizens, and make our website accessible and useful for people regardless of whether they have an account or not. We also want to make sure that any data people contribute to our site is not 'locked in' and is available to other sites appropriately.</p> <p>Are there any specific practices we should follow, and similarly ones we should avoid?</p> <p>Thanks!</p> http://stackoverflow.com/questions/758526/testing-rss-feeds 3 Testing RSS feeds Vance Smith 2009-04-17T00:04:05Z 2009-04-17T04:48:16Z <p>I am looking to test an RSS Feed I have created and I am looking for some good RSS Feed applications to test with.</p> http://stackoverflow.com/questions/739951/which-mechanism-may-be-used-to-access-java-methods-which-conflict-with-javascript 0 Which mechanism may be used to access Java methods which conflict with JavaScript keywords? dfa 2009-04-11T12:08:23Z 2009-04-11T13:08:33Z <p>I've a Javascript source that uses a Java class that defines a "delete" method (using jdk6 scripting). Since delete is a keyword, I cannot invoke that method. </p> <p>In JavaFX script any sequence of characters enclosed in &lt;> is treated as a lexical identifier. So you can use "insert", that is a keyword, as an identifier:</p> <pre><code>var textField = new javax.swing.JTextField(); textField.&lt;&lt;insert&gt;&gt;("Hello World"); </code></pre> <p>Javascript provides a way to protect keywords?</p> http://stackoverflow.com/questions/635434/best-way-to-consume-net-web-services-in-java 3 Best way to consume .NET web services in Java simon 2009-03-11T16:58:41Z 2009-03-20T23:42:13Z <p>I'm trying to consume some .NET web services using JAX-WS. I have generated the Java classes using the wsimport tool. However, when I try to use these (proprietary, not public) web services in Java, I notice that most of the methods and properties provided by the vendor in their C# examples are not avaiable in the generated classes (despite having not encountered any errors when generating the Java classes from WSDL file). Connecting to the web services also works basically.</p> <p>When I tried to generate a C# class using wsdl.exe from the .NET SDK, all the methods were properly generated.</p> <p>What would be the best way to consume the .NET web services so that the full functionality would be available in Java, and why does wsimport only generate a small subset of all the methods and properties described in the WSDL file?</p> <p>Example: in the WSDL file UserManagement.wsdl there is a snippet <pre><code> &lt;s:schema elementFormDefault=&quot;qualified&quot; targetNamespace=&quot;<a href="http://www.initechsystems.com/initech7/initechws/" rel="nofollow">http://www.initechsystems.com/initech7/initechws/</a>"> &lt;s:element name=&quot;UserSecurityContext&quot; type=&quot;s2:UserSecurityContext&quot;/&gt; &lt;s:complexType name=&quot;UserSecurityContext&quot;&gt; &lt;s:sequence&gt; &lt;s:element minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; name=&quot;Token&quot; type=&quot;s2:UserToken&quot;/&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;s:complexType name=&quot;UserToken&quot;&gt; &lt;s:sequence&gt; &lt;s:element minOccurs=&quot;0&quot; maxOccurs=&quot;1&quot; name=&quot;Value&quot; type=&quot;s:string&quot;/&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:schema&gt; </pre></code></p> <p>In C#, I can access the the UserSecurityContext followingly:</p> <p><pre><code> UserManagement userMgmt = new UserManagement(); userMgmt.UserSecurityContextValue = new SampleWS.UserRef.UserSecurityContext(); </pre></code> However, in Java I can create the UserManagement object</p> <p><pre><code> UserManagement userMgmt = new UserManagement(); </pre></code></p> <p>but the generated UserManagement object does not have any accessible object SecurityContext, nor getters or setters for such a private object.</p> http://stackoverflow.com/questions/645462/establishing-communication-between-java-client-and-net-server 1 Establishing communication between Java client and .NET server niko 2009-03-14T05:44:24Z 2009-03-14T05:54:24Z <p>Hi,</p> <p>I would like to create a server using .NET and Java client (Android application).</p> <p>The client will be connected to the server through mobile network so it's impossible to use tcp socket for two-way communication.</p> <p>I would like to develop a logic for client login:</p> <p>The client sends username and password to the server and server replies (connected/not connected). Then if client is connected it starts sending data stream using tcp sockets.</p> <p>So far I have looked at some of the tutorials for Java/.Net interoperability and remoting but still haven't found the solution for login logic described above.</p> <p>I would really appreciate any suggestion on how to create a logic for login or any good tutorial recommendation.</p> <p>Thanks!</p> http://stackoverflow.com/questions/208008/f-declared-namespace-is-not-available-in-the-c-project-or-visible-through-the-o 1 F# declared namespace is not available in the c# project or visible through the object browser Alexandre Brisebois 2008-10-16T10:04:57Z 2008-12-22T11:30:20Z <p>F# declared namespace is not available in the c# project or visible through the object browser.</p> <p>I have built a normal F# library project, but even after i build the project and reference it to my C# project, I am unable to access the desired namespace.</p> <p>I am also unable to see it in the object browser, i get an error telling me that it has not been built. I am running on the september release can someone point out my error ?</p> <p>F# Version 1.9.6.0</p> <p>(6) Edit : Referencing the dll directly has fixed my problem, referencing the project allows me to compile but the intellisence does not work. When the dll is directly referenced the intellisence works perfectly.</p> <p><hr /></p> <p>This is the code found in the .fs file</p> <pre><code>#light namespace Soilsiu.Core module public Process = open System.Xml.Linq let private xname (tag:string) = XName.Get(tag) let private tagUrl (tag:XElement) = let attribute = tag.Attribute(xname "href") attribute.Value let Bookmarks(xmlFile:string) = let xml = XDocument.Load(xmlFile) xml.Elements &lt;| xname "A" |&gt; Seq.map(tagUrl) let PrintBookmarks (xmlFile:string) = let list = Bookmarks(xmlFile) list |&gt; Seq.iter(fun u -&gt; printfn "%s" u) </code></pre> <p><hr /></p> <p>(5) Edit : Could ReSharper 4.0 be the problem?</p> <p>(4) Edit : When i say the Object browser is unable to read the resulting assembly, i mean that when I try to open the assembly in the object browser i get an error telling me the project has not yet been built. yet again i can read the assembly using reflector.</p> <p>(3) Edit : Reflector can Disassemble the dll but the Object Browser is unable to read it.</p> <p>(2) Edit : I have Upgraded my F# version to 1.9.6.2 and still the same consequence</p> <p>(1) Edit : I was able to Disassemble the dll to C# I get : (Everything seems to be fine here)</p> <pre><code>namespace Soilsiu.Core { [CompilationMapping(7)] public static class Crawler [CompilationMapping(7)] public static class Process } </code></pre> <p><hr /></p> <pre><code>[CompilationMapping(7)] public static class Process { // Methods static Process(); public static IEnumerable&lt;string&gt; Bookmarks(string xmlFile); public static void PrintBookmarks(string xmlFile); internal static string tagUrl(XElement tag); internal static XName xname(string tag); // Nested Types [Serializable] internal class clo@13 : FastFunc&lt;XElement, string&gt; { // Methods public clo@13(); public override string Invoke(XElement tag@9); } [Serializable] internal class clo@17 : FastFunc&lt;string, Unit&gt; { // Methods public clo@17(); public override Unit Invoke(string u); } } </code></pre> http://stackoverflow.com/questions/217852/saving-matlab-sparse-matrix-to-text-file 3 Saving matlab sparse matrix to text file Midhat 2008-10-20T09:17:04Z 2008-12-18T16:08:57Z <p>I have a 30000x14000 sparse matrix in matlab, which I need to use in another program. calling save won't write this as ascii (not supported). calling full() on this monster gets Out of Memory. How do i export it</p> <p>Matlab 7</p> http://stackoverflow.com/questions/206823/ruby-to-python-bridge 3 Ruby to Python bridge QAZ 2008-10-15T22:49:36Z 2008-10-16T08:50:10Z <p>Hello</p> <p>I am interested in getting some Python code talking to some Ruby code on Windows, Linux and possibly other platforms. Specificlly I would like to access classes in Ruby from Python and call their methods, access their data, create new instances and so on.</p> <p>An obvious way to do this is via something like XML-RPC or maybe CORBA but I would be interested in any other approaches.</p> <p>What have other people done to get code from Python and Ruby communicating with one another, either locally on the same system or remotely accross a network?</p> <p>Thanks in advance.</p>