From: Steve . <mo...@ho...> - 2012-11-18 19:23:45
|
I have an ontology on Knoodl that I need to integrate into an ASP.Net MVC4 web application using ReadAsync method of HttpClient ... (webApi using .Net 4.5) How to fix the exception that I get ?? No MediaTypeFormatter is available to read an object of type 'JArray' from content with media type 'application/sparql-results+json Pointers to how to add a custom MediaTypeFormatter to my solution, please ... or any other way to get this done ?? Hate to have to resort to XML when Json is an option. Articles like this http://byterot.blogspot.com/2012/04/aspnet-web-api-series-part-5.html are helpful, but a bit confusing to me. Thanks,Steve |
From: Steve . <mo...@ho...> - 2012-12-04 05:16:49
|
Anyone else using MVC3 or 4 and processing the 'application/sparql-results+json' media type in a media type formatter .... to return a POCO to the controller ? I'm able to return the Json in the Controller this way with this code: var sparqlTask = response.Content.ReadAsStringAsync(); But that requires processing the Json in the controller Since I could not get the media-formatter working --- the conventional approach threw an exception ... note the highlighted code below that I was not able to get to work ... Any members who call Sparql endpoints able to convert json to POCO in a custom media formatter in ASP.Net MVC ??? Thanks, Steve Here the hack that I'd like to replace with a MediaFormatter var task = client.GetAsync(theURL) .ContinueWith((taskWithmsg) => { var response = taskWithmsg.Result; //var sparqlTask = response.Content.ReadAsAsync<operas>(); //var sparqlTask = response.Content.ReadAsAsync<SparqlFormatter>(); var sparqlTask = response.Content.ReadAsStringAsync(); var sparqlObject = sparqlTask.Result; JObject root = JObject.Parse(sparqlObject); JArray _operas = (JArray)root["results"]["bindings"]; sparqlTask.Wait(); model.AddRange( (from JObject jo in _operas select new operas { Opera = jo["Opera"]["value"].ToString(), RingCycleOpera = jo["RingCycleOpera"]["value"].ToString() } )); }); task.Wait(); return View(model); } From: mo...@ho... To: dot...@li... Date: Sun, 18 Nov 2012 14:23:34 -0500 Subject: [dotNetRDF-Develop] ?? MediaTypeFormatter for 'application/sparql-results+json I have an ontology on Knoodl that I need to integrate into an ASP.Net MVC4 web application using ReadAsync method of HttpClient ... (webApi using .Net 4.5) How to fix the exception that I get ?? No MediaTypeFormatter is available to read an object of type 'JArray' from content with media type 'application/sparql-results+json Pointers to how to add a custom MediaTypeFormatter to my solution, please ... or any other way to get this done ?? Hate to have to resort to XML when Json is an option. Articles like this http://byterot.blogspot.com/2012/04/aspnet-web-api-series-part-5.html are helpful, but a bit confusing to me. Thanks, Steve ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ dotNetRDF-develop mailing list dot...@li... https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |
From: Rob V. <rv...@do...> - 2012-12-04 18:28:26
|
Hi Steve Sorry for the delay in replying I've never touched MVC myself and I'm not sure that any of our other developers our, I coded up a experimental MediaTypeFormatter (https://bitbucket.org/dotnetrdf/mvc-helpers) for SPARQL results I have no idea if it will work nor do I have time to teach myself enough ASP.Net MVC to test it properly. If it works/doesn't work please let us know, if the latter consider forking the code and experimenting with it to get it into a working state and sending us a pull request. If this proves useful we'll consider pulling it into our main project and making it available in our official distributions, NuGet etc. Regards, Rob Vesse From: "Steve ." <mo...@ho...> Reply-To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Date: Monday, December 3, 2012 9:16 PM To: "dot...@li..." <dot...@li...> Subject: [dotNetRDF-Develop] good to see activity here ... anyone have suggestion for me re:Media Type Formatter > > > > Anyone else using MVC3 or 4 and processing the > 'application/sparql-results+json' media type in a media type formatter .... to > return a POCO to the controller ? > > I'm able to return the Json in the Controller this way with this code: > >> var sparqlTask = response.Content.ReadAsStringAsync(); > > But that requires processing the Json in the controller > > Since I could not get the media-formatter working --- the conventional > approach threw an exception ... note the highlighted code below that I was not > able to get to work ... > > Any members who call Sparql endpoints able to convert json to POCO in a custom > media formatter in ASP.Net MVC ??? > > Thanks, > > Steve > > Here the hack that I'd like to replace with a MediaFormatter > > var task = client.GetAsync(theURL) > .ContinueWith((taskWithmsg) => > { > > var response = taskWithmsg.Result; > //var sparqlTask = > response.Content.ReadAsAsync<operas>(); > //var sparqlTask = > response.Content.ReadAsAsync<SparqlFormatter>(); > var sparqlTask = response.Content.ReadAsStringAsync(); > var sparqlObject = sparqlTask.Result; > JObject root = JObject.Parse(sparqlObject); > JArray _operas = (JArray)root["results"]["bindings"]; > sparqlTask.Wait(); > model.AddRange( > (from JObject jo in _operas > select new operas > { > Opera = jo["Opera"]["value"].ToString(), > RingCycleOpera = > jo["RingCycleOpera"]["value"].ToString() > } > )); > }); > task.Wait(); > return View(model); > > } > > > From: mo...@ho... > To: dot...@li... > Date: Sun, 18 Nov 2012 14:23:34 -0500 > Subject: [dotNetRDF-Develop] ?? MediaTypeFormatter for > 'application/sparql-results+json > > I have an ontology on Knoodl that I need to integrate into an ASP.Net MVC4 web > application using ReadAsync method of HttpClient ... (webApi using .Net 4.5) > > How to fix the exception that I get ?? > >> No MediaTypeFormatter is available to read an object of type 'JArray' from >> content with media type 'application/sparql-results+json > > > Pointers to how to add a custom MediaTypeFormatter to my solution, please ... > or any other way to get this done ?? Hate to have to resort to XML when Json > is an option. > > Articles like this > > http://byterot.blogspot.com/2012/04/aspnet-web-api-series-part-5.html > > > are helpful, but a bit confusing to me. > > Thanks, > Steve > > > > ------------------------------------------------------------------------------ > Monitor your physical, virtual and cloud infrastructure from a single web > console. Get in-depth insight into apps, servers, databases, vmware, SAP, > cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from > $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov > _______________________________________________ dotNetRDF-develop mailing list > dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop > > ------------------------------------------------------------------------------ > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely > access PCs and mobile devices and provide instant support Improve your > efficiency, and focus on delivering more value-add services Discover what IT > Professionals Know. Rescue delivers > http://p.sf.net/sfu/logmein_12329d2d__________________________________________ > _____ dotNetRDF-develop mailing list dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |
From: Steve . <mo...@ho...> - 2012-12-04 22:49:10
|
Thanks, Rob .. I'm planning on working on your suggestion in a day or two ... Haven't taken a deep dive into your code ... is it based on your API or is it native C# ( see my ? below re compatablity with .net 4.5 ) I'm also waiting to get a response on my question from the author of this blog post: http://weblogs.asp.net/gunnarpeipman/archive/2012/04/20/asp-net-web-api-extending-content-negotiation-with-new-formats.aspx I'm still not sure if your package is right for my case ... seems that there have been significant revisions since I last checked ... I'm working with .Net 4.5 ... any compatability issues with dotNetRDF and VS2012 / .net 4+ It will be good to know if others on this list are using Asp.Net MVC and the Web API. More soon .. Steve Date: Tue, 4 Dec 2012 10:27:25 -0800 From: rv...@do... To: dot...@li... Subject: Re: [dotNetRDF-Develop] good to see activity here ... anyone have suggestion for me re:Media Type Formatter Hi Steve Sorry for the delay in replying I've never touched MVC myself and I'm not sure that any of our other developers our, I coded up a experimental MediaTypeFormatter (https://bitbucket.org/dotnetrdf/mvc-helpers) for SPARQL results I have no idea if it will work nor do I have time to teach myself enough ASP.Net MVC to test it properly. If it works/doesn't work please let us know, if the latter consider forking the code and experimenting with it to get it into a working state and sending us a pull request. If this proves useful we'll consider pulling it into our main project and making it available in our official distributions, NuGet etc. Regards, Rob Vesse |
From: Rob V. <rv...@do...> - 2012-12-04 23:20:02
|
It's based on the dotNetRDF API, there should be no problem using it with .Net 4.5 as far as I am aware Rob From: "Steve ." <mo...@ho...> Reply-To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Date: Tuesday, December 4, 2012 2:49 PM To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Subject: [dotNetRDF-Develop] ] good to see activity here ... anyone have suggestion for me re:Media Type Formatter > Thanks, Rob .. > > I'm planning on working on your suggestion in a day or two ... > > * Haven't taken a deep dive into your code ... is it based on your API or is > it native C# ( see my ? below re compatablity with .net 4.5 ) > > I'm also waiting to get a response on my question from the author of this blog > post: > > http://weblogs.asp.net/gunnarpeipman/archive/2012/04/20/asp-net-web-api-extend > ing-content-negotiation-with-new-formats.aspx > > I'm still not sure if your package is right for my case ... seems that there > have been significant revisions since I last checked ... > >> * I'm working with .Net 4.5 ... any compatability issues with dotNetRDF and >> VS2012 / .net 4+ > > It will be good to know if others on this list are using Asp.Net MVC and the > Web API. > > More soon .. > > Steve > > > > Date: Tue, 4 Dec 2012 10:27:25 -0800 > From: rv...@do... > To: dot...@li... > Subject: Re: [dotNetRDF-Develop] good to see activity here ... anyone have > suggestion for me re:Media Type Formatter > > Hi Steve > > Sorry for the delay in replying > > I've never touched MVC myself and I'm not sure that any of our other > developers our, I coded up a experimental MediaTypeFormatter > (https://bitbucket.org/dotnetrdf/mvc-helpers) for SPARQL results > > I have no idea if it will work nor do I have time to teach myself enough > ASP.Net MVC to test it properly. If it works/doesn't work please let us know, > if the latter consider forking the code and experimenting with it to get it > into a working state and sending us a pull request. > > If this proves useful we'll consider pulling it into our main project and > making it available in our official distributions, NuGet etc. > > Regards, > > Rob Vesse > > > > ------------------------------------------------------------------------------ > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely > access PCs and mobile devices and provide instant support Improve your > efficiency, and focus on delivering more value-add services Discover what IT > Professionals Know. Rescue delivers > http://p.sf.net/sfu/logmein_12329d2d__________________________________________ > _____ dotNetRDF-develop mailing list dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |
From: Steve . <mo...@ho...> - 2013-01-03 20:09:13
|
It's been quite an adventure evaluating products and technologies for creating / maintaining technologies and products to support the Linked Data / RDFa application I am creating. Protege was my initial development tool, but when I needed to create SPARQL endpoints I moved my schemas and instance files to Knoodl. My app needed to take advantage of blank nodes so I had to move from Protege to Top Braid Free edition. I'm now looking into an alternative to Knoodl ... tho I was able to create an ASP.Net MVC4 - WebAPI solution that pulled information from Knoodl SPARQL endpoints. I've looked into the various backends that are supported by the dotNetRDF components ... and am now about to make a commitment to AllegroGraph ... tho I'm still not clear on how to replace uploaded schemas and instance data. Bottom line ... writing this now to poll the community to get sentiment on how AllegroGraph works with dotNetRDF ( to jump start my work I am currently working with Hosted Allegro Graph ( WebView 4.7) ... Also interested in networking with any dotNetRDF users in the New York metro area ... especially any of you who -- like me -- particiapte in the LOTICO Semantic Web meetup. I'm also developing collaboration spaces using the Orchard CMS www.orchardproject.net ... not quite ready to dive into what it will take to integrate RDFa semantics into my Orchard apps ... but I will be creating a blogging platform and discussion forum using Orchard that will focus on Semantic Web solutions on Microsoft platforms. More to come on that .. but for now ... am interested in feedback on AllegroGraph and connecting with other developers in the NY Metro area. Happy new year to all ... and special thanks to the organizers of this communtiy .. My best ! Steve Mintz |
From: Steve . <mo...@ho...> - 2013-01-04 07:19:29
|
Team .... follows is the gist of my note to the AllegroGraph support team .... bottom line ... has anyone been successful connecting to a WebView repository ... or do I have to go with their PAAS EC2 dedicated instance ? Thanks,Steve ===== excerpt from note to Franz / AllegroGraph support ======== Still a steep learning curve ... I don't seem to be able to connect to my WebView 4.7 platform via dotNetRdf ... I get a 404 Not Found Error when I attempt to process triples in my repository using this syntax: AllegroGraphConnector agraph = new AllegroGraphConnector("http://xxx.allegrograph.net:10035", "my-catalog","my-repository"); That syntax is in conformance with the API: http://www.dotnetrdf.org/api/index.asp?Topic=VDS.RDF.Storage.AllegroGraphConnector where the parameters are BaseURI, CatalogID, StoreID There is another overload for the AllegroGraphConnector that has a 4th parameter ... proxy ... could that be the issue that I am running into ?? ... see this documentation: http://www.dotnetrdf.org/api/index.asp?Topic=VDS.RDF.Storage.AllegroGraphConnector From: mo...@ho... To: dot...@li... Date: Thu, 3 Jan 2013 15:09:06 -0500 Subject: [dotNetRDF-Develop] ?? AllegroGraph users ... It's been quite an adventure evaluating products and technologies for creating / maintaining technologies and products to support the Linked Data / RDFa application I am creating. Protege was my initial development tool, but when I needed to create SPARQL endpoints I moved my schemas and instance files to Knoodl. My app needed to take advantage of blank nodes so I had to move from Protege to Top Braid Free edition. I'm now looking into an alternative to Knoodl ... tho I was able to create an ASP.Net MVC4 - WebAPI solution that pulled information from Knoodl SPARQL endpoints. I've looked into the various backends that are supported by the dotNetRDF components ... and am now about to make a commitment to AllegroGraph ... tho I'm still not clear on how to replace uploaded schemas and instance data. Bottom line ... writing this now to poll the community to get sentiment on how AllegroGraph works with dotNetRDF ( to jump start my work I am currently working with Hosted Allegro Graph ( WebView 4.7) ... Also interested in networking with any dotNetRDF users in the New York metro area ... especially any of you who -- like me -- particiapte in the LOTICO Semantic Web meetup. I'm also developing collaboration spaces using the Orchard CMS www.orchardproject.net ... not quite ready to dive into what it will take to integrate RDFa semantics into my Orchard apps ... but I will be creating a blogging platform and discussion forum using Orchard that will focus on Semantic Web solutions on Microsoft platforms. More to come on that .. but for now ... am interested in feedback on AllegroGraph and connecting with other developers in the NY Metro area. Happy new year to all ... and special thanks to the organizers of this communtiy .. My best ! Steve Mintz ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. ON SALE this month only -- learn more at: http://p.sf.net/sfu/learnmore_122712 _______________________________________________ dotNetRDF-develop mailing list dot...@li... https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |
From: Rob V. <rv...@do...> - 2013-01-05 10:51:16
|
Hi Steve The syntax looks correct though as I said in my previous email I've never used the 4.x versions personally. My question would be whether WebView is on the same port as the database server or not? i.e. is it running on the same port or on a different port? It looks from their documentation like it should be on the same port so your code looks sane. If the port was plain wrong I'd expect a host not found error rather than an actual HTTP error anyway. A 404 from the server typically means that either the catalog or repository name are wrong, it may also mean that you don't have permissions to access that catalog/repository (though that should usually be a 401 or 403 error instead). The URL built internally to talk to AllegroGraph has the following format, can you substitute in the relevant details and try entering this in your browser directly: baseUri/catalogs/catalogID/repositories/repositoryID So in your example it would be: http://xxx.allegrograph.net:10035/catalogs/my-catalog/repositories/my-reposi tory Putting that in your browser should yield the WebView interface for the repository, if you get a 404 then the catalog/repository does not exist and you need to create it. By the way you can use the AllegroGraphServer [1] to manage the repositories within a given catalog including creating new repositories. One other thing you can try while debugging is to enable the static property Options.HttpDebugging which will cause dotNetRDF to print out messages about HTTP activity to the Console. You can also enable Options.HttpFullDebugging to have it dump HTTP responses direct to the console but this will consume the responses and cause other errors as a by-product. If you are still experiencing problems let us know, if you figure out what the problem is yourself please let us know as well so others can benefit from your experience. Regards, Rob [1] http://www.dotnetrdf.org/api/index.asp?Topic=VDS.RDF.Storage.Management.Alle groGraphServer From: "Steve ." <mo...@ho...> Reply-To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Date: Friday, January 4, 2013 7:19 AM To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Subject: [dotNetRDF-Develop] AllegroGraph -- 404 when accessing WebView 4.7 > Team .... follows is the gist of my note to the AllegroGraph support team .... > bottom line ... has anyone been successful connecting to a WebView repository > ... or do I have to go with their PAAS EC2 dedicated instance ? > > Thanks, > Steve > > ===== excerpt from note to Franz / AllegroGraph support ======== > > > Still a steep learning curve ... I don't seem to be able to connect to my > WebView 4.7 platform via dotNetRdf ... > > I get a 404 Not Found Error when I attempt to process triples in my repository > using this syntax: > > AllegroGraphConnector agraph = new > AllegroGraphConnector("http://xxx.allegrograph.net:10035", > "my-catalog","my-repository"); > > That syntax is in conformance with the API: > > >>> >>> http://www.dotnetrdf.org/api/index.asp?Topic=VDS.RDF.Storage.AllegroGraphCon >>> nector > > where the parameters are BaseURI, CatalogID, StoreID > > > There is another overload for the AllegroGraphConnector that has a 4th > parameter ... proxy ... could that be the issue that I am running into ?? > ... see this documentation: > >>> http://www.dotnetrdf.org/api/index.asp?Topic=VDS.RDF.Storage.AllegroGraphCon >>> nector > > > > From: mo...@ho... > To: dot...@li... > Date: Thu, 3 Jan 2013 15:09:06 -0500 > Subject: [dotNetRDF-Develop] ?? AllegroGraph users ... > > It's been quite an adventure evaluating products and technologies for creating > / maintaining technologies and products to support the Linked Data / RDFa > application I am creating. > > Protege was my initial development tool, but when I needed to create SPARQL > endpoints I moved my schemas and instance files to Knoodl. > > My app needed to take advantage of blank nodes so I had to move from Protege > to Top Braid Free edition. > > I'm now looking into an alternative to Knoodl ... tho I was able to create an > ASP.Net MVC4 - WebAPI solution that pulled information from Knoodl SPARQL > endpoints. > > I've looked into the various backends that are supported by the dotNetRDF > components ... and am now about to make a commitment to AllegroGraph ... tho > I'm still not clear on how to replace uploaded schemas and instance data. > > Bottom line ... writing this now to poll the community to get sentiment on how > AllegroGraph works with dotNetRDF ( to jump start my work I am currently > working with Hosted Allegro Graph ( WebView 4.7) ... > > Also interested in networking with any dotNetRDF users in the New York metro > area ... especially any of you who -- like me -- particiapte in the LOTICO > Semantic Web meetup. > > I'm also developing collaboration spaces using the Orchard CMS > www.orchardproject.net <http://www.orchardproject.net> ... not quite ready to > dive into what it will take to integrate RDFa semantics into my Orchard apps > ... but I will be creating a blogging platform and discussion forum using > Orchard that will focus on Semantic Web solutions on Microsoft platforms. > > More to come on that .. but for now ... am interested in feedback on > AllegroGraph and connecting with other developers in the NY Metro area. > > Happy new year to all ... and special thanks to the organizers of this > communtiy .. > > My best ! > > Steve Mintz > > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, > Windows 8 Apps, JavaScript and much more. Keep your skills current with > LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and > experts. ON SALE this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122712 > _______________________________________________ dotNetRDF-develop mailing list > dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop > > ------------------------------------------------------------------------------ > Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and much more. > Get web development skills now with LearnDevNow - 350+ hours of step-by-step > video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only -- > learn more at: > http://p.sf.net/sfu/learnmore_122812__________________________________________ > _____ dotNetRDF-develop mailing list dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |
From: Rob V. <rv...@do...> - 2013-01-05 10:29:06
|
Hi Steve Personally I've had relatively good experiences of using AllegroGraph with dotNetRDF in the past having used it heavily for some of my PhD research a few years ago. That was with AllegroGraph 3.x though I know from past correspondence with others in the community that it should work with 4.x without problem, though I've never tried this myself. As you reported in your subsequent email (which I'll reply to separately) the AllegroGraphConnector is the way to go, I would recommend writing your code against the IStorageProvider or IQueryableStorage interfaces as far as possible as this will make it easier for you to switch it out for another store in the future if necessary. I don't know of anyone specifically in the NY area using dotNetRDF though I do participate in the Lotico community over here in the Bay Area and back in London as and when I can. Thanks for the feedback, Rob From: "Steve ." <mo...@ho...> Reply-To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Date: Thursday, January 3, 2013 8:09 PM To: dotNetRDF Developer Discussion and Feature Request <dot...@li...> Subject: [dotNetRDF-Develop] ?? AllegroGraph users ... > It's been quite an adventure evaluating products and technologies for creating > / maintaining technologies and products to support the Linked Data / RDFa > application I am creating. > > Protege was my initial development tool, but when I needed to create SPARQL > endpoints I moved my schemas and instance files to Knoodl. > > My app needed to take advantage of blank nodes so I had to move from Protege > to Top Braid Free edition. > > I'm now looking into an alternative to Knoodl ... tho I was able to create an > ASP.Net MVC4 - WebAPI solution that pulled information from Knoodl SPARQL > endpoints. > > I've looked into the various backends that are supported by the dotNetRDF > components ... and am now about to make a commitment to AllegroGraph ... tho > I'm still not clear on how to replace uploaded schemas and instance data. > > Bottom line ... writing this now to poll the community to get sentiment on how > AllegroGraph works with dotNetRDF ( to jump start my work I am currently > working with Hosted Allegro Graph ( WebView 4.7) ... > > Also interested in networking with any dotNetRDF users in the New York metro > area ... especially any of you who -- like me -- particiapte in the LOTICO > Semantic Web meetup. > > I'm also developing collaboration spaces using the Orchard CMS > www.orchardproject.net <http://www.orchardproject.net> ... not quite ready to > dive into what it will take to integrate RDFa semantics into my Orchard apps > ... but I will be creating a blogging platform and discussion forum using > Orchard that will focus on Semantic Web solutions on Microsoft platforms. > > More to come on that .. but for now ... am interested in feedback on > AllegroGraph and connecting with other developers in the NY Metro area. > > Happy new year to all ... and special thanks to the organizers of this > communtiy .. > > My best ! > > Steve Mintz > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, > Windows 8 Apps, JavaScript and much more. Keep your skills current with > LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and > experts. ON SALE this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122712__________________________________________ > _____ dotNetRDF-develop mailing list dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-develop |