Meetingplace Express url redirect

I have an outside url pointing to my meetingplace express server. When typing in the outside url it redirects me back to the internal url for meetingplace, which I can not resolve when outside the organization. If I type the complete url and add /public/attendMeetings.jsf to the end everything works fine. I found a url redirect statement in the following location (/opt/cisco/meetingplace_express/tomcat/current/etc/webconf.properties) and changed it from the internal url to the outside url but it is still redirecting. My internal DNS server has the correct settings. Is there something else that I missing in Meetingplace Express, is there another location where the redirecting is taking place? Thanks for any help.

I found another forum listed by thisisshanky (http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Unified%20Communications%20and%20Video&topic=IP%20Telephony&CommCmd=MB%3Fcmd%3Dpass_through%26location%3Doutline%40%5E1%40%40.1ddddf3b)
that worked for me.

Similar Messages

  • MeetingPlace Express strange problem !

    Environment:
    MeetingPlace Express 1.1.1.11
    CallManager 4.1(3)sr2
    Voice Gateway 1: 2821 (c2800nm-advipservicesk9-mz.124-4.T.bin) + VIC2-4FXO
    Voice Gateway 2: 2621XM (c2600-advipservicesk9-mz.123-14.T5.bin) + NM-2V + 2* VIC-2FXO
    VG1 connect to CallManager using H.323, VG2 connect to CallManager using MGCP
    MeetingPlace Express connect to CallManager using H.323.
    Problem:
    When dial-in from PSTN to VG1 and VG2, both are well; but when using "Find-Me" feature, MeetingPlace express dial to user, users via VG2 are can sent dtmf with MeetingPlace Express, but users via VG1 can not sent any dtmf digit to MeetingPlace Express. So users via VG1 can not enter the meeting.

    For more information the following url would be useful,
    http://www.cisco.com/en/US/products/ps6533/products_installation_guide_book09186a008057b547.html

  • Meetingplace express time changing

    Hello!
    We are going to change the time in Meetingplace express (cause of upcoming DST).
    Does anybody know, will the time of scheduled and past meetings be affected?

    For more information the following url would be useful,
    http://www.cisco.com/en/US/products/ps6533/products_installation_guide_book09186a008057b547.html

  • MeetingPlace Express-Prevent Scheduling

    Is it possible in MeetingPlace Express to prevent a profiled user from schduling a meeting?  I have 2 groups, System, and one called full meeting room.  The first group Is my default group for users when they first create a profile.  I want this group not to be able to schedule any voice, video, or web.  I just want them to participate. The second group contains the ability to schedule web, video, and voice.  I have taked out the video and web, but the system group users can still schedule a meeting with voice.  I would like to prevent that.
    Thanks.

    For more information the following url would be useful,
    http://www.cisco.com/en/US/products/ps6533/products_installation_guide_book09186a008057b547.html

  • Securing LDAP on Meetingplace Express

    Hello,
    I'm looking to harden the security of a MeetingPlace Express (V2.0.1.15).
    SSL has been implemented successfully resulting in https browsing only.
    The next step is to integrate with AD for user authentication over a secure link. The Bind requests currently are simple (i.e. clear text userid and password) which is not secure.
    Can anyone advise on how this can be configured to use SSL/TLS for the LDAP queries. This is a standalone MPX in that I do not have a Cisco Call Manager to secure the queries.
    Thanks.

    You will need to install the AD Plugin for CallManager before this.
    Complete these steps in order to integrate MeetingPlace Express with Active Directory (AD):
    - Log in to Cisco Unified MeetingPlace Express.
    - Choose Administration at the top of the page.
    - On the left side of the page:
    Choose System Configuration.
    Choose Usage Configuration.
    - Configure these fields:
    Cisco CallManager version-Set this field to Cisco Unified CallManager Release 4.x.
    LDAP URL-Set this field:
    Make sure that this URL starts with ldap, not http. For example, ldap://server-ip-address:port/
    Make sure that there are no spaces after the URL.
    Directory username-Use the format of an LDAP distinguished name, for example:
    Password-Use the password that was specified during the Cisco Unified CallManager installation.
    Cisco base
    User base
    Directory type
    - Click Save.

  • Can URL redirects be configured with XE and what is the HTTP Server

    I would like to be able to URL redirects. I'm running XE with Application Express 2.1.0.00.39.
    I want to be able to have a URL like www.schoolwebsite.com and when the user hits it - have it redirect to the Apex page for the application. I was thinking that I needed to use a redirect in the HTTP config file, and that XE used Oracle_HTTP and I could configure in that manner.
    But, I can't find an Apache directory.
    1. What HTTP server is used with XE and Application Express 2.1.0.00.39?
    2. Can I configure for this type of redirect?
    3. Do I need to install an HTTP server to accomplish this?
    Thanks,
    Stephen

    Hi Steven,
    search for "proxy" in this forum.
    It explains how to configure a plain Apache http server as a proxy to XE. Then you can use the default mechanisms to rewrite an url.
    Here is an example (save the file as XE.conf and store it in the Apache conf directory (file httpd.conf is there).
    The following instructions are valid for Apache2.
    # Activate the following modules in httpd.conf:
    #LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    #LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    #LoadModule headers_module modules/mod_headers.so
    # include the XE configuration (this file XE.conf) in httpd.conf:
    #include "conf/XE.conf"
    # XE listener is buggy, thus downgrade to http 1.0
    SetEnv force-proxy-request-1.0 1
    RewriteEngine On
    RewriteLog "D:\Programme\Apache Group\Apache2\logs\rewrite.log"
    RewriteLogLevel 0
    ## Rewrite requests /apex, /i, /public, /sys to locally installed XE
    RewriteCond %{REQUEST_URI} /(([^/]+)(/.*)*)$
    RewriteCond %2 =apex [OR]
    RewriteCond %2 =i [OR]
    RewriteCond %2 =public [OR]
    RewriteCond %2 =sys
    RewriteRule ^/(.*) http://%{SERVER_NAME}:8080/%1 [P]
    ## Rewrite main page
      RewriteEngine On
      RewriteRule ^/$       http://%{SERVER_NAME}/apex/f?p=107:1 [R]
      RewriteRule ^/index.html$       http://%{SERVER_NAME}/apex/f?p=107:1 [R]
    ## Rewrite /app1
      RewriteRule ^/app1$      http://%{SERVER_NAME}/apex/f?p=107:1:0 [R=303]Regards,
    ~Dietmar.
    Edited by: Dietmar Aust on Oct 14, 2008 1:16 AM

  • How to do auto URL redirect in sun web server ?

    Hi, i need to do auto url redirect in my sun web server. Currently i'm setup some rules for the reverse proxy in obj.conf file and the syntax looks like:
    <Object name="reverse-proxy-/test">
    <If $internal and $uri =~ "index.html">
    NameTrans fn="redirect" from="/" uri="/examples/abc.html"
    </If>
    Route fn="set-origin-server" server="http://localhost:8989"
    </Object>
    The situation is:
    1) When users browse "*http://localhost/examples/abc.html*" it will redirect to abc.html
    2) When users browse "*http://localhost/test*" it will redirect to the localhost admin GUI (http://localhost:8989/admingui/admingui/serverTaskGeneral)
    My desire output should be whenever users browse the "*http://localhost/test*" , it will redirect to abc.html page.
    the syntax might be wrong. So, anyone knows how to fix this? I'm keep trying but nothing worked. Please help me.

    Moderator action: Moved from Servers General Discussion.
    db

  • Need help with URL Redirect in Sun Web Server 7 u5

    All I am trying to do is redirect to a static URL and for the life of me I can not get it to behave the way I would expect. I am new to Sun Web Server so I am just trying to use the Admin Console to set this up.
    Here is what I'm trying to do:
    Redirect from - http://www.oldsite.com/store/store.html?store_id=2154
    To - http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    Here's what I tried in the console.
    Added a new URL Redirect
    Set the Source to be Condition and set it to: '^/store_id=2154$' (quotes included)
    Then set the Target to: http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    Then for the URL Type I checked Fixed URL
    When I tested with: http://www.oldsite.com/store/store.html?store_id=2154 it did redirect as desired
    BUT
    When I tested with: "http://www.oldsite.com/store/store.html?store_id=5555" it too got redirected to the Target and I can't figure out how this second URL can satisfy the condition to get redirected.
    Any help is most appreciated.

    thanks for choosing sun web server 7
    it is simpler if you just edit the configuration files manually
    cd <ws7-install-root>/https-<hostname>/config/
    edit obj.conf or <hostname>-obj.conf (if there is one for you depending on your configuration so that it look something like)
    <Object name="default">
    AuthTrans..
    #add the folllowing line here
    <If defined $query>
    <If $urlhost =~ "/oldsite.com" and
    $uri =~ "/store/store.html" and
    $query =~ "store_id=2154" >
    NameTrans fn="redirect" from="/" http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    </If>
    </If>
    ..rest of the existing obj.conf. continues
    NameTrans...
    now, you can either do <ws7-install-root>/https-<hostname>/bin/reconfig -> to reload your configuration without any server downtime or <ws7-install-root>/https-<hostname>/bin/restart -> to restart the server
    if it did work out for your, you will need to run the following so that admin server is aware of what you just did
    <ws7-install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname.domainname>
    hope this helps

  • Is there a way to create a popup to a page in URL Redirect ?

    I have a button (also with a report link column) that is doing a URL Redirect to another page in my app. This works fine.
    However, some pages I branch to are small forms and a popup of that form would be more appropriate.
    Is there any way to create a URL Redirect that redirects as a popup rather than a page navigation? Similarly, can you branch to a popup page with a report link column?
    Thanks,
    Reid
    Edited by: reidster on Jul 30, 2009 7:10 PM

    With your help, I was able to create a popup on a report link column using this:
    I just added an "a href" around it.
    Thanks again!
    Edited by: reidster on Jul 30, 2009 10:18 PM
    Edited by: reidster on Jul 30, 2009 10:18 PM

  • How to change system time on Cisco MeetingPlace Express Server

    How to change system time on Cisco MeetingPlace Express Server
    Model MCS-7825-I4

    Hi Vijay,
    As per the install guide for MPX 1.x as well as 2.x "Caution! Be sure you enter the correct date and time. You must reinstall the Cisco Unified MeetingPlace Express operating system and application if you need to change the date or time of your server in the future."
    http://docwiki.cisco.com/wiki/Cisco_Unified_MeetingPlace_Express,_Release_2.x_--_Configuring_the_Cisco_Unified_MeetingPlace_Express_Server#Configuring_the_Cisco_Unified_MeetingPlace_Express_Server
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/meetingplace_express/1_2/english/installation/guide/iug/mpxinst3.html
    HTH
    Manish

  • Set item value at other page via URL-redirect

    Hi, I have a button and I want to open a new window with it using an url-target.
    </br>
    </br>
    javascript:window.open ('f?p=&APP_ID.:143:&SESSION.::NO:143:P143_KDT_ID,P143_MESSAGE:&P140_KDT_ID.,&P140_MESSAGE.') </br>
    </br>
    When I use branching I get an error that there is no page to branch to. I don't understand why. As a workaround I use an url-redirect when the button is pressed, but I'm stuck on getting the current item value into the target page. I tried using $v('P140_MESSAGE') but I can't get the url valid.

    Jacob,
    The problem was that when the HTML for the button is rendered, the value of P1_ITEM from session state was "glued in" to the generated URL at that time. If you then entered a value for the iterm, even though your onChange AJAX technique changed the value in session state it was too late to change the already generated HTML for the button, specifically the URL target for the button.
    I created a Set Item2 button on your page with this for the URL attribute:
    javascript:window.open('f?p=&APP_ID.:2:&SESSION.::NO::P2_ITEM:' + document.getElementById('P1_ITEM').value);
    Let me know if that does what you need.
    There is another problem and I don't know the cause. When you click the button, it opens the new window properly but leaves the original page in an error state of some kind. I could not reproduce this in my application using the same js, so I'll be interested in how you solve that.
    Scott

  • Disk space problem on MeetingPlace Express

    I get the email below daily. I'm thinking it's ok to cat /dev/null the cma.log file?
    I also think I might be able to do the same thing to stdout.old?
    Anything else I should try other than the instructions?
    * Directory listing
    [mpxadmin@meeting ConfSchd]$ ls -la
    total 3036516
    drwxrwxr-x    2 mpxadmin mpx          4096 Aug  2 13:27 .
    drwxrwxr-x   17 root     mpx          4096 Nov  4  2009 ..
    -rw-rw-r--    1 mpxadmin mpx             0 Nov  4  2009 ActConf.lk
    -rw-rw-r--    1 mpxadmin mpx             0 Nov  4  2009 Attach.lk
    -rw-rw-r--    1 mpxadmin mpx             4 Dec 22  2012 confId
    -rw-rw-rw-    1 mpxadmin mpx           391 Apr  5  2010 pegstats
    -rw-rw-r--    1 mpxadmin mpx        255639 Aug  2 14:25 stderr
    -rw-rw-r--    1 mpxadmin mpx       1152127 Dec 22  2012 stderr.old
    -rw-rw-r--    1 mpxadmin mpx      516106727 Aug  2 16:50 stdout
    -rw-rw-r--    1 mpxadmin mpx      2588797008 Dec 22  2012 stdout.old
    -rw-rw-r--    1 mpxadmin mpx             0 Nov  4  2009 TCMap.lk
    [mpxadmin@meeting ConfSchd]$
    * EMAIL
    This is an automated message from the MeetingPlace Express system with
    hostname [meeting.afgrp.com] to inform you that disk space is low.
    Details on where the problem is and how to resolve it are indicated below.
    Low space in partition /. Percent used = [90].
    The following files might cause trouble. However, inspect each one to make sure.
    Look specifically for large files with old timestamps. Also, note that some of
    the files indicated might have been previously mentioned. In this case, use the
    prior instructions to handle these files rather than the instructions below.
    If you are uncertain, contact Cisco TAC for confirmation/advice.
    For the files below, use the following procedure to empty these files rather than
       delete them outright.
             1. For each file to be emptied do:
                 cat /dev/null > <filename>
             2. After all files that you wish to empty have been emptied, do:
                 su   // Enter 'root' password.
                 mpx_sys restart
    -rw-rw-r--   1 mpxadmin mpx     283120801 Apr 11 02:00 /var/mp/ConfSchd/stdout
    -rw-r-----   1 root     root     127007041 Dec 22 05:30 /var/spool/compaq/cma.log
    In general, to free up disk space where it is uncertain exactly what files are in question,
       do the following:
    1. In general, go to places like /root, /mpxadmin, /tmp and do "ls -la" to look
         for large files. If a file is large, old, and seems like some kind of log or
         error file, it could be a candidate for deletion.
    2. Generally files of type log (*.log), stderr, stdout, or txt (*.txt) are the
         best candidates to look for. A good command to look for these types of
         files with size of 10,000,000 bytes or larger is:
           find / -name "<file type>" -exec ls -la {} ; | awk '{if( >=10000000) {print} }'
         For example, to look for all log files 10,000,000 bytes or larger on
           the entire system:
             find / -name "*.log" -exec ls -la {} ; | awk '{if($5 >= 10000000) {print} }'
    3. If you have a specific problem partition that you are trying to reduce size
         for, do the following:
         1. Find out the directory name of the top of the partition from "df".
         2. "cd" to that location.
         3. Then do: du -x -b --max-depth=1
         4. Look for the directories that are really large.
         5. Then "cd" into the worst subdirectory (or subdirectories).
         6. Get a list of all large files from current directory location and lower:
               (This example assumes 10,000,000 bytes and a check for .log files.
                   Note the starting location of '.' (current location) rather
                   than '/' (entire disk) ).
               find . -name "*.log" -exec ls -la {} ; | awk '{if($5 >= 10000000) {print} }'
    Complete output of the 'df' command:
    Filesystem           1K-blocks     Used Available Use% Mounted on
    /dev/sda1             6048320   5111204   629876 90% /
    /dev/sda6             4032092   767336   3059932 21% /common
    /dev/sda2             8064304   6492268   1162380 85% /db
    /dev/sda9               256667     8416   234999   4% /grub
    /dev/sda7           122154520   110696 115838720   1% /mpx-record
    /dev/sda5             5036284   3577128   1203324 75% /opt
    /dev/sda3             6048352   109032   5632080   2% /partB
    none                   1026932     22624   1004308   3% /dev/shm

    Hi Josh,
    It seems that the root partition of the MeetingPlace Express server is almost full. I have attached a document for your reference which can be used to minimize the disk space issues.
    Once the steps mentioned in the attached document are completed, run the command "df" to check the disk space.
    If you do not see much improvement in the root partition, then in that case some other files might need to be removed from the server to increase the root partition space.
    If any of the partitions reach upto 90% or above, then the server might behave unexpectedly.
    Feel free to revert if you have face any issues or have any queries.
    Regards,
    Rishabh

  • URL redirection config in PI SOAP receiver communication channel

    Hi,
    I am working on a similar scenario where I my consuming an external web service using https protocol from PI.
    I have configured a soap receiver channel to call the target url of this web service as https://portal.xyz.org.uk/webservice_alt.
    I am getting an error HTTP 302 suggesting that PI is not able to follow the re-direction to the target URL as the service resides not on that URL but on https://portal1.xyz.org.uk/webservice_alt or https://portal2.xyz.org.uk/webservice_alt.
    This is their server fail over handling mechanism which is very common. But PI 7.0 is not able to handle this.
    So if I change the target URL on the SOAP receiver channel to  https://portal1.xyz.org.uk/web service  or  https://portal2.xyz.org.uk/webservice_alt , PI works fine without errors . But this is not the right approach because, every time the web service provider takes one of these systems down for upgrade/patching etc, they inform us and then I manually go and change the target URL to the available server on my production PI system config.
    My problem is I want to resolve this redirection error in PI. I have tried raising a call with SAP itself and they pointed out to use Axis adapter which is still not working.
    So I am here asking for help. any suggestions please from the experts?
    Thanks
    Jhansi.

    Hi guys,
    I am sorry if I have not been clear so far!!
    What I am talking about is a URL redirection capability of PI. what i mean is , when you call any service in general using a browser/soap ui etc, it pings that url and follows the redirection.
    For example when i try to test this external web service directly using soap ui tool, it also returns HTTP 302 error. But when I set the 'Follow redirect' property to 'true' , it follows the redirection and calls the service on 'portal1' or 'portal2' .
    You assume PI is a test tool like SOAPUI. When the address or URL changed in WSDL and if you load the latest WSDL in soapUI it post the request to the latest URL. YOu import WSDL only in ESR not in IR. Dont forget it. Though WSDL has soap address location, it will not impact the wsdl changes directly in ID.
    It makes no sense to complain regarding the behaviour of PI when the reason for the problem is outside (WS provider).
    please note that the target url is fixed which is  https://portal.xyz.org.uk/webservice_alt.
    so we are not talking here about the service provider altering the service and sending us new wsdl's etc.
    All users of this webservice have been non-sap users so far and consumers use java, .net etc platforms and are easily able to handle the redirection.because this redirection is a part of failover mechanism.
    I hope i am able to picture my problem.
    thanks
    Jhansi.

  • ISE url-redirect CWA to Gig1

    Hello,
    say I want to have five ISE 1.3 nodes behind load balancer, I want only only G0 behind LB, and G1 interfaces will be dedicated for certain things. Specifically I want to use G1 interface for Redirected Web Portal access (could be CWA, device registration, NSP, etc). RADIUS auth will happen through LB on G0 of some specific PSN, and that PSN will url-redirect user to the CWA URL.
    How do I tell ISE to use specifically Gig1's IP address or Gig2's IP address? When I check result authorization profile, there is no option there, it's just ip:port. Obviously, that's not the right place, because which PSN is used to processed the policy is unpredictable.
    So then I go to guest portal, and specifically Self-Registered Guest Portal that I'm using. So here I see Gig0, Gig1, Gig2, and Gig3 listed. My guess is that if I only leave Gig1 selected then I will achieve my goal, is that correct?
    But then, why does it let me choose multiple interfaces, what happens if I select all of them?
    Am I missing another spot in ISE admin where I can control this?
    Additional question. I know that in ISE 1.2 you could configure "ip host" in ISE's CLI, which would force URL-redirect response to be translated to FQDN:port. Is that still the right method in ISE 1.3?
    Thanks!

    Take a look at the following document:
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-3/installation_guide/b_ise_InstallationGuide13.pdf
    Towards the end of the document you will find a section called: "Cisco ISE Infrastructure" and there you will see the following:
    • Cisco ISE management is restricted to Gigabit Ethernet 0.
    • RADIUS listens on all network interface cards (NICs).
    • All NICs can be configured with IP addresses.
    So, you can take an interface, give it an IP address and then assign it to the web portal that you are working with. 
    I hope this helps!
    Thank you for rating helpful posts!

  • ISE & Switch URL redirect not working

    Dear team,
    I'm setting up Guest portal for Wired user. Everything seems to be okay, the PC is get MAB authz success, ISE push URL redirect to switch. The only problem is when I open browser, it is not redirected.
    Here is some output from my 3560C:
    Cisco IOS Software, C3560C Software (C3560c405-UNIVERSALK9-M), Version 12.2(55)EX3
    SW3560C-LAB#sh auth sess int f0/3
                Interface:  FastEthernet0/3
              MAC Address:  f0de.f180.13b8
               IP Address:  10.0.93.202
                User-Name:  F0-DE-F1-80-13-B8
                   Status:  Authz Success
                   Domain:  DATA
          Security Policy:  Should Secure
          Security Status:  Unsecure
           Oper host mode:  multi-domain
         Oper control dir:  both
            Authorized By:  Authentication Server
               Vlan Group:  N/A
         URL Redirect ACL:  redirect
             URL Redirect:  https://BYODISE.byod.com:8443/guestportal/gateway?sessionId=0A005DF40000000D0010E23A&action=cwa
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  0A005DF40000000D0010E23A
          Acct Session ID:  0x00000011
                   Handle:  0xD700000D
    Runnable methods list:
           Method   State
           mab      Authc Success
    SW3560C-LAB#sh epm sess summary
    EPM Session Information
    Total sessions seen so far : 10
    Total active sessions      : 1
    Interface            IP Address   MAC Address       Audit Session Id:
    FastEthernet0/3       10.0.93.202  f0de.f180.13b8    0A005DF40000000D0010E23A
    Could you please help to explore the problem? Thank you very much.

    With switch IOS version later than 15.0 the default interface ACL is not required. For url redirection the dACL is not required as this ACL is part of traffic restrict for "guest" users.
    In my experiece some users can not get the redirect correctly because anti-spoof ACL on management Vlan or stateful firewall blocks the TCP syn ack.
    It is rare in campus network access layer switches have user SVI configured so the redirect traffic has to be sent from the netman SVI, but trickly the TCP SYN ACK from the HTTP server will be sent back from the netman Vlan without source IP changed. (The switch is spoofing the source IP in my understanding with changing only the MAC address of the packet). In most of the cases there should be a basic ACL resides on the netman SVI on the first hop router, where the TCP SYN ACK may be dropped by the ACL.
    tips:
    1. "debug epm redirect" can make sure your traffic matches the redirect url and will get intercepted by the switch
    2. It will be an ACL or firewall issue if you can see epm is redirecting your http request but can not see the SYN ACK from the requested server.
    Which can win the race: increasing bandwidth with new technologies VS QoS?

Maybe you are looking for

  • WebUtil Problem - Open File - Francois Degrelle  Please reply

    Dear Francois I'm facing a problem file trying to open file dialogue 1. Created a Module with two items 1. Push button 1. Text Item 2. Created trigger "When Button Pressed" with code DECLARE      LC$Path VARCHAR2(250);      LC$File VARCHAR2(275); BEG

  • DBMS_OUTPUT.PUT_LINE Issue

    Hi All, I have created one simple package to create the log file. It's generating the log file but it's not writing anything in the log file. Please let me know what's wrong. I'm using Windows 2000 and Oracle 9i Here is the Code : CREATE OR REPLACE P

  • WGate not connecting to Agate u0096 Download Pop-Up instead

    When entering http://domain/scripts/wgate/IAC/! instead of starting the IAC I get the Opening ! Pop-up asking to save “!”   I moving an existing working dual-host system from WIN2000 servers to WIN2003 servers 32bit.  ITS v6.2 patch12.  I’ve compared

  • ODBC mapping in asp script

    How do I code for oracle database in asp to interact with database? I know I may sound stupid in this. DSN: Set Conn = server.createobject("ADODB.Connection") Conn.Open "dsn=oradb;uid=test;pwd=test" Set Res = Server.CreateObject("ADODB.RecordSet") ab

  • Final Cut X brings up interface and then says loading compressor and then the computer hangs.

    Final Cut X hangs the computer (G5 with 6 terabytes of disk and on san network using optical cable).  The interface appears, a loading compressor message appears, and several minutes later FCX not responding can be seen on the force quit panel.  The