Questions tagged [connected-services]

22 questions
4
votes
0 answers

Azure Key Vault Connected Service Visual Studio SharedTokenCacheCredential authentication failed

We have a ASP.NET MVC .NET 4.7.2 project that I want to migrate standard web.config settings (appSettings and ConnectionStrings) into Azure Key Vault. Following these sites as…
OJay
  • 4,763
  • 3
  • 26
  • 47
2
votes
1 answer

How to connect Azure Key Vault to C# Windows Service with app.config

How do I connect Azure Key Vault to C# windows Service application using visual studio? I am using VS 2019 and .NET Framework 4.7.2. There is no service dependencies option under connected service where I usually find Azure Key Vault for the Web…
1
vote
1 answer

VS2022 Configure Azure keyvault not seeing local secrets.json

I want to build an new .net core console application using the Azure KeyVault. I use the connected services wizard and select azure keyvault. It recognizes the vault instance I have access to but then comes a config pages like so: Save connection…
zu1b
  • 422
  • 5
  • 11
1
vote
0 answers

ASP.NET Web Application: connected services is empty

I have a asp.net web application (.NET Framework 4.7.2) that I would like to add a connected service to (in Visual Studio 2019 or 2022), but when I go to add the connected service (right click on project > Add > Connected Service) the Connected…
1
vote
0 answers

VS2019 Adding Connected Service via OpenAPI not generating all required classes

We have a swagger generated OpenAPI definition which has an endpoint that defines it's responses as the following: "responses": { "200": { "description": "Success", "content": { "text/plain": { "schema": { "type":…
CT14.IT
  • 1,635
  • 1
  • 15
  • 31
1
vote
2 answers

How to properly store and extract AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET?

I have this azure key vault in which I have stored an api key. I have via Visual studio added the azure key vault as an connected service to the project. I try to get my keyvalue stored in akv via this code HttpClient client = new HttpClient(); …
1
vote
1 answer

The HTTP request was forbidden with client authentication scheme 'Anonymous' net core

I'm having a .net core API and an EmailService as a connected service (WCF) The EmailService is hosted on IIS (HTTPS); I'm trying to connect to the emailService with a Client Certificate. Everything is fine but i'm getting the The HTTP request was…
Michael Commons
  • 773
  • 2
  • 9
  • 28
1
vote
1 answer

Adding a service reference in VS 2017 15.9.14 windows forms application

I am trying to add a asmx web service to one windows forms app by following way -> Right click- > add service reference. But it seems the service is added under connected service folders only. not under service reference . Is this an expected…
benz
  • 21
  • 4
1
vote
6 answers

Error adding WCF Service to .NET Core 2.2 REST API

We are porting our Windows Mobile handheld terminals to Android hence we need to change our WCF services. I am currently writing proxies to convert WCF services to REST APIs using .NET Core (2.2) I have created a .NET Core 2.2 API project and trying…
user3021830
  • 2,784
  • 2
  • 22
  • 43
0
votes
1 answer

Connecting a wcf service from a server wsdl file

I am working on .net 6 project and I need to have net461 package. In a test server that is hosted as a different service. I can connect that one as a connected service to my project. My concerns are, Adding that service from a particular server is…
0
votes
0 answers

What does the RabbitMQ Connected Service in Visual Studio do?

I noticed that Visual Studio has a connected service for RabbitMQ containers. However the documentation currently only states: RabbitMQ on container RabbitMQ is an open-source multi-protocol message broker. This option makes it available in a…
Alex KeySmith
  • 16,657
  • 11
  • 74
  • 152
0
votes
0 answers

Launch Azurite with command line from Visual Studio 2022

VS 2022 has a "Connected Services" feature that allows adding Azurite and launching it. When adding Azurite NPM installation to VS connected services, it doesn't give you the option to specify any command line. I am only interested in launching…
Adam
  • 3,872
  • 6
  • 36
  • 66
0
votes
1 answer

Trouble understanding VS/Azure Connected Services

I've been trying to connect my web API project to my cosmosDB instance using keyvault, but for the life of me I can't figure out how visual studio's "connected services" are supposed to be used. I figured you would just use the variables you define…
0
votes
1 answer

why WCF service Added As Connected Service not Service reference in application?

I am trying to add a service reference to my MVC application project. The project is targeting 4.5.1 .NET framework. When I add the service reference the service is added under connected service folder, I expected this to be under a folder named…
Noor Allan
  • 421
  • 2
  • 7
  • 17
0
votes
0 answers

Visual Studio Project Adding Connected Services using Generic List Fails

In an ASP.NET Core 3.1 website project I use connected services for legacy WFC. In VS I choose Add -> Connected Service. When adding the service I set the CollectionMappings to Generic.List so that the proxy creates List types instead of…
1
2