Is there any web UI for talend in which we could define mappings from the WEB UI only.
In this way a user can provide mappings at run-time.
Unfortunately no by design. All development work is centralized in the Talend Studio a heavy IDE based on Eclipse. However in the Enterprise versions of Talend, mappings built in the studio can be managed by the WEB UI: Talend Admin Center. Any configuration fed into a mapping can be updated there without having to go into Studio.
Related
I need to develop an application for my distributed computing class, with one central server and multiple graphical clients. I was thinking of trying WCF for this, since I am already familiar with making .NET standalone desktop applications using Windows Forms or WPF.
Since I have never worked with WCF before, I am trying to follow a tutorial posted on MSDN, which has defining a service contract as its first major step.* Part of this involves creating a WCF Service Library project, which is supposed to be available as a template under the language of my choice (I am going to use C# here). However, I do not see this project template listed as an option in the new project dialog, and looking for WCF in the search bar returns no results.
How can I make this project template available for use in Visual Studio 2017?
* It should probably be noted that the tutorial mentions that it is written with Visual Studio 2012 in mind. Has anything changed since then that I should be aware of as far as the tutorial is concerned?
Open the installer, choose Individual Components and scroll down to Development Activities. Check the WCF checkbox:
I ended up re-running the Visual Studio Installer to modify my current setup. WCF is not explicitly listed anywhere, but I figured it might have been included as part of the .NET Core or ASP.NET workloads (which were not marked for installation the first time around). After adding these workloads to my installation and restarting Visual Studio 2017, I can now see the WCF project templates listed under C#.
Has anyone managed to find an automation framework/tool that can inspect Pivotal CRM? I have looked at numerous frameworks and tools and none are able to hook into the application to provide any useful information. QTP has come the closest with the ability to locate most buttons, but still a lot of items that are displayed are not accessible.
As I can see Pivotal CRM is .NET application. So you may use Coded UI Tests feature in MS Visual Studio or use Teststack.White framework that is based on UI Automation API.
I am trying to figure out a better approach for the production deployment of our asp.net MVC applications. At present we deploy the application using the "Publish" feature in visual studio. I have listed our current process below.
1-> Open the latest code in Visual studio.
2-> Right click on the web project and Publish it to a folder using the "release" configuration.
3-> Copy the contents of this folder to the production machine.
I am not sure if this is the right approach. Are there any better alternatives available? I cannot use deployment tools such as "Octopus deploy" as my organization doesn't want to spend money on them.
does anyone have any recommendation for a better process?
Thanks
Suneeth
Octopus deploy brings a lot of control and visibility to the deployment chain. It also handles the hub and spoke model with its Server and agents.
So, to do it manually, I would go for:
Powershell to Deploy
A Windows service, to handle the deployment payload
I do this mechanism, as a fall back strategy to Octopus Deploy.
Hope that helps.
I have to modify an ASP.NET Web Forms application which is currently on production on a Windows Server 2003 in II6.
The problem is that I didn't develop the application and there is not anymore the Visual Studio solution used to develop the application. Moreover the application lies under a website where other applications are running and the connection strings are stored in the global web config file.
I want to modify the application without compromising the version that is actually online.
How can I bring the production version back into a solution file? Many thanks
I'm relatively new at creating custom content for Sharepoint 2010 and have been having some difficulty understanding how to get non-design related components (ie. web parts, custom classes, ...) into a Sharepoint site. I have created a new visual web part on the company's development server and deployed it successfully from Visual Studio 2010 and also packaged the solution into a WSP file.
What is the best way to go about getting that web part onto the production server? There is currently no Visual Studio install on the production server but from searching around I get the feeling that it might be possible to do this remotely using Powershell or STSADM. Has anyone faced a similar situation?
Use PowerShell. Stsadm is considered to be obsolete and is included in SharePoint 2010 only for backwards compatibility with SharePoint 2007. So, since you are new to SharePoint, pretend Stsadm doesn't even exist.
My PowerShell scripts keep evolving, but they are based on samples from Ted Pattison:
Chapter 2: SharePoint Foundation Development (scroll down to Using Windows PowerShell Scripts to Automate Tasks in Visual Studio)
PowerShell Boot Camp for SharePoint Professionals