|
 |
asp_components thread: ASPexec
Message #1 by "Joe Ehrenfeld" <joee@v...> on Mon, 24 Sep 2001 22:20:32
|
|
I have tried everything and I cannot for the life of me get ASPexec to
launch my exe on another server. the following works because the .exe is
on the web server that host the ASP.
objExecutor.Application = "C:/temp/VBApp/PalletIdLabel.exe"
However, if I put the exe on another server(the IIS server can see the
other server) and use the paths below, it deos not work:
If I use
objExecutor.Application = "//Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
OR
objExecutor.Application = "\\Ussvckdcm006\temp\VBApp\PalletIdLabel.exe"
OR
objExecutor.Application = "\\Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
It does not work. Anyone have any suggestions, that would be great.
Thanks.
Message #2 by Robert Chartier <rchartierh@a...> on Mon, 24 Sep 2001 14:27:42 -0700
|
|
make sure IUSER_machinename (or the MTS package that is holding AspExec)
has sufficient rights to the network resource.
/rob
At 10:20 PM 9/24/2001 +0000, you wrote:
>I have tried everything and I cannot for the life of me get ASPexec to
>launch my exe on another server. the following works because the .exe is
>on the web server that host the ASP.
>
>objExecutor.Application = "C:/temp/VBApp/PalletIdLabel.exe"
>
>However, if I put the exe on another server(the IIS server can see the
>other server) and use the paths below, it deos not work:
>
>If I use
>objExecutor.Application = "//Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
>OR
>objExecutor.Application = "\\Ussvckdcm006\temp\VBApp\PalletIdLabel.exe"
>OR
>objExecutor.Application = "\\Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
>
>It does not work. Anyone have any suggestions, that would be great.
>
>Thanks.
>
Robert Chartier
Author and Developer
xxx-xxx-xxxx
rob@a...
http://www.aspfree.com/devlinks
http://www.aspfree.com/authors/robert
http://www.aspalliance.com/nothingmn
Message #3 by "Joe Ehrenfeld" <joee@v...> on Mon, 24 Sep 2001 23:56:53
|
|
It does because when I log onto the web server and browse to the machine
that is housing the exe I can launch it.
Any other ideas?
>
>
> make sure IUSER_machinename (or the MTS package that is holding AspExec)
> has sufficient rights to the network resource.
>
> /rob
>
>
> At 10:20 PM 9/24/2001 +0000, you wrote:
> >I have tried everything and I cannot for the life of me get ASPexec to
> >launch my exe on another server. the following works because the .exe is
> >on the web server that host the ASP.
> >
> >objExecutor.Application = "C:/temp/VBApp/PalletIdLabel.exe"
> >
> >However, if I put the exe on another server(the IIS server can see the
> >other server) and use the paths below, it deos not work:
> >
> >If I use
> >objExecutor.Application = "//Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
> >OR
> >objExecutor.Application = "\\Ussvckdcm006\temp\VBApp\PalletIdLabel.exe"
> >OR
> >objExecutor.Application = "\\Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
> >
> >It does not work. Anyone have any suggestions, that would be great.
> >
> >Thanks.
> >
rchartierh@a...
>
>
> Robert Chartier
> Author and Developer
> xxx-xxx-xxxx
> rob@a...
> http://www.aspfree.com/devlinks
> http://www.aspfree.com/authors/robert
> http://www.aspalliance.com/nothingmn
>
Message #4 by Robert Chartier <rchartierh@a...> on Mon, 24 Sep 2001 20:02:13 -0700
|
|
So it is persisting as that user's credentials (currently logged in user)...?
Humor me, and create a new MTS Package (component services), set it to
persist as an user which does have access to that resource, throw your DLL
into it and try to do the request from an anonymous machine.
/rob
At 11:56 PM 9/24/2001 +0000, you wrote:
>It does because when I log onto the web server and browse to the machine
>that is housing the exe I can launch it.
>
>Any other ideas?
>
>
>
> >
> >
> > make sure IUSER_machinename (or the MTS package that is holding AspExec)
> > has sufficient rights to the network resource.
> >
> > /rob
> >
> >
> > At 10:20 PM 9/24/2001 +0000, you wrote:
> > >I have tried everything and I cannot for the life of me get ASPexec to
> > >launch my exe on another server. the following works because the .exe is
> > >on the web server that host the ASP.
> > >
> > >objExecutor.Application = "C:/temp/VBApp/PalletIdLabel.exe"
> > >
> > >However, if I put the exe on another server(the IIS server can see the
> > >other server) and use the paths below, it deos not work:
> > >
> > >If I use
> > >objExecutor.Application = "//Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
> > >OR
> > >objExecutor.Application = "\\Ussvckdcm006\temp\VBApp\PalletIdLabel.exe"
> > >OR
> > >objExecutor.Application = "\\Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
> > >
> > >It does not work. Anyone have any suggestions, that would be great.
> > >
> > >Thanks.
> > >
>rchartierh@a...
> $subst('Email.Unsub')
> >
> >
> > Robert Chartier
> > Author and Developer
> > xxx-xxx-xxxx
> > rob@a...
> > http://www.aspfree.com/devlinks
> > http://www.aspfree.com/authors/robert
> > http://www.aspalliance.com/nothingmn
> >
>
>
Robert Chartier
Author and Developer
xxx-xxx-xxxx
rob@a...
http://www.aspfree.com/devlinks
http://www.aspfree.com/authors/robert
http://www.aspalliance.com/nothingmn
Message #5 by abdul_kesington@c... on Wed, 26 Sep 2001 01:07:44
|
|
You need to try this;
http://www.microsoft.com/technet/treeview/default.asp?
url=/TechNet/prodtechnol/iis/deploy/metabase.asp
> I have tried everything and I cannot for the life of me get ASPexec to
> launch my exe on another server. the following works because the .exe is
> on the web server that host the ASP.
>
> objExecutor.Application = "C:/temp/VBApp/PalletIdLabel.exe"
>
> However, if I put the exe on another server(the IIS server can see the
> other server) and use the paths below, it deos not work:
>
> If I use
> objExecutor.Application = "//Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
> OR
> objExecutor.Application = "\\Ussvckdcm006\temp\VBApp\PalletIdLabel.exe"
> OR
> objExecutor.Application = "\\Ussvckdcm006/temp/VBApp/PalletIdLabel.exe"
>
> It does not work. Anyone have any suggestions, that would be great.
>
> Thanks.
|
|
 |