Has anyone worked out how to add custom UI "views" to the BizTalk administration console ?
For example custom nodes on the tree, or custom tabs on the Group Overview showing custom data eg state of services etc ?
My customer's system has a number of services and other parts which would be nice to give system administrators an single overview of the whole system from a single application, without having to duplicate the biztalk application console.
It is possible, though how easy depends on what you want to do. The BizTalk admin console (at least up to R2, not sure bout 2009) was based on MMC 2.0, so you need to use the MMC SDK and do a bunch of COM interop stuff.
There's a sample on it in the SDK: Extending the BizTalk Server Administration Console:
This sample demonstrates how to use
the Microsoft Management Console (MMC)
2.0 Software Development Kit (SDK) to extend the functionality of the
BizTalk Server Administration console
with your own custom menu items, node
items, new data items and views, or
different views of existing data.
Related
I have a requirement from HR to make a process managed online. There is a workflow involved, I was checking my options and found out that we can make custom workflow on Sharepoint Foundation and deploy it for use. I would like to use the ASP.net for user interface and Sharepoint for workflow and data storage.
Is this possible at all or Sharepoint Foundation not adequate?
Can I create reports on SSRS from the data stored in Sharepoint lists?
You can use Workflow Manager 1.0 for the creation of your Workflow without even using SharePoint.
We have a standalone .net application, this application is nothing to do with Tridion implementation. But due to some strange suggestion from client we need to store some content (html fragment) in Tridion and publish it to broker, once this content is available in broker database we want to fetch it and show in .net application. Basically this content will a small block under right column e.g. like Login block (with user name password text box and some captions)
Is there any way to do it, also do we need to put storage config in .net applications config directory?
We are using Tridion 2011 SP1
The easiest way is to spin up the Tridion Content Delivery Web Service, which is based on OData, point it to your Tridion Database, and then grab the content from there from your other website.
I've written this article some time ago about how to get the web service up and running, it is focused on Java, but the steps are pretty similar for .NET. There is a prepackaged .NET web service you can just deploy on IIS, which then only needs the configuration part (cd_storage_conf.xml).
BTW - There is a Tridion-specific StackExchange site: http://tridion.stackexchange.com
I need to create an ASP.NET application that will allow user to create the workflow on the fly and implement it. The user should be able to create the workflow as we create a UML class diagram in case tool. That means user should have an interface to drag drop multiple workflow objects and setting various steps and process.
I will be using:
C# 4.0 ASP.NET, .NET 2010
I need to know how to provide such functionality and which tool I should use for allowing the user to create such runtime workflow and save.
Thanks!
To run workflow foundation designer on the web you will need to look toward XBAP hosting of the WF runtime. Checkout mtaulty's blog.
We have many custom built web applications (both external & internal) written in Classic ASP and ASP.NET 2.0 technologies. Internal users can upload files to these websites, which can then be viewed by External Users. In some cases, external users can upload documents as well.
Screenshot #1 gives a brief idea about the existing architecture.
Internal users upload documents to custom web applications. These documents are stored in a folder structure defined under the web application.
Meta data and user permissions like who can access the documents are stored in SQL Server database.
The same set of documents that are being uploaded to custom web applications also exist in SharePoint. However, the custom web applications are unaware of SharePoint. So, users have to download them from SharePoint and then Upload it to the custom web applications. We are currently using SharePoint 2010.
External users can also upload documents to the custom web applications. The meta data and user permissions of the document are saved into database based on the user who is uploading the document.
Screenshot #1:
Screenshot #2 shows the architecture that I am trying to achieve. I have done very little SharePoint development. Mostly, I have used the SharePoint web services to retrieve some list content but nothing more than that. Our future Custom Web Applications might be written using ASP.NET MVC. Please find the questions after the screenshot.
Screenshot #2:
Here are my questions:
I would like to have internal users continue to upload and maintain their documents in SharePoint. User security model is already defined in the SQL Server database. This security permissions should be available in the SharePoint document properties so users can choose who can view the document from the custom web applications. How can I achieve this? Should I have to copy the SQL Server user permissions info to SharePoint?
I believe that SharePoint Web Services or Business Connectivity Services (BCS) can help in retrieving the document and its related info from SharePoint. Which one of these would better suit this scenario?
Custom web app should display only the committed versions of the documents. If a user has checked out a document in SharePoint to make any changes, that checked out version of the document should not be visible to External users. Is that possible?
Has anyone tried this approach? Are there any pitfalls with this model? Are there any performance concerns with this design?
Will this design be of any hindrance if I rewrite our existing applications using ASP.NET MVC?
Is it possible to make use of SharePoint search feature within the custom web application (ASP.NET Web Forms / ASP.NET MVC)? In other words, can I send search criteria from custom web app and have SharePoint do the search and return the results back to custom web app?
I really appreciate your inputs.
Thanks in advance.
Question 1
Hard to say without having more details. So I'm going to assume that you currently use Active Directory for your authentication store. So this means that your SQL Server defines a list of roles and then has assigned memberships to these roles. I'm going to assume that your assigned membership is to AD users or groups. If this is true then I think your on the right path to push your permissions from SQL Server into SharePoint. SharePoint's API will accommodate what you need to do, however SharePoint has no built into mechanism for syncing your permission changes so that means you end up writing a whole lot of plumbing code. I would recommend that you research products that can handle the synchronization for you. Microsoft MIIS (I believe it is called Forefront Identity Management now) offer a set of architecture patterns that you should investigate.
Question 2
SharePoint Web Services or the SharePoint Client Access Services should work fine. I would highly recommend that use a proxy pattern to isolate your application from SharePoint calls (so you can isolate your application from SharePoint upgrades and potential content management server changes).
Question 3
Yes, that is possible. If you are using the publishing features of SharePoint Server (NOT SharePoint Foundation) you will have an easy way of identifying the current published version. Otherwise the service account you query with should be setup so it can only read published versions then SharePoint will automatically trim your query.
Question 4
I have not personally tried this design, but I really like the concept of creating a content management domain and then putting an abstract service layer on top of it. Will you have scale problems, depends on how you configure SharePoint and your applications. You can do it right or wrong. An depth answer between the two cannot be covered here. My one piece of advice is to make sure you plan for caching in your service interfaces (cache, cache, cache).
Question 5
Not if you implement it as a Service Layer. You would just use a repository pattern to call the service and return back entities for your model.
Question 6
Yes, Search is exposed via an API so it can be wrapped in a service layer too.
Good luck and feel free to contact me directly for more in depth discussion.
I've implemented a website for a client that holds editable articles.
I used ASP.NET MVC and made the content manageable by storing it in a 'Content' table in the database and creating a simple Admin section of the site, where the user can add/edit/remove content and choose where on the site it will appear.
Now the client has come back wanting full document management features. They want version control, permissions, PDF export and simple workflow on all content items.
I'm debating in my head how to do this.
I found one question where a lot of people recommended WSS (Windows Sharepoint Services).
The thing is, I want to build the admin interface myself and make it really easy for the client to use.
Will WSS allow me to do this?
WSS has functionality for storing and versioning of documents, and workflow.
I don't think that PDF conversion is not part of WSS, but you could use a 3rd party tool.
You could use the WSS UI for the Admin site, placing documents in spesific document libraries. But for your ASP.NET MVC site you could access WSS via web services (WCF).