|
|
|
|
fmDotNet is an open source project led by Wim Decorte. You can find out more at SourceForge. fmDotNet makes it easy to exchange data with FileMaker from any .NET project (C#, VB.NET). Not only dynamic web pages (ASP.NET) but also desktop applications and hopefully soon from Windows Mobile applications (PDAs and phones). Using FileMaker's XML publishing you can extract data using a URL like this (finding records where the content of someField matches someValue on a layout named someLayout in file someFile):
The challenge is in getting the URL right but even more in handling the XML data that FileMaker returns and extracting meaningful data from it:
With fmDotNet this process gets a lot simpler, it takes just a couple of lines of code to talk to FMSA, request the data and return a standard .NET DataSet object. in C#
in VB.NET
|
|
|
|