Is ASP.Net Dynamic Data open source? - open-source

According to this article http://www.infoq.com/articles/role-open-source-asp.net Dynamic Data is open source. However I could not find System.Web.DynamicData on http://aspnetwebstack.codeplex.com/SourceControl/changeset/view/4284ca5270b9 and google search failed me as well.
Is Asp.Net Dynamic Data open source? If yes, can anyone provide the link to the repository please.

No, it is not open source. I think the reference in the article cited refers to open source projects built with DynamicData.dll, but not the dll itself.

Related

Html file to Aspose slide conversion

I am converting html file to aspose slides ini c#, if i use table the table is being extracted, but along with that, thehere is duplication of data..And when i am using other tags like the data is being extracted, ut the css stylings are not retained
I have observed your requirements and regret to share that at present the support for importing HTML table inside Aspose.Slides for .NET is unavailable. We have already logged an issue as new feature request with ID SLIDESNET-37059 in our issue tracking system to provide the requested support. We will share notification with you once the support will be available in API.
I am working as Support developer/ Evangelist at Aspose.
We are sorry for your inconvenience,

How to get change in HTML DOM in LabVIEW?

I am doing IOT related project in Labview using Arudino as hardware.
I was able switch off/on an led on Arudino by Pressing OFF/ON on website by using datasocket vi. Now what i want is to control the intensity of led from Website.
I have a range slider in my website and its real time value can be viewed in textarea,div,input type.
Is there any way i can get that real time value that is being changed in HTML DOM in Labview.
I know that datasocket vi returns the html source code but not the HTML DOM.
I dont want to use the Web Publishing Services as they dont work in my Laptop.
This is the link im referring for datasocket.
Datasocket Labview
You can do something like creating a web socket, but I expect the easiest thing is to use a web service. You can create one in LV and add a setLEDIntensity method to it and call it from your JS code. You can find a simple example here and in other documents in that community.
Use WebSocket API for LabVIEW to send and receive data from the web. This is the best option for you.
https://decibel.ni.com/content/docs/DOC-40572

jBPM6 - embed web designer in existing application

Are you aware of any guide / tutorial / example project that might help me embed the jBPM web designer in an existing web application?
Namely:
Which are the maven libraries I need to include?
Is it possible to deploy the designer specific components in the main application WAR (this is after all what embedded means)?
How can I access the designer? Is there a specific URL for it?
Thanks in advance for any hint.
I finally found out how to do it.
What you need is a running instance of the KIE workbench (seems this was once formerly called Drools Guvnor). You can get a demo system up and running very fast using the jBPM installer. A written guide on how to do it can be found here. In my case I downloaded the jbpm-6.1.0.Final-installer-full.zip from here.
As soon as you have the JBoss AS/WildFly with the KIE workbench running you can access it through http://localhost:8080/jbpm-console/.
Now each BPMN process saved in the KIE workshop seems to have a unique path which is also a Git repository URL. When you open a diagram and go to the metadata tab this path is listed as URI.
To display this BPMN process inside a custom-built web application with the jBPM Designer BPMN 2 editor, just create an iframe HTML element with that URL in it like the following example:
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Test</h1>
<p>Editor frame below:</p>
<iframe height='800' src='http://localhost:8080/jbpm-console?standalone=&path=git://master#jbpm-playground/HR/src/main/resources/hiring.bpmn2' width='1000'></iframe>
</body>
</html>
As soon as you load that page, the editor will be embedded into the page via that iframe. This works even with a static HTML page without a web server, so it should be quite versatile and your web application surely doesn't need to run inside the same JBoss AS/WildFly instance and doesn't even need to be written in Java.
What I did not figure out so far is how to create new BPMN processes via some kind of API, which could then be edited within the standalone web application. Also I don't know how access control is supposed to work yet.

How netty's html-style user guide doc generated?

I am reading The Netty Project 3.x User Guide and wondering how the doc generated, markdown or something else?
It used to use a tool developed by Trustin ApiViz

MS Access 2000 Report needs to be PDF format with URL hyperlinks

Working on an old MS Access 2000 database I didn't create. Has a working "projects report" which the client wants to send to prospects as a PDF document, replacing the currently-text-only project title with a title that is also a hyperlink linking to a web page (we can generate the URL programmatically).
Note: Access 2000 does not have a built-in "hyperlink" object for its reports as far as I know -- not sure if newer versions do or not.
Any ideas re: the best/quickest way to go about this? Development time/cost is a concern/constraint, but it's a long enough project list they'd rather not have to export the report to Word or something and manually create the URL links, exporting to PDF as a third step.
Check out this for creating the PDF.
http://www.lebans.com/reporttopdf.htm
As for having a URL in the PDF...I don't think it can be done. But I would wait for others to comment to be sure.
Seth