ColdFusion and .NET Integration HAS ARIVED!

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default ColdFusion and .NET Integration HAS ARIVED!

    This is the coolest thing ever. We currently have lots of ColdFusion
    development on our frontend and tons of .NET on the backend, but all of it was
    disconnected except via MSSQL stored procs. Not any longer!! You can read more
    about that on my blog ([url]http://www.zacbowling.com/[/url])! I found this think called
    Visual MainWin by Mainsoft. They offer a product that does .NET CLI byte code
    conversion to Java byte code on the fly inside Visual Studio. Its main focus is
    supporting ASP.NET on J2EE servers but it works amazingly well for this purpose
    as well. However its not true, 100% .NET because the class libraries are
    written using a port of the Mono projects class libraries (a project I'm an
    official contributor on) but 99% of the functionality is there and it works on
    any platform that J2EE will. This is the best solution I have found ever!
    MainWin has quickly converted everything over for all our business objects and
    libraries in a form that is callable from ColdFusion without making use of SOAP
    or COM. We can now bring our development teams together! ITS SO FREAKING COOL!

    Check it out:
    [url]http://dev.mainsoft.com/[/url]
    [url]http://www.mainsoft.com/[/url]

    Zac Bowling
    [url]http://www.zacbowling.com[/url]

    <cfscript>
    nConnb = CreateObject('java', 'system.Data.SqlClient.SqlConnection');
    activator = CreateObject('java', 'system.Activator');

    // HACK! No 'new' creator in CFML
    p = ArrayNew(1);
    ArrayAppend(p,'..snip..;user id=xxx;password=xxx;data source=xxx;initial
    catalog=xxxx;');

    nConn = activator.CreateInstance(nConnb._GetType(),p);

    nConn.Open();

    nComm = nConn.CreateCommand();

    nComm.set_CommandText( "SELECT current_timestamp;" );

    cv = nComm.ExecuteScalar ();

    </cfscript>
    <cfdump var="#cv#">

    zacbowling123 Guest

  2. Similar Questions and Discussions

    1. Flash coldfusion integration
      I'm trying to insert a record in a database using coldfusion and a flash form, coldfusion is receiving the field from flash, but the cfquery tag is...
    2. Flex/ColdFusion Integration
      I am quite new to Flex and am looking for someone who can point me to a working example or put together a very simple sample project that sends data...
    3. Coldfusion Flash Integration
      I m a coldfusion developer. I really want to integrate flash and coldfusion. I know basics of flash, never used it for interactivity with db. Please...
    4. UPS Coldfusion Integration
      I need to integrate my shopping cart with UPS to get on the fly shipping rates. UPS used an XML system. (my knowledge of XML is dodgy at best.) Is...
    5. coldfusion mx and fck editor integration
      Hi, was just wondering if anybody could help me out with something . i am attempting to get fck editor to work with coldfusion mx. Initially i had...
  3. #2

    Default Re: ColdFusion and .NET Integration HAS ARIVED!

    Hi Zac,

    If you are looking for a Java/.NET interoperability tool, I would also
    like to introduce J-Integra Espresso which contains an Object Request
    Broker (ORB) written in pure C# and thus connects Java and CORBA with
    the .NET world. It supports ".NET to J2EE", "J2EE to .NET", ".NET to
    CORBA" and "CORBA to .NET". For a free evaluation, visit our website at
    [url]http://j-integra.intrinsyc.com/[/url]

    FYI, J-Integra Espresso is the sibling product of J-Integra for COM
    which has been incorporated in ColdFusion to connect Java and COM.

    Regards,

    Raymond HE
    Intrinsyc Software International, Inc.
    J-Integra Interoperability Solutions
    [url]http://j-integra.intrinsyc.com/[/url]
    When Web Services are not enough

    j-integra_support@intrinsyc.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139