I am trying to add an ASP.NET 4.x app hosted externally (using AWS Elastic Beanstalk) into the Service-registry of an existing PCF. Edit: Is this possible? If so, can someone give me an example about how this can be done
Register Externally hosted app in PCF Service Registry
186 Views Asked by Jop.pop At
2
There are 2 best solutions below
4
Tim
On
Assuming you have network connectivity in all directions between apps in PCF and the external app, yes this should be quite possible.
However, if you're using Spring Cloud Eureka, your externally-hosted app will need to get valid OAuth credentials so that it can authenticate prior to registering.
Related Questions in ASP.NET-4.0
- Infragistics WebDataGrid don't show in my host browser but show in VS
- fundamentally Is there any changes between the asp.net and sql-server with old .Net framework 3.5 to 4.8 in the 2023?
- Is there any changes between .Net framework 3.5 to 4.8 means fundamentals were changed of Asp.Net in the year 2023 or not?
- Difference between .NET 4 and .NET 4.8
- Application state asp.net
- Integrate Azure Key Vault with ASP.NET 4.0
- InvalidOperationException: Client found response content type of '', but expected 'text/xml'. The request failed with an empty response
- how to connect localhost wcf service with asp.net 4.0
- ASP.net 4.0 Framework application embedded with in WSS 3.0
- Register Externally hosted app in PCF Service Registry
- Error when trying Stream.Write several times in C# net 4.0
- how to make inner join query for getting multiple tables selected column
- How to get image from web cam and store in a SQL Server varbinary(max) column
- a href link not work properly at local project
- Error while getting records from stored procedure
Related Questions in NETFLIX-EUREKA
- how to set same port on fastapi and eureka?
- I registered a service in eureka which is resolving through java code. But it is not able to resolve its name when hitting through chrome or postman
- fastapi adding eureka is throwing RuntimeError: Cannot run the event loop while another loop is running
- ApiGateway is not routing the api call
- How can Spring Eureka client check local Eureka Server first, then fallback to deployed Server if no local instance registered
- Using Spring Cloud Gateway and eureka on a Kubernetes deployment
- Feign makes empty request
- Zuul still routing to the instance of the application that are dead
- Service are not registered in Eureka Server with docker-compose. Spring boot 3
- Not able to register a service as Eureka Client and not able to see Discovery client in log
- Cannot resolve symbol 'EnableEurekaClient'
- Spring Cloud Gateway with Eureka Discovery not routing requests to Microservices
- Eureka Server Dashboard not showing
- When I am running My Service Registry using Eureka. I am not getting A Replica URL, Rather I am getting The replica size seems to be empty
- I got whitelabel error page when i am use eureka server
Related Questions in CLOUD-FOUNDRY
- Cloud Foundry : Java Build Pack : Opentelemtry Javagent extension integration with jar from a repo
- Getting "CF-InvalidAuthToken(1000): Invalid Auth Token" while launching the tasks in Spring Cloud Data Flow 2.11.1
- How to read logs from PCF?
- Is there a design pattern to handle the scaling up/down of an RMQ consumer app consuming messages from queues bound to a consistent hash exchange
- SAP UI5 Live Search in Input Box causing out of memory for the app on SAP BTP
- PCF Spring Cloud Config server not fetching properties from bitbucket
- PCF doesn't recognize the spring boot application
- Own changes in CloudFoundry development environment not visible to me only
- Trying to update Spring Cloud Dataflow v2.9.4 to 2.11.2 on Pivotal CloudFoundry but getting errors during deployment
- Zuul ServiceId route is not working on CloudFoundry
- How can i set msg.sender inside foundry script to account from encrypted keystore?
- Cloudfoundry Laravel "Could not open input file: artisan"
- Deploying net core app to pcf: start app timeout with health check 404 failure
- cf push failed due to java runtime version error
- How can the cf controller authenticate itself agains apps in BTP?
Related Questions in STEELTOE
- Steeltoe upgrade version 2 to version 3 changes are breaking
- Steeltoe upgrade from 2.4.3 to 3.2.6 - break code
- Service is not register in Eureka because of Autofac
- Unable to Limit Retries Using Steeltoe with RabbitMQ in ASP.NET Core 6.0 Microservices
- How do I configure Steeltoe to use Vault property source from Spring Cloud Config Server
- How to register multiple Consumers using Steeltoe and RabbitMQ?
- Steeltoe ASP.NET Core CloudFoundryJwtBearer breaking change?
- Steeltoe Refresh not working as expected(not reloading the config values without restarting application) in .NET core 3.1
- Steeltoe Serilog Dynamic Logging not working with .NET 7
- de-register services from service discovery using steeltoe in .net framework 4.8
- The type or namespace name 'SteeltoeWebApplication' could not be found
- "Please ensure OpenTelemetry is configured via Steeltoe extension methods" error?
- Service registry Pattern for Web API deployed ASE
- How to add steeltoe configserver configuration in .net 6.0
- steeltoe out of memory
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The comment by Daniel Mikusa is very appropriate for how I achieved this.