in a web server alreday asp.net application is running, when i published a .net core web application it is not conecting the sql server.

M.V. MADHANA MOHAN 1 Reputation point
2022-09-12T11:33:28.407+00:00
  1. already asp.net with MVC web application is running fine in the web server.
  2. newly creaded asp.net core MVC web application and published it is not connecting the sql server.[the same sql server is connecting to the asp.net web application]
  3. my requirement is under the existing asp.net web application i have to create the asp.net core web application as a sub site.
    ex: http://test.com ---> is asp.net MVC web application
    http://test.com/abc/ ---> is my asp.net core web application

is it possible to create the core web application under the asp.net web application?

in a web server already asp.net application is running, when i published a .net core web application it is not connecting the sql server and getting the following error.

****A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.****

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,251 questions
{count} votes

2 answers

Sort by: Most helpful
  1. M.V. MADHANA MOHAN 1 Reputation point
    2022-09-13T06:34:59.717+00:00

    Thanks for responding.

    In my web server i have a ASP.Net application it is running fine.

    Now i have a requirement, crate a new .net Core web application as a sub site of existing asp.net web application.

    0 comments No comments

  2. QiYou-MSFT 4,306 Reputation points Microsoft Vendor
    2022-09-13T07:57:50.367+00:00

    Hi @M.V. MADHANA MOHAN ,
    As for your question:
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
    The methods I give to detect the problem are as follows:

    1. Check that the ping is working correctly between the two servers.
    2. Run netstat–ano to check that live migration port 6600 is listening.
      Two projects can be linked to a database, which can be configured at Web.Config.
      You can use the following methods to achieve your requirements:
    3. Use hyperlinks to jump to pages
    4. Since the page made by the framework will have a site after uploading to the IIS deployment, the work we do is to map an address through Route, which we can configure in RouteConfig, and upload the deployment is also possible.
      If you have more details of your mistake, please let me know and I will continue to help you with the ending question.

    Best regards,
    Qi You


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments