Consuming my custom WCF LOB adapter [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
My question is: Why is the consuming wcf adapter dialog is not updated, when I change my code and build new dll and put it into the GAC?
Details: I am developing my custom wcf lob adapter for Biztalk server 2013 r2. I have implemented needed interfaces and IMetadataBrowseHandler, then built it and put it into the GAC.
When consuming it in a Biztalk project, I can see my results when going through the "Add Generated Items=>ConsumeAdapterService". I change my code, so I must see new nodes in the tree but I did not see any new item until I restart Visual Studio.
Here is the picture of the dialog:

The first time your Visual Studio loads the DLL from the local GAC. The second time (after you have updated it), the DLL is already part of your application domain so it will not be updated unless you restart Visual Studio.
This is the default behavior which is pretty much standard within .NET.
You cannot say to Visual Studio something in the line of 'reload DLL from GAC', so you need to restart it manually.

Related

IIS - Build application without Visual Studio [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I was recently given the source files for a Web Forms applications. All the files, folders, ASPX, XML, cs and other source code files were present. Except, there were no Visual Studio solution or project files.
Just the source files.
I was asked to modify and test the application with a text editor (notepad) and use IIS 7.0 to build and test the application.
How is this possible?
There are 2 methods of website creation in Visual Studio, Web Application and Web Site. Refer to this link.
For your case, the project must be created using the Web Site method. This allows the site to be compiled on-the-fly, so you can just edit the source code with a text editor.

Visual Studio - How to create a solution from existing solutions/projects including webservices and a web that uses those webservices? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
How do I create the solution in Visual Studio 2008 from which I should be able to press F5 (debug) and get all webservices going aswell as start up Microsoft Internet Explorer with the frontpage of the websolution?
I need to create a solution in which I will add all existing projects for an existing application. The projects are at present located in several diffrent solutions, several for diffrent webservices and one for the main web application, which makes it hard to debug. I have tried to just create a new solution and add all existing projects, but it did not work - the webservices won't start automatically. If there is some configuration that needs to be done in order to get the webservices started, please explain that part too.
Sorry for not being able to include any example code.
If you want to add nothing but existing projects to a solution then you should use the Blank Solution template. You can then use the Add Existing Project option to add the projects to the solution.
As for running multiple projects when debugging, right-click the solution and select Set Startup Projects. You can then select multiple startup projects instead of just one.

What's the best way to do unit and performance tests against WCF in .net for different machines from a visual studio test client [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I need do some performance tests over a solution that uses: WCF services, serialization and a lot of stuff more (framework 4.0) deployed on several machines.
using a visual studio 2010 test project, would be possible configure any option to point at the different machines where the solution is installed?
would WCF cause any problem if I try to test agains it using a binding in particular?
I would create a test project, add references to the WCF services you want to test, and simply start testing. If you want something for complete end to end performance testing you can look at Microsofts Performance Testing suite (You can use this to load/stress test etc...)
What you are looking for is called "Lab Management". Those features are built in to Team Foundation Server on Visual Studio 2010 and newer.
Depending on how complicated of a a setup you want to do you may need a server running Hyper-V and a license for System Center Virtual Machine Manager (SCVMM) (it is not cheep).

Building a Windows Service in VS.NET 2008 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am new Windows service in VS.Net 2008.
I need to build a Windows service Application. When I right click the solution in Solution Explorer, a UI opens named Solution 'MySyncService'. Here I can see two major folders Common Properties and Configuration Properties. But I cannot see a general tab.
Secondly, if I right click my project 'MySyncService',select properties(short cut menu), then I can't see Common Properties and Configuration Properties. I see various tabs like Application Build, Build Events, Debug, Resources, Services, Settings, Reference paths etc. As per the link in MSDN I am not able to get the Common properties and General Tab. Please let me know which step I am missing.
This should get you started.Make sure you select VS 2008 from the quasi-dropdown up top
http://msdn.microsoft.com/en-us/library/zt39148a%28v=VS.90%29.aspx
I think you are looking for Application > Startup object under the project settings for the selected service project.

Application update framework for .net? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have googled over the internet and read some forums, but I could not find a really good solution to suit my requirements. I am looking for an automatic application update framework for my project.
Which do you think the best application update framework for .net?
Requirements:
free
easy to use and integrate with existing .net project
check/download/install updates automatically from a server
if it is needed, update also its referenced new dll-s from the server
if new dll is referenced to the app, should be also downloadad automatically from the server
if new items (e.g. XML files, language resource files) needed for a new version, also download them
UPDATE:
installation folder must be changeable by the user (clickonce is not an option)
check this http://www.codeproject.com/KB/install/DDayUpdate_Part1.aspx out - it combines ClickOnce (Update machnism) + Windows installer (installation) to make possible what you are asking for...
Another (perhaps better?) option: http://www.codeproject.com/KB/cs/DotNetAutoUpdateClient.aspx
Check out ClickOnce Deployment at http://msdn.microsoft.com/en-us/library/t71a733d(v=vs.80).aspx
It works really great. To use it, just open up the project properties in VS and go to the deploy tab.

Categories