Hosting Projects on a different server?

Hi,
I am using a custom LMS with captivate projects. This works fine, but some customers from other countries report, that the communication to the LMS is very slow. So it takes very long until the captivate course is fully loaded.
So my question, is it possible to host the package on a different server? I.e. the server is located in Europe on mydomain.com and the package let's say in china on myotherdomain.com. Because of problems with cross site scripting, documentation says it is not possible.
My last idea was to just create a simple captivate projects, which can be uploaded to LMS, and then loads the content from myotherdomain.com.
Could this be realized? Need advice on this.
Or any other possible solution?
Thanks in advance
lms21

Is the storage server in the same local network as the FMS server? If so, you can set up the storage drive as a network share, and then configure that drive (or a directrory on that drive) as a virtual directory in FMS.
If the storage server is not in the same network, it wouldn't be practical.

Similar Messages

  • Host Central Admin from different server

    Hi,
    I have central admin on one of my application servers. it is working fine. Now, the server which hosts Central Admin will be shut down as a part of DR testing. Once this goes down, Central Admin will not be accessible. Is there any way to make it available
    even when the server is down?

    HI Sunny,when you run the ps config wizard on the other server that you want to make CA server.in the advanced settings ,check the box to use that servers to host the web site,once PSconfig runs successful it also acts as CA server.
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • How to save Final Cut Pro project to an ftp server to then open on a different computer

    Hello, I work for a graphic design firm that also does video production for businesses. We are using Final Cut Pro X in our office which has an FTP server connected to all office computers.
    What we want is to be able to have on employee start a project in Final Cut Pro X, save it to the server; then have another employee open up the same project and continue working from a different computer.
    Right now, we have a lot of our Final Cut files saved to the server, and the files will show up in the server on the other employee's machine. BUT, we scroll in the server to the file for the Final Cut Pro project on the other computer, and the file is grayed out, unable to be opened on the new computer.
    I've tried right clicking and choosing "open with Final Cut" and Final Cut does then open, but right before it opens the project within Final Cut, a message comes up saying "The document could not be opened. Open documents from within Final Cut Pro," which of course, I see no way to do that from within Final Cut Pro.
    I've also called Apple Care, they reminded me that we can't have one project open on two computers at the same time, and that's fine. We are willing to close the project on computer one to then open on computer two.
    If you have an answer let me know. We don't want to have to load onto an external hard drive to then load onto the other machine, especially since we have a server ready to go.
    Thanks for your help.

    You can share projects via the ftp server, but you need to:
    1) Have all the media in identical events on each editor's machine;
    2) Set up the project  and share the entire folder for that project first;
    3) Afterwards, you can share just the project file itself
    You CANNOT work directly on projects and events stored in the ftp server.
    See Steve Martin explain how to do all this: http://www.youtube.com/watch?v=Hu-ga7fxKh8

  • Trigger Between two DB located on different Server

    Hi Everyone,
    According to my project requirement I need your help to create a trigger on one table employee of my 10g DB located on server 172.128.1.62, which will trigger for any Delete, Update and Insert and update the same on its duplicate table located on different server(172.128.1.201).
    Eg:
    Table EMPLOYEE (on 172.128.1.62) refer as A
    SrNo        E_Name      Salary
    1             Fizzz           5000
    2             Albert        8000
    3             John          6500
    Table EMPLOYEE (on 172.128.1.201) refer as B
    SrNo        E_Name      Salary
    1             Fizzz           5000
    2             Albert        8000
    3             John          6500
    Now If I update table A and change salary of John from 6500 to 7000 and delete Employee Fizzz from table A
    Then I need a trigger to get fired and update the same in table B
    After table A updated table B should look like:
    Table EMPLOYEE (on 172.128.1.201) refer as B
    SrNo        E_Name      Salary
    1             Albert        8000
    2             John          7000
    I already scratch my head but did not find anything, Now this is became very critical requirement, Please somebody help me to achieve this task.
    Thank you very much,
    Fizzz. Edited by: Fizzz on Sep 22, 2011 4:36 PM

    I would not consider doing it myself with triggers. It will practically be guaranteed that at some point in time your data in B will by out of sync with A.
    There are several methods of doing replication. At least two technologies can be chosen from:
    [url http://download.oracle.com/docs/cd/E11882_01/server.112/e10706/toc.htm]Advanced replication
    [url http://download.oracle.com/docs/cd/E11882_01/server.112/e10705/toc.htm]Streams replication
    Both can be setup in various ways ranging from simple two-database one-way replication that refreshes periodically (for example a fast refreshable materialized view) to multi-database multi-way replication of complete schemas.
    We have had success with relatively simple materialized views for one-way replication of tables from one database to another. Read chapter 3 in the Advanced replication guide ;-)

  • Trying to use FTP to get data from a different server

    Hi Friends,
        I have to use FTP to get data from a different server and upload it on SAP server. Now my problem is when I m trying to do ftp through command line it brings the file but with no data.
       Through ABAP program nothing is happening.
    Here's my code--
      V_PASSWORD = 'test@123'.
      V_PWD_LEN = STRLEN( V_PASSWORD ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = V_PASSWORD
          SOURCELEN   = V_PWD_LEN
          KEY         = CS_KEY_500098
        IMPORTING
          DESTINATION = V_PASSWORD.
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          USER            = 'test'
          PASSWORD        = V_PASSWORD
          HOST            = '176.0.1.6'
          RFC_DESTINATION = 'SAPFTPA'
        IMPORTING
          HANDLE          = MI_HANDLE
        EXCEPTIONS
          NOT_CONNECTED   = 1
          OTHERS          = 2.
      CHECK SY-SUBRC = 0.
      cmd = 'lcd d:\ftp'. .
      PERFORM FTP_COMMAND USING CMD.
      CMD = 'asc'.
      PERFORM FTP_COMMAND USING CMD.
      CONCATENATE 'dir' 'ftpt*' INTO CMD SEPARATED BY SPACE.
      PERFORM FTP_COMMAND USING CMD.
      cmd = 'ls'.
    concatenate 'ls' INTO CMD SEPARATED BY SPACE.
      PERFORM FTP_COMMAND USING CMD.
      cmd = 'mget trial.txt'.
    CONCATENATE 'mget' 'trial.txt' INTO CMD SEPARATED BY SPACE.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          HANDLE        = MI_HANDLE
          COMMAND       = CMD
        TABLES
          DATA          = MTAB_DATA1
        EXCEPTIONS
          TCPIP_ERROR   = 1
          COMMAND_ERROR = 2
          DATA_ERROR    = 3
          OTHERS        = 4.
      IF SY-SUBRC = 0.
        LOOP AT MTAB_DATA1.
          WRITE: / MTAB_DATA1.
        ENDLOOP.
      ELSE.
        CONCATENATE 'Error in FTP Command while executing' CMD INTO ERROR SEPARATED BY SPACE.
        WRITE: / ERROR.
      ENDIF.

    Hi
    try this.....in one of my reqt, i done this successfully....
    FORM FTPCON.
    FTP-------------------------------------------------------*
      CLEAR DSTLEN.
      SET EXTENDED CHECK OFF.
      DSTLEN = STRLEN( S_PWD ).     -
    >  (S_PWD (password) is a selection screen field )                  
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = S_PWD
          SOURCELEN   = DSTLEN
          KEY         = KEY
        IMPORTING
          DESTINATION = S_PWD.
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          USER            = P_USER                   -
    > Username
          PASSWORD        = S_PWD             -
    > password
          HOST            = P_HOST                  -
    > Host
          RFC_DESTINATION = P_DEST         -
    > Destination
        IMPORTING
          HANDLE          = HDL
        EXCEPTIONS
          NOT_CONNECTED   = 1
          OTHERS          = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          HANDLE        = HDL
          COMMAND       = 'set passive on'
        TABLES
          DATA          = RESULT
        EXCEPTIONS
          TCPIP_ERROR   = 1
          COMMAND_ERROR = 2
          DATA_ERROR    = 3.
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          HANDLE         = HDL
          FNAME          = G_FCNAME
          CHARACTER_MODE = 'X'
        TABLES
          TEXT           = T_FILE1
        EXCEPTIONS
          TCPIP_ERROR    = 1
          COMMAND_ERROR  = 2
          DATA_ERROR     = 3
          OTHERS         = 4.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          HANDLE         = HDL
          FNAME          = G_FCNAME1
          CHARACTER_MODE = 'X'
        TABLES
          TEXT           = T_FILE2
        EXCEPTIONS
          TCPIP_ERROR    = 1
          COMMAND_ERROR  = 2
          DATA_ERROR     = 3
          OTHERS         = 4.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          HANDLE = HDL.
      CALL FUNCTION 'RFC_CONNECTION_CLOSE'
          EXPORTING
            DESTINATION          = P_DEST
          EXCEPTIONS
            DESTINATION_NOT_OPEN = 1
            OTHERS               = 2.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    ENDFORM.                    " FTPCON
    Hope it helps.....

  • How fetch data from a view(which is located in different server) using Oracle APEX webservices

    Hi,
    I have a requirement to fetch the view data from client instance(which is different server) to another instance lets say Development instance
    Requirement:
    Need to get the Apps View data from the Desired EBS instance(which is accessible online) using webservices,and display it in the Oracle Apex Development Instance.
    Kindly provide your inputs how to achieve this.
    Thanks in advance
    keerty

    Are you getting an error? The way you have it set up, you can have an error and it will never be displayed. Put and error control on your front panel and see what it gives you. Also, shared variables in a project can be useful. Look at some examples for that.

  • Unable to create dataset against OLAP Cube from different server

    Hi guys,
    If I load Microsoft SQL Report Builder on the BI Server, I am able to create a dataset against the OLAP Cube I created on the BI Server, however if I try to run the Report Builder from a different server I get the following error:
    "Unable to connect to data source 'MyOLAPCube'.
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 172.20.112.82:2382
    A connection cannot be made to redirector.  Ensure that 'SQL Browser' service is running."
    I have had no issues starting the SQL Browser service, however if I try to run it in console mode, I get the following error:
    'SQLBrowser: Warning: failed starting OLAP redirection services with error 1.'
    I have checked online and seen a few similar issues online however I haven't been able to resolve my issue with their resolution.
    Any help is appreciated.
    Many thanks
    Richard

    Yeah there is a firewall running on both servers, however I had opened port 2383 and was still unable to make a connection.  It is using a named instance on the server (servername/instancename) and it is configured to use port 0, so I therefore assume
    it should be using port 2383 by default?  Or as it's a named instance, is the default port 2382? Maybe it would be better to configure it to use a specific port and open the port on the firewall?
    Hi Rfla,
    As you can see on the link below
    http://technet.microsoft.com/en-us/library/ms174937(v=sql.110).aspx
    Named instances use dynamic port assignments. As the discovery service for Analysis Services, SQL Server Browser service listens on TCP port 2382 and redirects the connection request to the port currently used by Analysis Services.
    So you can open the port 2382 for Named Analysis Services Instance remote connect.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Connect with different server for debugging

    hi to all,
    is it possible to connect to a different server for debugging? this is to share the development environment !!
    please advise.

    Hi,
    Thanks for your question
    You can create SharePoint 2013 project in your Visual studio 2013 without installing SharePoint on your local machine.
    Please follow below steps : Go to the server where SharePoint 2013 is installed and follow steps from 1 to 3
    Go to Run and type "regedit"
    Navigate towards HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office
    Right click on 15.0 and click Export. Save the exported file
    Now go to your machine where sharepoint is not installed and follow below steps:
    Now open Registry on your machine
    Import the 15 directory which was exported from SharePoint server
    Open Powershell
    Run this command
    Set-ItemProperty -Path "HKLM:\Software\Microsoft\Shared Tools\web server extensions\15.0\" -Name "Location" -Value "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\"
    Now open visual studio 2013 and you will be able to create SharePoint 2013 project without error.
    I hope this is helpful to you. If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Recovering a datafile from backup in different server

    Hi All,
    I usually take hot backup of datafiles to different server like this because i dont have enough space in same server. I
    SQL> alter tablespace XXXX begin backup;
    host scp /bu1/oradaTA/XXXXX/XXXXX [email protected]:/db1dw/oradata/backup/dec2010/XXXX
    alter tablespace OPS end backup;
    If i want to recover the datafile can i normally do the offline drop of that datafile and copy the datafile from backup which is in differnet server thorugh scp and make the datafile online??? and the database is in archivelog mode but i dont care abt the log files. i just need to recover the datafile as it was from last backup.
    or do we need to use any recover datafile commands?? if need to use any recover datafile command from where it will recover the datafile??
    i dont have any scripts for backup or recovery , i just take manual scp of the datafiles.
    Help plzz, thanks in advance.....

    SQL> alter tablespace XXXX begin backup;
    host scp /bu1/oradaTA/XXXXX/XXXXX [email protected]:/db1dw/oradata/backup/dec2010/XXXX
    alter tablespace OPS end backup;What is the version you are using? is it 9i if not you can peform backup at database level instead of tablespace level.
    If i want to recover the datafile can i normally do the offline drop of that datafile and copy the datafile from backup which is in differnet server thorugh scp and make the datafile online??? and the database is in archivelog mode but i dont care abt the log files. i just need to recover the datafile as it was from last backup.Why offline drop to recover? Are you sure what are you doing?
    or do we need to use any recover datafile commands?? if need to use any recover datafile command from where it will recover the datafile??1) alter system switch logfile;
    2) select max(sequence#) from v$archived_log;
    For Ex:
    Sequence -- 100
    3) alter database begin backup;
    4) copy all the datafiles to another server(bcoz you not have space in same server)
    5) alter database end backup;
    6) select max(sequence#) from v$archived_log;
    For Ex:
    Sequence -- 110
    Then copy these generated 10 archives to new server also.

  • Share Data Source between multiple report projects in Microsoft SQL Server 2012 Reporting Services

    I have a reports solution in 2012 which contains multiple report projects one each for target deployment folder and we use TFS 2012 for report deployment.
    We have a template project which has a bunch of template reports and all the datasources used in different reports.
    When I develop a report, I cannot "Preview" in TFS but, for deploy this used to work fine util the reports solution was in TFS 2010 & Visual Studio 2008 R2. Since we moved to TFS 2012 & SSRS 2012 not being able to deploy till I create all
    the necessary datasources for each project and now all the developers complaining that they cannot develop reports in TFS itself as they cannot preview (this problem was existing previously) and now not being able to deploy as it errors for each report "Could
    not find specified rds file". I tried messing around with the .rptproj file DataSources tag that did not help either by modifying it like below.
    <DataSources>
    <ProjectItem>
    <Name>DB.rds</Name>
    <FullPath>Template\Data Source\DB.rds</FullPath>
    </ProjectItem>
    </DataSources>
    Is there a way I could share a Data Source between multiple projects in Microsoft SQL Server 2012 Reporting Services?
    Thanks in advance.............
    Ione

    Hi ione721,
    According to your description, you want to create a shared data source which works for multiple projects. Right?
    In Reporting Services, A shared data source is a set of data source connection properties that can be referenced by multiple reports, models, and data-driven subscriptions that run on a Reporting Services report server. It must be within one project.
    We can't specify one data source working for multple projects. In this scenario, we suggest you put those reports into one project. Otherwise you can only create one data source for each project.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • ANONYMOUS LOGON Web Server to WCF Web Service(Different Server)

    Hi,
           I have facing login credentials lost web server to wcf web service(different server). I got correct data if i open my web site from Web Server but i got "403 forbidden" if i call from client pc or other server.
    I used domain account to run the web application for my own web site. Is it something wrong on my configuration at each server. I have no idea to how to make it to correct. I don't find correct answer on Google or bing.
    Here
    is server information and SPN List. Please let me know if want to know more details.
    1. Domain Server
    2. CRM Server (Web Site is host on this server)
     - Enable Kernel Mode
    -  Windows authentication (1st - Negotiate, 2nd - Ntlm)
    - Impersonate
    - Application Pool (domain\account)
    3. ERP Server (WCF Web Services is host on this server - support kerberos + ntlm).
    - domain\account to run services.
    - constrained delegation to sql server
    4. SQL Server
    Here is SPN on each Server and Service Account
    SQL Server SPN List
    MSSQLSvc/WS08R2SP1-SQL.domain.local:1433
    MSSQLSvc/WS08R2SP1-SQL.domain.local
    WSMAN/WS08R2SP1-SQL
    WSMAN/WS08R2SP1-SQL.domain.local
    RestrictedKrbHost/WS08R2SP1-SQL
    RestrictedKrbHost/WS08R2SP1-SQL.domain.local
    HOST/WS08R2SP1-SQL
    HOST/WS08R2SP1-SQL.domain.local
    CRM Server SPN List
    TERMSRV/WS08R2SP1-CRM
    TERMSRV/WS08R2SP1-CRM.domain.local
    WSMAN/WS08R2SP1-CRM
    WSMAN/WS08R2SP1-CRM.domain.local
    RestrictedKrbHost/WS08R2SP1-CRM
    RestrictedKrbHost/WS08R2SP1-CRM.domain.local
    HOST/WS08R2SP1-CRM
    HOST/WS08R2SP1-CRM.domain.local
    ERP Server SPN List
    TERMSRV/WS08R2SP1-ERP
    TERMSRV/WS08R2SP1-ERP.domain.local
    WSMAN/WS08R2SP1-ERP
    WSMAN/WS08R2SP1-ERP.domain.local
    RestrictedKrbHost/WS08R2SP1-ERP
    RestrictedKrbHost/WS08R2SP1-ERP.domain.local
    HOST/WS08R2SP1-ERP
    HOST/WS08R2SP1-ERP.domain.local
    Domain\NavSvrAdmin (Running Navision Web Service Account) SPN List
    HTTP/WS08R2SP1-ERP.domain.local
    HTTP/WS08R2SP1-ERP
    NAV61-SG_Demo/WS08R2SP1-ERP.domain.local:7046
    NAV61-SG_Demo/WS08R2SP1-ERP:7046
    Here is login fail list on Web Server (CRM Server) using
    WinShark.
    Here is LogIn information on ERP Server. I got this log if i access my web site from client pc.
    ERP Server
    An account was successfully logged on.
    Subject:
        Security ID:        NULL SID
        Account Name:        -
        Account Domain:        -
        Logon ID:        0x0
    Logon Type:            3
    New Logon:
        Security ID:        ANONYMOUS LOGON
        Account Name:        ANONYMOUS LOGON
        Account Domain:        NT AUTHORITY
        Logon ID:        0x45e781
        Logon GUID:        {00000000-0000-0000-0000-000000000000}
    Process Information:
        Process ID:        0x0
        Process Name:        -
    Network Information:
        Workstation Name:    WS08R2SP1-CRM
        Source Network Address:    -
        Source Port:        -
    Detailed Authentication Information:
        Logon Process:        NtLmSsp
        Authentication Package:    NTLM
        Transited Services:    -
        Package Name (NTLM only):    NTLM V1
        Key Length:        128
    This event is generated when a logon session is created. It is generated on the computer that was accessed.
    The subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The logon type field indicates the kind of logon that occurred. The most common types are 2 (interactive) and 3 (network).
    The New Logon fields indicate the account for whom the new logon was created, i.e. the account that was logged on.
    The network fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
        - Logon GUID is a unique identifier that can be used to correlate this event with a KDC event.
        - Transited services indicate which intermediate services have participated in this logon request.
        - Package name indicates which sub-protocol was used among the NTLM protocols.
        - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    SQL Server Properties
    Link 1 Link 2
    ERP Server Properties
    Link
    CRM Server Properties
    Link
        Please ignore my mistake if i post wrong place.
    Best Regards,
    Make Simple & Easy

    Legacy Web services and WCF services are discussed in the Services secition in the ASP.NET forum.
    http://forums.asp.net/

  • Spfile restore from RMAN Tape backup to different server

    Hi All,
    First of all let me thank you to the forum from which I keep updating my knowledge on oracle.
    I am having issues when trying to restore spfile from controlfile autobackup to different server. Problem and other details are below:
    Target version : 10.2.0.2
    Netbackup : 6.5.6
    Taken the tape backup through rman on server ABC and trying to restore the spfile from controlfile autobackup to server XYZ. Tape backup has been taken today morning and trying restore now.
    Both servers ABC and XYX have been added (as clients) to netbackup policy.
    Below is the syntax I used for restoring spfile and getting error as mentioned.
    RMAN> run {
    2> set controlfile autobackup format for device type 'SBT_TAPE' to '%F';
    3> allocate channel ch00 device type 'sbt_tape'
    4> parms='ENV=(NB_ORA_SERV=Mediaserver,NB_ORA_CLIENT=XYZ)';
    5> restore spfile to pfile '/oracle/product/10g/dbs/inittest.ora' from
    6> autobackup maxseq 5 maxdays 3;
    7> }
    executing command: SET CONTROLFILE AUTOBACKUP FORMAT
    allocated channel: ch00
    channel ch00: sid=36 devtype=SBT_TAPE
    channel ch00: Veritas NetBackup for Oracle - Release 6.5 (2010042405)
    Starting restore at 03-AUG-2011
    channel ch00: looking for autobackup on day: 20110803
    channel ch00: looking for autobackup on day: 20110802
    channel ch00: looking for autobackup on day: 20110801
    channel ch00: no autobackup in 3 days found
    released channel: ch00
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 08/03/2011 14:03:26
    RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
    Not sure where I am doing wrong. The same can be restored onto same host (I.E ABC) without any issues .
    Request your help and guidance.
    Thanks,
    SSS

    I don't know whether you can restore to a different server. The easier way should be
    RMAN> restore spfile to pfile 'YOUR_PFILE_NAME' from autobackup;
    then copy this to the new host.
    Check this link
    restore spfile to another host
    Hope this helps

  • Can a real Server be applied in two different server farms associated with two different VIP IP and TCP Port

    Good day everyone,
    I have a question in regard to real server operation with different server farms, and VIPs
    Can a Real Server be associated ( for simpliciy) with two different Server Farms that have a VIP associated with each, servicing the same TCP Port (443).
    Example:
    SF-A
    RSRV-1: 192.168.1.10 /24
    RSRV-2: 192.168.1.11 /24
    VIP-A: 192.168.1.20 /24
    VIP-A: https:web-A
    Protocol: HTTPS
    SF-B
    RSRV-2: 192.168.1.11 /24
    RSRV-3: 192.168.1.12 /24
    VIP-B: 192.168.1.30 /24
    VIP-b: https:web-B
    Protocol: HTTPS
    Client-A: 172.16.128.10
    Client-B: 172.16.128.15
    I have attached an sketch depicting the connectivity.
    As always any feedback/Suggestions will be greatly apprecaited.
    Cheers,
    Raman Azizian

    Raman,
    This type of config is no problem. What the server is doing is virtual web hosting. The server would have two different web services running for the same IP, but each listening for a unique host header.
    From an IP point of view both connections would be destined to the rserver address on port 80, but in the http header they would have two different Host headers.
    one for www.example1.com and the second for www.example2.com. If the web server is configured correct so each host name is tied to one web service it will not have any issues.
    The config you attached looks ok. The way you have the sticky group is ok doing source IP. If you use cookies for the sticky group I would suggest you create two sticky groups each with a different cookie name and add the same serverfarm to both groups. The client will only send a cookie for the domain it received it from so using the same cookie in two vips could cause problems if the same client hits both vips.
    Hope that helps
    Regards
    Jim

  • Mailbox is on a different server

    Hi,
    I had successfully configured JES 2005 Q1 Messaging+ Calendaring + Delegated Administration on top of Directory and Access Manager on Sol-10 x-86. It was working perfectly fine until, I hyad a necessity to configure the same LDAP as a Native Solaris authentication.
    Subsequent to my Native Solaris authentication, Calendar, Delegated Administrator is working perfectly fine, whereas in Messaging, when I login as a user, it returns with an error Message "Mailbox is on a different server".
    My mailHost and preferredMailHost attributes are perfect. Any other place to look out for this.
    I am also sending the /opt/SUNWmsgsr/sbin/getconf output. Thanks
    OUTPUT OF /opt/SUNWmsgsr/sbin/getconf
    alarm.createtimestamp = 20050519053744Z
    alarm.creatorsname = "cn=directory manager"
    alarm.diskavail.createtimestamp = 20050519053744Z
    alarm.diskavail.creatorsname = "cn=directory manager"
    alarm.diskavail.modifiersname = "cn=directory manager"
    alarm.diskavail.modifytimestamp = 20050519055448Z
    alarm.diskavail.msgalarmdescription = "percentage mail partition diskspace available"
    alarm.diskavail.msgalarmstatinterval = 3600
    alarm.diskavail.msgalarmthreshold = 10
    alarm.diskavail.msgalarmthresholddirection = -1
    alarm.diskavail.msgalarmwarninginterval = 24
    alarm.diskavail.objectclass = nsmsgCfgAlarm
    ,top
    alarm.modifiersname = "cn=directory manager"
    alarm.modifytimestamp = 20050519055448Z
    alarm.msgalarmnoticeport = 25
    alarm.msgalarmnoticercpt = postmaster
    alarm.msgalarmnoticesender = postmaster
    alarm.objectclass = nsmsgCfgAlarmContainer
    ,top
    alarm.serverresponse.createtimestamp = 20050519053744Z
    alarm.serverresponse.creatorsname = "cn=directory manager"
    "conf.test" 422 lines, 16839 characters
    alarm.diskavail.msgalarmstatinterval = 3600
    alarm.diskavail.msgalarmthreshold = 10
    alarm.diskavail.msgalarmthresholddirection = -1
    alarm.diskavail.msgalarmwarninginterval = 24
    alarm.diskavail.objectclass = nsmsgCfgAlarm
    ,top
    alarm.modifiersname = "cn=directory manager"
    alarm.modifytimestamp = 20050519055448Z
    alarm.msgalarmnoticeport = 25
    alarm.msgalarmnoticercpt = postmaster
    alarm.msgalarmnoticesender = postmaster
    alarm.objectclass = nsmsgCfgAlarmContainer
    ,top
    alarm.serverresponse.createtimestamp = 20050519053744Z
    alarm.serverresponse.creatorsname = "cn=directory manager"
    alarm.serverresponse.modifiersname = "cn=directory manager"
    alarm.serverresponse.modifytimestamp = 20050519055448Z
    alarm.serverresponse.msgalarmdescription = "server response time in seconds"
    alarm.serverresponse.msgalarmstatinterval = 600
    alarm.serverresponse.msgalarmthreshold = 10
    alarm.serverresponse.msgalarmthresholddirection = 1
    alarm.serverresponse.msgalarmwarninginterval = 24
    alarm.serverresponse.objectclass = nsmsgCfgAlarm
    ,top
    createtimestamp = 20050519053744Z
    creatorsname = "cn=directory manager"
    encryption.createtimestamp = 20050519053744Z
    encryption.creatorsname = "cn=directory manager"
    encryption.fortezza.createtimestamp = 20050519053744Z
    encryption.fortezza.creatorsname = "cn=directory manager"
    encryption.fortezza.modifiersname = "cn=directory manager"
    encryption.fortezza.modifytimestamp = 20050519055448Z
    encryption.fortezza.nssslactivation = off
    encryption.fortezza.objectclass = top
    ,nsEncryptionModule
    encryption.modifiersname = "cn=directory manager"
    encryption.modifytimestamp = 20050519055448Z
    encryption.nsssl2 = off
    encryption.nsssl3 = on
    encryption.nsssl3ciphers = rsa_rc4_40_md5
    ,rsa_rc2_40_md5
    ,rsa_des_sha
    ,rsa_rc4_128_md5
    ,rsa_3des_sha
    encryption.nsssl3sessiontimeout = 0
    encryption.nssslclientauth = 0
    encryption.nssslsessiontimeout = 0
    encryption.objectclass = top
    ,nsEncryptionConfig
    encryption.rsa.createtimestamp = 20050519053744Z
    encryption.rsa.creatorsname = "cn=directory manager"
    encryption.rsa.modifiersname = "cn=directory manager"
    encryption.rsa.modifytimestamp = 20050519055448Z
    encryption.rsa.nssslactivation = on
    encryption.rsa.nssslpersonalityssl = Server-Cert
    encryption.rsa.nsssltoken = internal
    encryption.rsa.objectclass = top
    ,nsEncryptionModule
    gen.accounturl = http://%[email protected]:390/bin/user/admin/bin/enduser
    gen.configversion = 4.0
    gen.createtimestamp = 20050519053744Z
    gen.creatorsname = "cn=directory manager"
    gen.folderurl = http://%[email protected]:390/bin/user/admin/bin/mailacl.cgi?folder=%M
    gen.installedlanguages = "en,de,fr,es,ja,ko,zh-CN,zh-TW"
    gen.modifiersname = "cn=directory manager"
    gen.modifytimestamp = 20050519055448Z
    gen.objectclass = nsmsgCfgGen
    ,top
    gen.sitelanguage = en
    local.defdomain = sunray.bdc3.co.in
    local.enduseradmincred = Xg2qcd0sEE
    local.enduseradmindn = "uid=msg-admin-bdc3srssu3.sunray.bdc3.co.in-20050519055344Z, ou=People, o=sunray.bdc3.co.in,dc=sunray,dc=bdc3,dc=co,dc=in"
    local.ens.enable = 1
    local.hostname = bdc3srssu3.sunray.bdc3.co.in
    local.imta.enable = 1
    local.imta.imta_tailor = /opt/SUNWmsgsr/config/imta_tailor
    local.imta.ssrenabled = yes
    local.installeddir = /opt/SUNWmsgsr
    local.instancedir = /opt/SUNWmsgsr
    local.lastconfigfetch = 1118409516
    local.ldapbasedn = o=NetscapeRoot
    local.ldapcachefile = /opt/SUNWmsgsr/config/local.conf
    local.ldaphost = bdc3srssu3.sunray.bdc3.co.in
    local.ldapport = 389
    local.ldapsiecred = 6kca=wnDnr
    local.ldapsiedn = "cn=msg-config, cn=Sun ONE Messaging Suite, cn=Server Group, cn=bdc3srssu3.sunray.bdc3.co.in, ou=sunray.bdc3.co.in, o=NetscapeRoot"
    local.ldapusessl = False
    local.mmp.enable = 0
    local.sched.enable = 1
    local.schedule.expire = "0 23 * * * /opt/SUNWmsgsr/sbin/imexpire"
    local.schedule.msprobe = "5,15,25,35,45,55 * * * * /opt/SUNWmsgsr/lib/msprobe"
    local.schedule.purge = "0 0,4,8,12,16,20 * * * /opt/SUNWmsgsr/lib/purge -num=5"
    local.schedule.return_job = "30 0 * * * /opt/SUNWmsgsr/lib/return_job"
    local.servergid = mail
    local.servername = bdc3srssu3.sunray.bdc3.co.in
    local.serverroot = /opt/SUNWmsgsr
    local.servertype = msg
    local.serveruid = mailsrv
    local.service.pab.attributelist = pabattrs
    local.service.pab.enabled = 1
    local.service.pab.ldapbasedn = o=pab
    local.service.pab.ldapbinddn = "uid=msg-admin-bdc3srssu3.sunray.bdc3.co.in-20050519055344Z, ou=People, o=sunray.bdc3.co.in,dc=sunray,dc=bdc3,dc=co,dc=in"
    local.service.pab.ldaphost = bdc3srssu3.sunray.bdc3.co.in
    local.service.pab.ldappasswd = Xg2qcd0sEE
    local.service.pab.ldapport = 389
    local.service.pab.maxnumberofentries = 500
    local.store.enable = 1
    local.store.snapshotdirs = 3
    local.store.snapshotinterval = 1440
    local.store.snapshotpath = dbdata/snapshots
    local.supportedlanguages = "[en,de,fr,es,af,ca,da,nl,fi,gl,ga,is,it,no,pt,sv,ja,ko,zh-CN,zh-TW]"
    local.tmpdir = /opt/SUNWmsgsr/data/tmp
    local.ugldapbasedn = "dc=sunray,dc=bdc3,dc=co,dc=in"
    local.ugldapbindcred = Xg2qcd0sEE
    local.ugldapbinddn = "uid=msg-admin-bdc3srssu3.sunray.bdc3.co.in-20050519055344Z, ou=People, o=sunray.bdc3.co.in,dc=sunray,dc=bdc3,dc=co,dc=in"
    local.ugldapdeforgdn = "o=sunray.bdc3.co.in,dc=sunray,dc=bdc3,dc=co,dc=in"
    local.ugldaphost = bdc3srssu3.sunray.bdc3.co.in
    local.ugldapport = 389
    local.ugldapuselocal = yes
    local.watcher.enable = yes
    local.webmail.da.host = bdc3srssu3.sunray.bdc3.co.in
    local.webmail.da.port = 8080
    local.webmail.sso.enable = 0
    local.webmail.sso.singlesignoff = 1
    logfile.admin.buffersize = 0
    logfile.admin.createtimestamp = 20050519053744Z
    logfile.admin.creatorsname = "cn=directory manager"
    logfile.admin.expirytime = 604800
    logfile.admin.flushinterval = 60
    logfile.admin.logdir = /opt/SUNWmsgsr/data/log
    logfile.admin.loglevel = Notice
    logfile.admin.logtype = NscpLog
    logfile.admin.maxlogfiles = 10
    logfile.admin.maxlogfilesize = 2097152
    logfile.admin.maxlogsize = 20971520
    logfile.admin.minfreediskspace = 5242880
    logfile.admin.modifiersname = "cn=directory manager"
    logfile.admin.modifytimestamp = 20050519055448Z
    logfile.admin.objectclass = nsmsgCfgLog
    ,top
    logfile.admin.rollovertime = 86400
    logfile.createtimestamp = 20050519053744Z
    logfile.creatorsname = "cn=directory manager"
    logfile.default.buffersize = 0
    logfile.default.createtimestamp = 20050519053744Z
    logfile.default.creatorsname = "cn=directory manager"
    logfile.default.expirytime = 604800
    logfile.default.flushinterval = 60
    logfile.default.logdir = /opt/SUNWmsgsr/data/log
    logfile.default.loglevel = Notice
    logfile.default.logtype = NscpLog
    logfile.default.maxlogfiles = 10
    logfile.default.maxlogfilesize = 2097152
    logfile.default.maxlogsize = 20971520
    logfile.default.minfreediskspace = 5242880
    logfile.default.modifiersname = "cn=directory manager"
    logfile.default.modifytimestamp = 20050519055448Z
    logfile.default.objectclass = top
    ,nsmsgCfgLog
    logfile.default.rollovertime = 86400
    logfile.http.buffersize = 0
    logfile.http.createtimestamp = 20050519053745Z
    logfile.http.creatorsname = "cn=directory manager"
    logfile.http.expirytime = 604800
    logfile.http.flushinterval = 60
    logfile.http.logdir = /opt/SUNWmsgsr/data/log
    logfile.http.loglevel = Notice
    logfile.http.logtype = NscpLog
    logfile.http.maxlogfiles = 10
    logfile.http.maxlogfilesize = 2097152
    logfile.http.maxlogsize = 20971520
    logfile.http.minfreediskspace = 5242880
    logfile.http.modifiersname = "cn=directory manager"
    logfile.http.modifytimestamp = 20050519055449Z
    logfile.http.objectclass = top
    ,nsmsgCfgLog
    logfile.http.rollovertime = 86400
    logfile.imap.buffersize = 0
    logfile.imap.createtimestamp = 20050519053744Z
    logfile.imap.creatorsname = "cn=directory manager"
    logfile.imap.expirytime = 604800
    logfile.imap.flushinterval = 60
    logfile.imap.logdir = /opt/SUNWmsgsr/data/log
    logfile.imap.loglevel = Notice
    logfile.imap.logtype = NscpLog
    logfile.imap.maxlogfiles = 10
    logfile.imap.maxlogfilesize = 2097152
    logfile.imap.maxlogsize = 20971520
    logfile.imap.minfreediskspace = 5242880
    logfile.imap.modifiersname = "cn=directory manager"
    logfile.imap.modifytimestamp = 20050519055448Z
    logfile.imap.objectclass = top
    ,nsmsgCfgLog
    logfile.imap.rollovertime = 86400
    logfile.imta.buffersize = 0
    logfile.imta.createtimestamp = 20050519053745Z
    logfile.imta.creatorsname = "cn=directory manager"
    logfile.imta.expirytime = 604800
    logfile.imta.flushinterval = 60
    logfile.imta.logdir = /opt/SUNWmsgsr/data/log
    logfile.imta.loglevel = Notice
    logfile.imta.logtype = NscpLog
    logfile.imta.maxlogfiles = 10
    logfile.imta.maxlogfilesize = 2097152
    logfile.imta.maxlogsize = 20971520
    logfile.imta.minfreediskspace = 5242880
    logfile.imta.modifiersname = "cn=directory manager"
    logfile.imta.modifytimestamp = 20050519055449Z
    logfile.imta.objectclass = top
    ,nsmsgCfgLog
    logfile.imta.rollovertime = 86400
    logfile.modifiersname = "cn=directory manager"
    logfile.modifytimestamp = 20050519053744Z
    logfile.objectclass = top
    ,nsmsgCfgContainer
    logfile.pop.buffersize = 0
    logfile.pop.createtimestamp = 20050519053745Z
    logfile.pop.creatorsname = "cn=directory manager"
    logfile.pop.expirytime = 604800
    logfile.pop.flushinterval = 60
    logfile.pop.logdir = /opt/SUNWmsgsr/data/log
    logfile.pop.loglevel = Notice
    logfile.pop.logtype = NscpLog
    logfile.pop.maxlogfiles = 10
    logfile.pop.maxlogfilesize = 2097152
    logfile.pop.maxlogsize = 20971520
    logfile.pop.minfreediskspace = 5242880
    logfile.pop.modifiersname = "cn=directory manager"
    logfile.pop.modifytimestamp = 20050519055449Z
    logfile.pop.objectclass = top
    ,nsmsgCfgLog
    logfile.pop.rollovertime = 86400
    logfiles.admin.alias = |logfile|admin
    logfiles.admin.createtimestamp = 20050519053744Z
    logfiles.admin.creatorsname = "cn=directory manager"
    logfiles.admin.modifiersname = "cn=directory manager"
    logfiles.admin.modifytimestamp = 20050519055448Z
    logfiles.admin.objectclass = nsmsgCfgAlias
    ,top
    logfiles.createtimestamp = 20050519053744Z
    logfiles.creatorsname = "cn=directory manager"
    logfiles.default.alias = |logfile|default
    logfiles.default.createtimestamp = 20050519053744Z
    logfiles.default.creatorsname = "cn=directory manager"
    logfiles.default.modifiersname = "cn=directory manager"
    logfiles.default.modifytimestamp = 20050519055448Z
    logfiles.default.objectclass = nsmsgCfgAlias
    ,top
    logfiles.http.alias = |logfile|http
    logfiles.http.createtimestamp = 20050519053744Z
    logfiles.http.creatorsname = "cn=directory manager"
    logfiles.http.modifiersname = "cn=directory manager"
    logfiles.http.modifytimestamp = 20050519055448Z
    logfiles.http.objectclass = nsmsgCfgAlias
    ,top
    logfiles.imap.alias = |logfile|imap
    logfiles.imap.createtimestamp = 20050519053744Z
    logfiles.imap.creatorsname = "cn=directory manager"
    logfiles.imap.modifiersname = "cn=directory manager"
    logfiles.imap.modifytimestamp = 20050519055448Z
    logfiles.imap.objectclass = nsmsgCfgAlias
    ,top
    logfiles.imta.alias = |logfile|imta
    logfiles.imta.createtimestamp = 20050519053744Z
    logfiles.imta.creatorsname = "cn=directory manager"
    logfiles.imta.modifiersname = "cn=directory manager"
    logfiles.imta.modifytimestamp = 20050519055448Z
    logfiles.imta.objectclass = nsmsgCfgAlias
    ,top
    logfiles.modifiersname = "cn=directory manager"
    logfiles.modifytimestamp = 20050519053744Z
    logfiles.objectclass = nsmsgCfgContainer
    ,top
    logfiles.pop.alias = |logfile|pop
    logfiles.pop.createtimestamp = 20050519053744Z
    logfiles.pop.creatorsname = "cn=directory manager"
    logfiles.pop.modifiersname = "cn=directory manager"
    logfiles.pop.modifytimestamp = 20050519055448Z
    logfiles.pop.objectclass = nsmsgCfgAlias
    ,top
    modifiersname = "cn=directory manager"
    modifytimestamp = 20050519055448Z
    nsclassname = "[email protected]@cn=admin-serv-bdc3srssu3, cn=Administration Server, cn=Server Group, cn=bdc3srssu3.sunray.bdc3.co.in, ou=sunray.bdc3.co.in, o=NetscapeRoot"
    objectclass = top
    ,nsAdminObject
    ,nsConfig
    pipeprograms.createtimestamp = 20050519053745Z
    pipeprograms.creatorsname = "cn=directory manager"
    pipeprograms.modifiersname = "cn=directory manager"
    pipeprograms.modifytimestamp = 20050519053745Z
    pipeprograms.objectclass = nsmsgCfgContainer
    ,top
    service.authcachesize = 10000
    service.authcachettl = 900
    service.createtimestamp = 20050519053745Z
    service.creatorsname = "cn=directory manager"
    service.dcroot = "dc=sunray,dc=bdc3,dc=co,dc=in"
    service.defaultdomain = sunray.bdc3.co.in
    service.dnsresolveclient = no
    service.http.allowadminproxy = no
    service.http.allowanonymouslogin = no
    service.http.createtimestamp = 20050519053745Z
    service.http.creatorsname = "cn=directory manager"
    service.http.enable = 1
    service.http.enablesslport = 1
    service.http.fullfromheader = no
    service.http.idletimeout = 3
    service.http.ipsecurity = yes
    service.http.maxmessagesize = 5242880
    service.http.maxpostsize = 5242880
    service.http.maxsessions = 6000
    service.http.maxthreads = 250
    service.http.modifiersname = "cn=msg-config,cn=sun one messaging suite,cn=server group,cn=bdc3srssu3.sunray.bdc3.co.in,ou=sunray.bdc3.co.in,o=netscaperoot"
    service.http.modifytimestamp = 20050519063623Z
    service.http.numprocesses = 1
    service.http.objectclass = top
    ,nsmsgCfgHttp
    service.http.plaintextmincipher = 0
    service.http.port = 80
    service.http.resourcetimeout = 900
    service.http.sessiontimeout = 7200
    service.http.smtpport = 25
    service.http.spooldir = /opt/SUNWmsgsr/data/http
    service.http.sslcachesize = 0
    service.http.sslport = 443
    service.http.sslusessl = yes
    service.imap.allowanonymouslogin = no
    service.imap.banner = "%h %p service (%P %V)"
    service.imap.createtimestamp = 20050519053745Z
    service.imap.creatorsname = "cn=directory manager"
    service.imap.enable = 1
    service.imap.enablesslport = 1
    service.imap.idletimeout = 30
    service.imap.maxsessions = 4000
    service.imap.maxthreads = 250
    service.imap.modifiersname = "cn=directory manager"
    service.imap.modifytimestamp = 20050519055449Z
    service.imap.numprocesses = 1
    service.imap.objectclass = top
    ,nsmsgCfgImap
    service.imap.plaintextmincipher = 0
    service.imap.port = 143
    service.imap.sslcachesize = 0
    service.imap.sslport = 993
    service.imap.sslusessl = yes
    service.ldapmemcache = no
    service.ldapmemcachesize = 131072
    service.ldapmemcachettl = 30
    service.listenaddr = INADDR_ANY
    service.loginseparator = @
    service.modifiersname = "cn=directory manager"
    service.modifytimestamp = 20050519055449Z
    service.objectclass = top
    ,nsmsgCfgService
    service.plaintextloginpause = 0
    service.pop.allowanonymouslogin = no
    service.pop.banner = "%h %p service (%P %V)"
    service.pop.createtimestamp = 20050519053745Z
    service.pop.creatorsname = "cn=directory manager"
    service.pop.enable = 1
    service.pop.enablesslport = 1
    service.pop.idletimeout = 10
    service.pop.maxsessions = 600
    service.pop.maxthreads = 250
    service.pop.modifiersname = "cn=directory manager"
    service.pop.modifytimestamp = 20050519055449Z
    service.pop.numprocesses = 1
    service.pop.objectclass = top
    ,nsmsgCfgPop
    service.pop.plaintextmincipher = 0
    service.pop.popminpoll = 0
    service.pop.port = 110
    service.pop.sslport = 992
    service.pop.sslusessl = yes
    service.readtimeout = 10
    store.admins = admin
    store.cleanupage = 1
    store.createtimestamp = 20050519053745Z
    store.creatorsname = "cn=directory manager"
    store.dbcachesize = 16777216
    store.defaultacl = "anyone lrs"
    store.defaultmailboxquota = -1
    store.defaultmessagequota = -1
    store.defaultpartition = primary
    store.diskflushinterval = 15
    store.expirerule.createtimestamp = 20050519053745Z
    store.expirerule.creatorsname = "cn=directory manager"
    store.expirerule.modifiersname = "cn=directory manager"
    store.expirerule.modifytimestamp = 20050519053745Z
    store.expirerule.objectclass = nsmsgCfgContainer
    ,top
    store.modifiersname = "cn=directory manager"
    store.modifytimestamp = 20050519055449Z
    store.objectclass = top
    ,nsmsgCfgStore
    store.partition.createtimestamp = 20050519053745Z
    store.partition.creatorsname = "cn=directory manager"
    store.partition.modifiersname = "cn=directory manager"
    store.partition.modifytimestamp = 20050519053745Z
    store.partition.objectclass = top
    ,nsmsgCfgContainer
    store.partition.primary.createtimestamp = 20050519053745Z
    store.partition.primary.creatorsname = "cn=directory manager"
    store.partition.primary.modifiersname = "cn=directory manager"
    store.partition.primary.modifytimestamp = 20050519055449Z
    store.partition.primary.objectclass = top
    ,nsmsgCfgPartition
    store.partition.primary.path = /opt/SUNWmsgsr/data/store/partition/primary
    store.quotaenforcement = on
    store.quotaexceededmsginterval = 7
    store.quotagraceperiod = 120
    store.quotanotification = off
    store.quotawarn = 90
    store.serviceadmingroupdn = "cn=Service Administrators,ou=Groups, dc=sunray,dc=bdc3,dc=co,dc=in"
    store.umask = 077

    i had the "Mailbox is on a different server" error too recently (mine shows up in ms outlook express) - and believe my problem came from having the hostnamealiases space delimited instead of comma separated (with no spaces, e.g. "foo.host1.com,bar.host2.com") - comma delimited, no spaces seems to be required ...
    i am having a different problem now though:
    i can login to communications express hosted domains via -
    the main host url using credentials like: [email protected]/passwd
    but when going to any of the hosted.com's urls, and trying to login without the @hosted1.com in the user - i get redirected to access manager (and subsequently can't login using either uid or [email protected] at the hosted1.com/uwc url).
    here's what i have in AMConfig.properties:
    com.sun.identity.server.fqdnMap[mail.hosted1.com]=mail.actual.org
    com.sun.identity.server.fqdnMap[mail.hosted2.com]=mail.actual.org
    com.sun.identity.server.fqdnMap[mail.hosted3.com]=mail.actual.org
    here's what i have in uwcauth.properties:
    virtualdomain.mode = y
    mail.actual.org.isvirutalhostname=mail.actual.org
    i have also added the cookiedomains in amconsole under service configuration --> platform - in addition to creating directories (hosted1.com, hosted2.com, hosted3.com) under /opt/SUNWuwc/WEB-INF/domain - containing the original files and directories under /opt/SUNWuwc/WEB-INF/domain (i was not clear if these directories should take this form e.g. including the .com or if they should just contain the domain-name --e.g. hosted1?)
    i can receive hosted email via pop using uid [email protected]/passwd, etc.
    thanks for any input.
    s7
    using sparc 2005q4 msg -58; uwc - 42

  • Problem with ODI 11.1.1.5 on different server from Web-logic

    Basically a problem is being faced with installing ODI 11.1.1.5 (Developer, Standalone and Java EE installations) on a different server from OBI 11.1.1.5. Basically, the thing that did cause this type of installation is that I cannot find a version of ODI to run a 64-bit machine like OBI 11.1.1.5. Hence, I installed the OBI on the 64 bit machine and shared the entire drive on which the home of the BI exist. The share process referenced all the folders contained inside the home with full permission given for read and change. This was being done to provide the bea home for the ODI Java EE installation which is required as a part of the installation process.
    The problem is when I specify the middleware home location in the ODI installation with the given shared bea location an error appears saying: INST-07058: unexpected error occurred while validating Oracle home location.
    I would be grateful to receive some advice on how to overcome this obstacle with regards to installting ODI on a 32-bit server where the weblogic AS is resided on a different machine running in 64-bit.
    Help is very much appreciated...

    Thank you for answer, well in the Logueo.jspx i have this code
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_Logueo.d1}">
    <af:form id="f1" binding="#{backingBeanScope.backing_Logueo.f1}">
    <af:outputLabel value="outputLabel1"
    binding="#{backingBeanScope.backing_Logueo.ol1}"
    id="ol1"/>
    </af:form>
    </af:document>
    </f:view>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_Logueo-->
    </jsp:root>
    this not is the problem, because is the project number 3 made on fedora and this don't function fine...... thank you for answer...!!!

Maybe you are looking for

  • I accidentally synced my iPhone with old iPod settings and I can't get my old iPhone settings back, what can I do

    I attached my new iPhone to my iTunes account for the first time and it came up with an option to sync my old iPod touch settings with my new iPhone. Thinking this would mean that it would transfer all my music and pictures from my old iPod to my new

  • Error in Tomcat Start Up

    Hi Experts, We have following two demantra installations on windows XP box - 7.3.1.4.2 7.2.0.1 When starting the tomcat for 7.2.0.1, we are getting the following error : Using CATALINA_BASE: .. Using CATALINA_HOME: .. Using CATALINA_TMPDIR: ..\temp U

  • Live Type Freezes

    When I go to put an effect on a track, Live Type freezes. I reinstalled Live Type and I'm still having the same issue.

  • Oracle Translation Manager or Translation HUB

    Hi Guys, I need to explore about the tool Oracle Translation Manager (6i). From 9i and above its called as Translation HUB. Please send me the link or any details from where i can download this tool and start using it. Thanks in advance Guru

  • Select statement for finiding tablename

    I want to know how to display the table name as a column? like this: select id, tablename from a,b where a.id=b.id; id tablename 1 a 2 b 3 a 4 a 5 a Can anyone help me with this? Thanks , Ashish