Trouble with IIS-6 Server

I'm in desparate need of some help. Up until now I've done
"basic" web pages and uploaded html web pages to FTP sites with no
problem. I am currently working on Catalog web site and am using
ASP Javascript. I was told those were compatible with IIS servers.
I uploaded the pages to a testing server and I am getting a HTTP
404 error/Page Not Found in my browser (Safari).
I am using ECart with Dreamweaver to create my shopping cart.
Anyone have any suggestions. Am I using the wrong
extension?

Hi
A 404 error means the page is not at the location that you
have
provided. You need to check exactly where your page is on the
server, if
indeed it is on the server.
Cheers jojo
Adobe Community Expert for Dreamweaver 8
http://www.webade.co.uk
http://www.ukcsstraining.co.uk/
Extending Knowledge, Daily.
http://www.communityMX.com/
Free 10 day trial
http://www.communitymx.com/joincmx.cfm

Similar Messages

  • I'm having trouble with Snow Leopard server disconnecting.

    I'm having trouble with Snow Leopard server disconnecting. Recently upgraded my laptops to latest MacBook Pro OSX Lion, but everything has been fine since December until now. I did just add a 2TB Drive to the set-up (OWC Mercury Elite AL-Pro) in a Daisy chain of 2 other 2TB drives and a 3TB Drive that had been working perfectly up until now. I was able to use it yesterday, but now it has gone haywire and I lose connections while working on files or saving files. Have to restart server and it works for a while, but then drops off. Could Server be corrupt?

    Hi clemenbw,
    Welcome to the Apple Support Communities!
    In your situation, I would recommend reading over the attached article to help you troubleshoot your Magic Mouse Bluetooth connectivity issues. 
    Troubleshooting wireless mouse and keyboard issues
    Have a great day,
    Joe

  • Web Service with IIS Web server feasible?

    Hi all,
    we have come up with the following architecture and would like to
    know whether we have mis-interpret anything. We would also like
    to know whether this architecture is feasbile or not.
         java client web page browser requesting for the WSDL
         application / of our web service.
              |
              |
         (Internet)
              |
              |
         Firewall 1 (only allow port 80 traffic)
              |
              |
         Microsoft IIS Web Server with iisproxy.dll installed.          
         (hostname : d3dpc1 port number : 80)
              |
              |
         Firewall 2 (only allow port 8100 traffic)
              |
              |
         WebLogic 7.1 Server with a web service deployed.      
         (hostname : d3dpc2 port number : 8100)
    Assumed that we have constructed a certain web service through
    the weblogic workshop and the web service page can be reached behind
    the Firewall 2 via the following URL:
    http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    Next, we'd like to access the same web service outside the Firewall 1.
    On our IS web server, we make use of the IIS plugin and wrote an
    iisproxy.ini as follows:
    WebLogicHost=d3dpc2
    WebLogicPort=8100
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    WLForwardPath=/weblogic
    PathTrim=/weblogic
    we insalled the IIS plugin accoring to the document
    "Using Web Server Plug-ins with WebLogic Server", starting
    with page 3-3, running through steps 1-7, 9-10.
    As a result, through the web page browser on the
    client machine outside the Firewall 1, we can
    obtain the WSDL through the following URL
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL
    At the bottom of the attached WSDL, we found that it appears as
    <service name="FileUpload">
    - <port name="FileUploadSoap" binding="s0:FileUploadSoap">
    <soap:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    - <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
    <http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    - <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
    <http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    </service>
    It presents to us the address is "http://d3dpc2:8100...."
    which is behind two of our Firewalls, which is, in turn,
    cannot be directly accessed by our client applications.
    As a result, if we run a java client applications to our web service by
    making use of
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL,
    we may obtain the WSDL but the subsequent method calls to our web service
    may be blocked. Are we mis-interpreting anything? Is it feasible
    for us to setup an IIS web service in between our client applications
    to our web service like that?
    We are pleased to provide further information, like our simple
    web service code, if not sufficient. Please offer help!
    Kenneth
    [FileUpload.wsdl]

    Hi Kenneth,
    You need to modify the file weblogic-jws-config.xml in your workshop project
    folder before you genereate the WSDL file.
    The <hostname> and <http-port> entity below will point to your webserver
    address, in this case it would be: <hostname>d3dpc1</hostname> and
    <port>80</port>
    Here is an example of the XML file:
    <config>
    <protocol>http</protocol>
    <hostname>d3dpc1</hostname>
    <http-port>80</http-port>
    <https-port>443</https-port>
    <jws>
    </jws>
    </config>
    Thanks,
    Ninou Sarwono
    "Kenneth Yue" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    Hi all,
    sorry for the messy format. I don't why the texts
    are present like this. Please kindly press the reply
    link and in the reply window, you will see a
    better format of my text. Sorry for any inconvenience
    caused.
    thanks
    cheers,
    Kenneth
    "Kenneth Yue" <[email protected]> wrote:
    Hi all,
    we have come up with the following architecture and would like to
    know whether we have mis-interpret anything. We would also like
    to know whether this architecture is feasbile or not.
    java client web page browser requesting for the WSDL
    application / of our web service.
    |
    |
    (Internet)
    |
    |
    Firewall 1 (only allow port 80 traffic)
    |
    |
    Microsoft IIS Web Server with iisproxy.dll installed.
    (hostname : d3dpc1 port number : 80)
    |
    |
    Firewall 2 (only allow port 8100 traffic)
    |
    |
    WebLogic 7.1 Server with a web service deployed.
    (hostname : d3dpc2 port number : 8100)
    Assumed that we have constructed a certain web service through
    the weblogic workshop and the web service page can be reached behind
    the Firewall 2 via the following URL:
    http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    Next, we'd like to access the same web service outside the Firewall 1.
    On our IS web server, we make use of the IIS plugin and wrote an
    iisproxy.ini as follows:
    WebLogicHost=d3dpc2
    WebLogicPort=8100
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    WLForwardPath=/weblogic
    PathTrim=/weblogic
    we insalled the IIS plugin accoring to the document
    "Using Web Server Plug-ins with WebLogic Server", starting
    with page 3-3, running through steps 1-7, 9-10.
    As a result, through the web page browser on the
    client machine outside the Firewall 1, we can
    obtain the WSDL through the following URL
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
    SDL
    >>
    At the bottom of the attached WSDL, we found that it appears as
    <service name="FileUpload">
    - <port name="FileUploadSoap" binding="s0:FileUploadSoap">
    <soap:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    - <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
    <http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    - <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
    <http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    </service>
    It presents to us the address is "http://d3dpc2:8100...."
    which is behind two of our Firewalls, which is, in turn,
    cannot be directly accessed by our client applications.
    As a result, if we run a java client applications to our web service
    by
    making use of
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
    SDL,
    we may obtain the WSDL but the subsequent method calls to our web service
    may be blocked. Are we mis-interpreting anything? Is it feasible
    for us to setup an IIS web service in between our client applications
    to our web service like that?
    We are pleased to provide further information, like our simple
    web service code, if not sufficient. Please offer help!
    Kenneth

  • Having trouble with the HTTP Server vi

    I'm having trouble using the HTTP Server program to view the front panel of my program remotely.
    When I initially start the server program everything works fine. However, the program hasn't been able to run for more than one or two days at a time before it freezes and won't display the front panel.
    The only clue I can see as to what is going on is that there are always several pending connections and active connections listed in the HTTP Server front panel when it isn't working properly. Stopping the server and starting it again fixes the problem temporarily and it works fine for another day or two.
    Any ideas about what might be causing this problem?

    Which OS do you have? Win95 and 98 are not very stable systems, so you might want to try with WinNT. You should be able to run the HTTP server for few days on WinNT.
    Since restarting the server solves the problem, maybe you can try to programmatically restart the server every 24 hours. This can be done within LabVIEW with the HTTP Server Control.vi. Be aware that this will close all the connections, not just the pending ones.
    Does this problem happen every couple of days, or are you able to run it sometimes for a longer period time? Is it related to how many clients request control?
    Also, take a look at the Access Log, and see if you notice anything strange at the time when the problem happens.
    I hope this helps.
    Have a pleasant day.
    Zvezdana S.
    Nat
    ional Instruments

  • Trouble with opening/creating Server Model Diagrams

    I created server model diagrams by drag-and-dropping specific tables from the Server Model Navigator. Is it supposed to take a LONG time
    for this step (e.g., 3 whole minutes for one table) or should it be basically "immediate"? They eventually made it, but seemed unreasonably long!
    I saved the diagrams, quit, and come back to the repository, see the diagram names, click on a diagram, verify the elements inside, everything
    looks good -- until I try to open the diagram, it (Design Editor) locks up every time!!
    Does anybody know why I'm having either one of the above problems? Is there any setting I need to configure?
    (By the way, I'm using Designer 6i with an Oracle 8.1.7 database.)
    Thanks in advance.
    Brenda

    Could be your memory. Designer takes alot to run, as you may know. Minimum should be 256mb. Close all apps and try to open
    the diagram again. I have had lots of trouble with my designer locking up!

  • Mail trouble with outgoing mail server

    For weeks now (relatively recent), MAC mail will not send consistantly. When I choose my outgoing mail server in the preferences panel and check "use only this server", Mail often will not send my message. If I leave that outgoing server as "none", my first outgoing message of the day will prompt me to choose one, and then subsequent messages are sent without asking. Inconvenient at the least - something's not right.
    Any help?

    Thanks for response.
    I have deleted ALL accounts (to start fresh) but the unused outgoing servers 'refuse' to leave
    I want to delete them to keep things tidy, also I have issues with using alternate outgoing server (next issue), so trying to start from the beginning again, before attempting to address next issue.

  • Trouble with MS SQL Server 2000 vs. Java

    Hi, how do i store binary files in database MS SQL Server 2000 ?
    How do I attach it to some information stored in the database?
    Can I do some sql statement in my java application to do this or do I have to use some MS SQL Server 2000 tools ?

    i wanted to store a binary object such as image fromk java file into ms sql 2000 server and retreive it using the preparedStatement how to accomplish the task
    please give me a hint with proper and simple example.
    thanking you...........

  • Console login trouble with Crystal Reports Server XI

    I installed Crystal Reports Server XI on a new box (replacing old), then applied SP1, and then SP2 bringing it up to the same level as the old box - Version Name: BOXIWIN_SP2 Build Number: 11.0.101.8004.
    However, when I restarted the server and logged into Windows, I received the error "CRSXI_MLB_Autorun.exe encountered a problem and needed to close." Although, all the services are running in Central Configuration Manager, I am unable to login to the Central Management Console with the default "Administrator" account (the screen just blanks the User Name: Administrator" field when I click "Log On".
    The new server is running Win2003 R2 Enterprise Edition SP2. Old server is running Win2003 Standard Edition SP2.  I am using the same install media as was used on the old server, though installation on the old server was done before W2K3 SP2 was installed. Could it be W2K3 SP2, or perhaps the use or R2 or Enterprise Edition?  Any thoughts on how to fix this so I can login to CMC?
    Regards,
    Joe

    XIR1 used to have issues with Microsoft DEP, I don't recall exactly but you can set DEP to windows services only from my computer > properties > data execution prevention.
    Also when logging in try changing the URL to (local host on the server, the IP address, or the FQDN) see if that helps. When there is no error the problem is likely not the CMS but could be in the web/app.
    I don't think anything that was installed should be starting a file called "CRSXI_MLB_Autorun.exe" Could that have gotten added to the windows run registry key or startup group by accident?
    Also if you login to a client tool like crystal reports, business views with administrator what error do you receive?
    Regards,
    Tim

  • Trouble with outgoing mail server

    When I try to send gmail I get an error message 'your acc does not have a preferred outgoing mail server'? I've had this before but can't remember what to do.Thanks.

    Who is your ISP? Normally they provide you the information you need when you sign up with one, i.e. user name and password, email address, smtp server address, pop and imap server addresses, authentification requirements, etc.
    If you haven't got that information to hand it's normally available with a quick Google search.
    I'm with Orange and just searched 'Orange smtp server settings' - this is what I got:
    http://help.orange.co.uk/orangeuk/support/personal/506007

  • Trouble with outgoing mail server in outlook - asking password

    Since yesterday I have a problem with outlook 2010 and icloud mail. I did not change any settings, but since yesterday I can't send emails via outlook.
    A popup comes up and asks me to insert the write password, which is of course the write one.
    My settings:
    ingoing server: imap.mail.me.com     Port 993     SSL
    outgoing server: smtp.mail.me.com   Port 587     TLS
    outgoing server needs authentifikation -> same as ingoing server
    [email protected]
    iCloud password
    Anyone a solution or the same problem?

    maxbrandes wrote:
    Since yesterday I have a problem with outlook 2010 and icloud mail. I did not change any settings, but since yesterday I can't send emails via outlook.
    A popup comes up and asks me to insert the write password, which is of course the write one.
    My settings:
    ingoing server: imap.mail.me.com     Port 993     SSL
    outgoing server: smtp.mail.me.com   Port 587     TLS
    outgoing server needs authentifikation -> same as ingoing server
    [email protected]
    iCloud password
    Anyone a solution or the same problem?
    Does your password meet these requirements:
    8 characters, minimum 1 Capital and 1 number?

  • Having trouble with my mail server- fastmail.fm - Firefox blocks it polling for mail when I want it to, etc

    Some websites - especially my mail provider cannot work properly with firefox 4. Every time it / they want to load a page / poll for information - there is a bar at the top of the page saying firefox prevented xxx loading this page - I can then click allow - but I have to do so EVERY time. I checked settings and I have allow popups. So I don't know why firefox is not working.
    I am running Mac OSX 10.6.7.
    Kind regards
    Nicki

    This is what I'd suggest get your machines matched. Sync your machines so all data is on both. Then pick one to get all of your organizing as you want it. (or do this before you even setup sync) Then, when you do your initial sync from that organized machine, select: replace all other devices with this computers data. (you can also do that as Manage Account > reset sync.
    After that, changes in order on one machine should be reflected on the other. Remember though Sync '''merges ''' the data from your machines. If you work on two machines side by side and make order changes on both without syncing either, once you do sync, Sync will have to again figure out how to merge the incongruities, which may not be what you expect.. Be careful, if order is important to you.

  • Trouble with outgoing smtp server since ios 7 upgrade

    I just traveled to europe and discovered once I got their that my outgoing mail settings were all reset. I am back and still cannot send emails or find magic combination of outgoing settings. Have tried switching off SSL...doesn't work . Anyone haveung this issue? A solution? Thanks.

    Hey PGG123,
    Thanks for the question. I understand you are experiencing issues with your Mail account. The following article may help to troubleshoot this issue:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/TS3899
    Thanks,
    Matt M.

  • Trouble with VPN on HH5

    hello,
    i very recently changed provider to bt about 2 days ago and while i have been connecting all of my devices back up i hit trouble with my VPN server.
    i have made my own firewall rule to allow 500 and 4500 to the VPN server so that i can connect externaly but the connection keeps on timing out. 
    i can connect internaly with no problems but when i try externaly it always fails.
    what could be causing this as i really need this working.

    carbonjoker wrote:
    hello,
    i very recently changed provider to bt about 2 days ago and while i have been connecting all of my devices back up i hit trouble with my VPN server.
    i have made my own firewall rule to allow 500 and 4500 to the VPN server so that i can connect externaly but the connection keeps on timing out. 
    i can connect internaly with no problems but when i try externaly it always fails.
    what could be causing this as i really need this working.
    You will see that a number of people in this forum have been reporting problems with VPN and the HH5; there is also a firmware problem with some HH3. It is possible that you too have have come up against these difficulties.
    However, I see that you are a new customer of BT and there are a couple of problems that BT puts in the way of customers of which you may not be aware.
    Go to http://preferences.webaddresshelp.bt.com/selfcare/preferences.cgi and turn off BT address help; it is not compatible with VPN.
    Also check that your address is not being shared http://btsupport.custhelp.com/app/answers/detail/a_id/44044/c/6433
    Michael

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • I am an iPad novice and whilst I have managed to set up my personal email, I have having trouble with my business email in that I can receive emails, but am unable to send and the message says 'this email address has been rejected by server'

    I am an iPad novice and whilst I have managed to set up my hotmail account on the iPad - I ham having trouble with my business email (I can receive emails, but cannot send and it says' email rejected by server'

    That sounds like a settings issue to me. Check with your IT depatment to make sure you have it configured properly.

Maybe you are looking for

  • Cross-Tab Report export to Excel

    I have a cross-tab report that I need to export to excel and keep the same formatting.  When I export the report the first column is Part # the next is operation #.  The report is grouped on Part number, but each part may have multi operation.  When

  • Error in SOAP sender CC. Channel stopped by administrative task.

    I am getting an error in my SOAP sender communication chanel as follows; com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Channel stopped by administrative task. The channel is Active

  • B1 8.8 EventLogger:  Cross-thread operation not valid

    Greetings, I'm  trying to run EventLogger on Windows Server 2008 for use with B1 8.8.  I converted EL to VS 2005, updated it to use the new UI for 8.8 and when EL runs it crashes as soon as it receives an event. The message is "Cross-thread operation

  • Do we get in SAP standard -Forms:25 & 26

    Hi Gurus, do we get in SAP standard below mentioned Forms: Form 25 :The form of declaration for not holding immovable property in any Urban Agglomeration, specified under the Urban Land (Ceiling and Regulation) Act, 1976, exceeding 500 sq. meters. Fo

  • Camera won't work in ichat or photo booth

    I have an built-in camera (isight) in my imac. when i try to do a video chat the camera just comes up black. The audio is working fine but not video. Help! I'm not computer savvy but I tried everything I could think of. Restarting didn't work, deleti