How to put ASP.NET in my application?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default How to put ASP.NET in my application?

    Hi,

    I'm buliding a windows application. I would this application to be
    monitored and controlled remotely from a browser. Is there a way to
    host an ASP.NET interface within my application?

    I don't want to force the end-users to have IIS installed and
    configured just to access my program remotely from a browser.

    Thanks!
    John
    John Guest

  2. Similar Questions and Discussions

    1. Flash Remoting Application.cfc & Application.cfm problem
      Hi there, When using Flex 1.5 client application, when using Application.cfm to deal with remoting SetCredentials(user,pwd), I just set it once...
    2. dllimport call in aspnet application makes the application hangs
      As our application design requires us to use one of the validation API engine which was written on C(so basically all I have is a dll) and I tested...
    3. What issue will HIT me hard when I convert an Access 2002 MDE application to Web Application?
      Hi All, Current Access 2002 MDE application: - has no tier - has neither business object nor any kind of object (Except MS Form object and...
    4. Can a web application call methods on a webservice running in the same application
      Can a web application call methods on a webservice running in the same application Thanks Ron Vecchi
    5. How to inherit a base form in all application forms of an asp.net application
      hello friend, while developing an asp.net application, i created a base form(say mybaseform1) with certain links on it. then i tried to...
  3. #2

    Default Re: How to put ASP.NET in my application?

    This looks like it might be what you need:

    Host ASP.NET Applications
    Leverage the System.Web.Hosting classes to serve up your own ASP.NET
    applications.

    [url]http://www.fawcette.com/vsm/2002_10/magazine/columns/aspnet/default_pf.asp[/url]

    Ken
    MVP [ASP.NET]

    "John" <johnfofawn@hotmail.com> wrote in message
    news:d89364bd.0306281729.42dc69a9@posting.google.c om...
    Hi,

    I'm buliding a windows application. I would this application to be
    monitored and controlled remotely from a browser. Is there a way to
    host an ASP.NET interface within my application?

    I don't want to force the end-users to have IIS installed and
    configured just to access my program remotely from a browser.

    Thanks!
    John


    Ken Cox [Microsoft MVP] Guest

  4. #3

    Default Re: How to put ASP.NET in my application?

    Hi,

    1) If you application implement Interface that will be registered as COM
    (tlbexp) you can access this COM Interface from the browser scripting.

    2) You can download light .NET DLL to the client that will use remoting
    to communicate with your application.

    Natty Gur, CTO
    Dao2Com Ltd.
    28th Baruch Hirsch st. Bnei-Brak
    Israel , 51114

    Phone Numbers:
    Office: +972-(0)3-5786668
    Fax: +972-(0)3-5703475
    Mobile: +972-(0)58-888377

    Know the overall picture


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

  5. #4

    Default Re: How to put ASP.NET in my application?

    John,
    In addition to Ken Cox's suggestion of hosting ASP.NET.

    Check out Cassini, which is the Sample Web Server that Web Matrix uses.

    [url]http://www.asp.net/Default.aspx?tabindex=7&tabid=41[/url]

    It should help you get started hosting ASP.NET for your application.

    Hope this helps
    Jay

    "John" <johnfofawn@hotmail.com> wrote in message
    news:d89364bd.0306281729.42dc69a9@posting.google.c om...
    > Hi,
    >
    > I'm buliding a windows application. I would this application to be
    > monitored and controlled remotely from a browser. Is there a way to
    > host an ASP.NET interface within my application?
    >
    > I don't want to force the end-users to have IIS installed and
    > configured just to access my program remotely from a browser.
    >
    > Thanks!
    > John

    Jay B. Harlow [MVP - Outlook] Guest

  6. #5

    Default Re: How to put ASP.NET in my application?

    "Jay B. Harlow [MVP - Outlook]" <Jay_Harlow@email.msn.com> wrote in message news:<#on8pFfPDHA.1552@TK2MSFTNGP10.phx.gbl>...
    > John,
    > In addition to Ken Cox's suggestion of hosting ASP.NET.
    >
    > Check out Cassini, which is the Sample Web Server that Web Matrix uses.
    >
    > [url]http://www.asp.net/Default.aspx?tabindex=7&tabid=41[/url]
    >
    > It should help you get started hosting ASP.NET for your application.
    >
    > Hope this helps
    > Jay
    Jay, Thanks!

    I've been studying Cassini and I have it running.

    What and how do I create a way for a remote user to check on the
    status of my application from a browser?

    My app is running. Cassini is running. Are they started from the same
    main()?

    Once they are running I assume the user makes a request to Cassini
    from a browser and then I want Cassini to call some function in my app
    and which returns some information that's then displayed to the user.
    Does this make sense?

    Cassini would do something like:

    string sometext = myApp.getStatus();

    And then translate sometext into an HTML page that is displayed to the
    user.

    Any pointers to get me started with this?

    Thanks!
    John
    John Guest

  7. #6

    Default Re: How to put ASP.NET in my application?

    John,
    Unfortunately Cassini itself does not allow remote connections.

    Other than knowing Cassini is there, I do not know how you would, if you
    could, modify it to support remote connections...

    Hope this helps
    Jay

    "John" <johnfofawn@hotmail.com> wrote in message
    news:d89364bd.0307040747.1ff1eebd@posting.google.c om...
    > "Jay B. Harlow [MVP - Outlook]" <Jay_Harlow@email.msn.com> wrote in
    message news:<#on8pFfPDHA.1552@TK2MSFTNGP10.phx.gbl>...
    > > John,
    > > In addition to Ken Cox's suggestion of hosting ASP.NET.
    > >
    > > Check out Cassini, which is the Sample Web Server that Web Matrix uses.
    > >
    > > [url]http://www.asp.net/Default.aspx?tabindex=7&tabid=41[/url]
    > >
    > > It should help you get started hosting ASP.NET for your application.
    > >
    > > Hope this helps
    > > Jay
    >
    > Jay, Thanks!
    >
    > I've been studying Cassini and I have it running.
    >
    > What and how do I create a way for a remote user to check on the
    > status of my application from a browser?
    >
    > My app is running. Cassini is running. Are they started from the same
    > main()?
    >
    > Once they are running I assume the user makes a request to Cassini
    > from a browser and then I want Cassini to call some function in my app
    > and which returns some information that's then displayed to the user.
    > Does this make sense?
    >
    > Cassini would do something like:
    >
    > string sometext = myApp.getStatus();
    >
    > And then translate sometext into an HTML page that is displayed to the
    > user.
    >
    > Any pointers to get me started with this?
    >
    > Thanks!
    > John

    Jay B. Harlow [MVP - Outlook] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139