Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

How do I add a Web Service Extension in code???

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  Authentication issues across forest trust  
Author Message
user1385

External


Since: Feb 05, 2004
Posts: 5



(Msg. 1) Posted: Thu Feb 05, 2004 3:26 am
Post subject: How do I add a Web Service Extension in code???
Archived from groups: microsoft>public>inetserver>iis (more info?)

I have an installer for a web based function that has worked very good
from NT4-W2000-XP and IIS4-IIS5, but now it is failing on W2003 with
IIS6. What happens is that when the users browse for the cgi file they
get a 404 error back.
After some Googling I have found out how to fix this *manually* using
the IIS Manager for IIS6.
But this is no help to me, I need to integrate this in my application
setup. Previously when I set up for IIS5 I had a VBScript that ran as
a part of the installation and created the virtual directories I need
including the application mappings. This is no longer enough, it seems
like I must add a Web Service Extension also...

Can someone please point me to a good example showing how to do this,
maybe with a VBS example too?

/Bo

 >> Stay informed about: How do I add a Web Service Extension in code??? 
Back to top
Login to vote
jmaltz

External


Since: Aug 22, 2003
Posts: 710



(Msg. 2) Posted: Thu Feb 05, 2004 3:26 am
Post subject: Re: How do I add a Web Service Extension in code??? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

A quick Google turned up:
<a style='text-decoration: underline;' href="http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/proddocs/entserver/iisext.asp" target="_blank">http://www.microsoft.com/technet/treeview/default.asp?url=/technet/pro...chnol/w</a>

--
--Jonathan Maltz [Microsoft MVP - Windows Server]
<a style='text-decoration: underline;' href="http://www.visualwin.com" target="_blank">http://www.visualwin.com</a> - A Windows Server 2003 visual, step-by-step
tutorial site Smile
<a style='text-decoration: underline;' href="http://vpc.visualwin.com" target="_blank">http://vpc.visualwin.com</a> - Does <insert OS name> work on VPC 2004? Find out
here
Only reply by newsgroup. I do not do technical support via email. Any
emails I have not authorized are deleted before I see them.


"Bo Berglund" <bo.berglund.TakeThisOut@telia.com> wrote in message
news:7gv220175osqs5re6d1bacmuqne8btu167@4ax.com...
 > I have an installer for a web based function that has worked very good
 > from NT4-W2000-XP and IIS4-IIS5, but now it is failing on W2003 with
 > IIS6. What happens is that when the users browse for the cgi file they
 > get a 404 error back.
 > After some Googling I have found out how to fix this *manually* using
 > the IIS Manager for IIS6.
 > But this is no help to me, I need to integrate this in my application
 > setup. Previously when I set up for IIS5 I had a VBScript that ran as
 > a part of the installation and created the virtual directories I need
 > including the application mappings. This is no longer enough, it seems
 > like I must add a Web Service Extension also...
 >
 > Can someone please point me to a good example showing how to do this,
 > maybe with a VBS example too?
 >
 > /Bo<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: How do I add a Web Service Extension in code??? 
Back to top
Login to vote
user1385

External


Since: Feb 05, 2004
Posts: 5



(Msg. 3) Posted: Thu Feb 05, 2004 3:54 am
Post subject: Re: How do I add a Web Service Extension in code??? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks,
now only remains to find the iisext.vbs file somewhere...
I don't have W2003 or IIS6 myself, but I need to be able to make my
app work on this platform.
So I guess I have to get a copy of iisext.vbs from somewhere and
include it in my installation so I can execute it and get the
extension set?

Where can I find this script for download?

/Bo


On Wed, 4 Feb 2004 18:44:43 -0500, "Jonathan Maltz [MS-MVP]"
<jmaltz.RemoveThis@mvps.org> wrote:

 >A quick Google turned up:
 >http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/proddocs/entserver/iisext.asp<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I add a Web Service Extension in code??? 
Back to top
Login to vote
jmaltz

External


Since: Aug 22, 2003
Posts: 710



(Msg. 4) Posted: Thu Feb 05, 2004 3:54 am
Post subject: Re: How do I add a Web Service Extension in code??? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

It's in Windows\System32 on a Windows Server 2003 install. I'm not sure how
licensing on it works (if it can be distributed separately, etc) but
remember you can always pick up a 2003 eval which has everything
<a style='text-decoration: underline;' href="http://www.microsoft.com/windowsserver2003/evaluation/trial/evalkit.mspx" target="_blank">http://www.microsoft.com/windowsserver2003/evaluation/trial/evalkit.mspx</a>

It would probably be easiest to pick up the eval and then do some testing of
your installer (calling the iisext.vbs script from the installer) using it
to make sure everything works properly

--
--Jonathan Maltz [Microsoft MVP - Windows Server]
<a style='text-decoration: underline;' href="http://www.visualwin.com" target="_blank">http://www.visualwin.com</a> - A Windows Server 2003 visual, step-by-step
tutorial site Smile
<a style='text-decoration: underline;' href="http://vpc.visualwin.com" target="_blank">http://vpc.visualwin.com</a> - Does <insert OS name> work on VPC 2004? Find out
here
Only reply by newsgroup. I do not do technical support via email. Any
emails I have not authorized are deleted before I see them.


"Bo Berglund" <bo.berglund.DeleteThis@telia.com> wrote in message
news:3d1320t9f2d8pmde8aqvuv617i5n63o9bo@4ax.com...
 > Thanks,
 > now only remains to find the iisext.vbs file somewhere...
 > I don't have W2003 or IIS6 myself, but I need to be able to make my
 > app work on this platform.
 > So I guess I have to get a copy of iisext.vbs from somewhere and
 > include it in my installation so I can execute it and get the
 > extension set?
 >
 > Where can I find this script for download?
 >
 > /Bo
 >
 >
 > On Wed, 4 Feb 2004 18:44:43 -0500, "Jonathan Maltz [MS-MVP]"
 > <jmaltz.DeleteThis@mvps.org> wrote:
 >
  > >A quick Google turned up:
 >
 >http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtech
nol/windowsserver2003/proddocs/entserver/iisext.asp
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I add a Web Service Extension in code??? 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Web Service Extension for EXE's ? - I have my EXE's running on their websites on my server because I allowed ALL unknown CGI's. I know it is much better to just allow the one extension I actually use. I tried to add "exe" as an extension but WSE wants to know what the requir...

Perl and Web service extension - Can anyone give me a walkthrough on how to configure the web service extension for PERL. Thanks, Frank spam@powerhouselinux.com

ASP CODE IS STOPPING IIS SERVICE DEAD - Im running some pretty straight forward code. Mainly database access (SQL7) doing inserts and sometimes when the script runs it halts the IIS service dead in its tracks. Before the page can even finish loading. the error seems to be caused when i..

Web service code does not refresh when deploying updates t.. - We have a Windows 2000 active/passive cluster using .Net Framework 1.0. When code changes are deployed for a web service, the change does not take effect. It seems that the cache does not refresh. To get around this we were able to create a new..

Extension Blocking in IIS - Hi There. I have recently inherited a fairly large shared web hosting platform, which, amo other features, allows customers to place access databses in their web sites, and then read / write data to them via DNS / Dsn-Les connections. However, a..
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]