Ask a Question related to ASP Components, Design and Development.
-
Tapasvi Mehta #1
DCOM call from an ASP page.
I have a COM component running on another Windows 2000
server. I want to call that component from the IIS server,
which is on another Windows 2000 server. How can i do that
from an ASP page ?
Tapasvi Mehta Guest
-
call page
hi, I have build a reminder.asp page what this is doing? when the page is loading email is send to the users where the have record is still open... -
ASP page call problem
Any suggestions on the following problem: I am making a call to an ASP page with the following call string:... -
Can't invoke DCOM call from ASP.NET
I want to wrap a legacy COM dll within an ASP.NET app. The dll incorporates a DCOM call to a remote server and will return data, which the ASP.NET... -
HOWTO? call dcom within webservice?
Hello NG, I have the following Problem I have: 1.WebService "TestService" 2.MFC appl with COM Interface 3.A c# froms application ... -
DCOM call - Permission denied
Most places will put a common account/password on both boxes. For example "MTSComponent" and "somegoodpassword". You set the COM package to run as... -
MSFT #2
RE: DCOM call from an ASP page.
To create an object in ASP application, we can use "Server.CreateObject".
To create a remote component (on another computer), we can use DCOM or
COM+. You may refer following articles:
HOWTO: Create a 3-Tier Application Using VB, MTS, and SQL Server
[url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q186342[/url]
HOWTO: Export a COM+ Application to Client Computers
[url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q259719[/url]
Luke
"Microsoft Security Announcement: Have you installed the patch for
Microsoft Security Bulletin MS03-026?? If not Microsoft strongly advises
you to review the information at the following link regarding Microsoft
Security Bulletin MS03-026
[url]http://www.microsoft.com/security/security_bulletins/ms03-026.asp[/url] and/or to
visit Windows Update at [url]http://windowsupdate.microsoft.com[/url] to install the
patch. Running the SCAN program from the Windows Update site will help to
insure you are current with all security patches, not just MS03-026."
MSFT Guest
-
Frank Drebin #3
Re: DCOM call from an ASP page.
Yes, that will install a proxy stub on the 'client' machine - the one
downfall is that is hard-coded to use that one specific server. And you
can't really do load-balancing or fail-over without having two different
versions of the DCOM object installed.. In short:
-COM object installed in COM+ on ServerA.
-Export package
-Install that package on Server B
-In ASP, on ServerB - use CreateObject() as you normally would..
"Tap" <tapasvi.mehta@citigroup.com> wrote in message
news:001801c36664$533cc480$a301280a@phx.gbl...> After reading the documents, this is what i concluded, let
> me know if i am making any mistakes.
>
> 1) Installing COM+ component on the remote machine.
>
> 2) Exporting that component from the remote machine, and
> then installing (Application proxy) on the server where
> the IIS resides.
>
> 3) Then by using CreateObject(""."") will work fine.
>
> Thanks,
>
> Tap
>> use "Server.CreateObject".> >-----Original Message-----
> >To create an object in ASP application, we can> can use DCOM or> >To create a remote component (on another computer), we> Server> >COM+. You may refer following articles:
> >
> >HOWTO: Create a 3-Tier Application Using VB, MTS, and SQL> US;Q186342> >[url]http://support.microsoft.com/default.aspx?scid=KB;EN-[/url]> US;Q259719> >
> >HOWTO: Export a COM+ Application to Client Computers
> >[url]http://support.microsoft.com/default.aspx?scid=KB;EN-[/url]> patch for> >
> >Luke
> >
> >"Microsoft Security Announcement: Have you installed the> strongly advises> >Microsoft Security Bulletin MS03-026?? If not Microsoft> regarding Microsoft> >you to review the information at the following link> 026.asp and/or to> >Security Bulletin MS03-026
> >[url]http://www.microsoft.com/security/security_bulletins/ms03-[/url]> [url]http://windowsupdate.microsoft.com[/url] to install the> >visit Windows Update at> site will help to> >patch. Running the SCAN program from the Windows Update> just MS03-026."> >insure you are current with all security patches, not> >
> >.
> >
Frank Drebin Guest
-
Tap #4
Re: DCOM call from an ASP page.
When i tried to export a package, the application proxy
option is not available. It is disabled, what could be the
problem ?
and>-----Original Message-----
>Thank you.
>>machine - the one>>-----Original Message-----
>>Yes, that will install a proxy stub on the 'client'>server. And you>>downfall is that is hard-coded to use that one specific>having two different>>can't really do load-balancing or fail-over without>would..>>versions of the DCOM object installed.. In short:
>>
>>-COM object installed in COM+ on ServerA.
>>-Export package
>>-Install that package on Server B
>>-In ASP, on ServerB - use CreateObject() as you normally>let>>
>>"Tap" <tapasvi.mehta@citigroup.com> wrote in message
>>news:001801c36664$533cc480$a301280a@phx.gbl...>>> After reading the documents, this is what i concluded,>>> me know if i am making any mistakes.
>>>
>>> 1) Installing COM+ component on the remote machine.
>>>
>>> 2) Exporting that component from the remote machine,Microsoft>SQL>>> then installing (Application proxy) on the server where
>>> the IIS resides.
>>>
>>> 3) Then by using CreateObject(""."") will work fine.
>>>
>>> Thanks,
>>>
>>> Tap
>>>
>>> >-----Original Message-----
>>> >To create an object in ASP application, we can
>>> use "Server.CreateObject".
>>> >To create a remote component (on another computer), we
>>> can use DCOM or
>>> >COM+. You may refer following articles:
>>> >
>>> >HOWTO: Create a 3-Tier Application Using VB, MTS, and>the>>> Server
>>> >[url]http://support.microsoft.com/default.aspx?scid=KB;EN-[/url]
>>> US;Q186342
>>> >
>>> >HOWTO: Export a COM+ Application to Client Computers
>>> >[url]http://support.microsoft.com/default.aspx?scid=KB;EN-[/url]
>>> US;Q259719
>>> >
>>> >Luke
>>> >
>>> >"Microsoft Security Announcement: Have you installed>>> patch for
>>> >Microsoft Security Bulletin MS03-026?? If not->>[url]http://www.microsoft.com/security/security_bulletins/ms03[/url]>>> strongly advises
>>> >you to review the information at the following link
>>> regarding Microsoft
>>> >Security Bulletin MS03-026
>>>>Update>>> 026.asp and/or to
>>> >visit Windows Update at
>>> [url]http://windowsupdate.microsoft.com[/url] to install the
>>> >patch. Running the SCAN program from the Windows>.>>>>> site will help to
>>> >insure you are current with all security patches, not
>>> just MS03-026."
>>> >
>>> >.
>>> >
>>
>>.
>>
>Tap Guest



Reply With Quote

