Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
zacbowling123 #1
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
-
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... -
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... -
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... -
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... -
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... -
j-integra_support@intrinsyc.com #2
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



Reply With Quote

