Ask a Question related to ASP.NET General, Design and Development.
-
John #1
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
-
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... -
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... -
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... -
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 -
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... -
Ken Cox [Microsoft MVP] #2
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
-
Natty Gur #3
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
-
Jay B. Harlow [MVP - Outlook] #4
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
-
John #5
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>...
Jay, Thanks!> 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
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
-
Jay B. Harlow [MVP - Outlook] #6
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...message news:<#on8pFfPDHA.1552@TK2MSFTNGP10.phx.gbl>...> "Jay B. Harlow [MVP - Outlook]" <Jay_Harlow@email.msn.com> wrote in>> > 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



Reply With Quote

