Certificates in lieu of Oracle connection Manager for our Applets -- Help!!

I support an application named IDEA out of New York. The IDEA application is an INTRANET application for use within our company Firewall.
Currently, the IDEA application's front end resides on a Windows 2000 Server running IIS 5 and JRun 3.0. The back-end runs on Oracle 8.1.7 database on a UNIX Database Hosting Utility (DHU). Our applets communicate with the back-end database using Oracle Connection Manager that is installed on the Web Host.
We are trying to migrate to the DWeb environment (Linux cluster). The linux cluster is running Apache Tomcat. We have been told that installing Oracle connection manager is not a viable solution (our company does not support it). Because of this our applets cannot communicate with our database. Below is a brief description of this limitation and also the work-around.
====================================================================================================================================================
Connecting to the Database through the Applet
The most common task of an applet using the JDBC driver is to connect to and query a database. Because of applet security restrictions, unless particular steps are taken an applet can open TCP/IP sockets only to the host from which it was downloaded (this is the host on which the Web server is running). This means that without these steps, your applet can connect only to a database that is running on the same host as the Web server.
If your database and Web server are running on the same host, then there is no issue and no special steps are required. You can connect to the database as you would from an application.
As with connecting from an application, there are two ways in which you can specify the connection information to the driver. You can provide it in the form of host:port:sid or in the form of a TNS keyword-value syntax.
For example, if the database to which you want to connect resides on host prodHost, at port 1521, and SID ORCL, and you want to connect with user name scott with password tiger, then use either of the two following connect strings:
using host:port:sid syntax:
String connString="jdbc:oracle:thin:@prodHost:1521:ORCL";
conn = DriverManager.getConnection(connString, "scott", "tiger");
using TNS keyword-value syntax:
String connString = "jdbc:oracle:thin:@(description=(address_list=
(address=(protocol=tcp)(port=1521)(host=prodHost)))
(connect_data=(sid=ORCL)))";
conn = DriverManager.getConnection(connString, "scott", "tiger");
If you use the TNS keyword-value pair to specify the connection information to the JDBC Thin driver, then you must declare the protocol as TCP.
However, a Web server and an Oracle database server both require many resources; you seldom find both servers running on the same machine. Usually, your applet connects to a database on a host other than the one on which the Web server runs. There are two possible ways in which you can work around the security restriction:
You can connect to the database by using the Oracle8 Connection Manager.
or:
You can use a signed applet to connect to the database directly.
These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
Connecting to a Database on a Different Host Than the Web Server
If you are connecting to a database on a host other than the one on which the Web server is running, then you must overcome applet security restrictions. You can do this by using either the Oracle8 Connection Manager or signed applets. ====================================================================================================================================================
It was suggested that we implement signed applets (it is our only alternative at this time). This is where, hopefully, you can help me. We are unfamiliar with using certificates and signing applets. We need to obtain certificates that will allow our applets to connect to our oracle database on the DHU. What kind of certificates do we use? Are their coding examples of how to use these certificates? We have a CA within our company but they cannot tell us what kind of certificates we need. How many certificates do we need? Do we install any certificates on the backend database server? Any information would be greatly appreciated. We are basically trying to get our applet to work outside the sandbox by establishing a connection to the database server.Thanks in advance for your time.

or:
You can use a signed applet to connect to the database directly.
These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
If you want to connect to the database from the applet there is a third option.
Since this is an intranet application you have control over the desktops using this
application. In our company the jre ignores signed applets (as it should) because
it gives control to the user to run potentially harmfull applets from the Internet.
The way to dish out special privileges to applets is the policy, put a policy file on
you intranet and have the jre use it by specifying its URL in the java.security.
Here is some more info about security configuration of the jre:
http://forum.java.sun.com/thread.jspa?threadID=646161&tstart=45
reply 3
We use Oracle jinitiator to run Oracle forms but I am not involved in that project
and do not know a lot about it. It does perform quite good though.

Similar Messages

  • Certificates in lieu of Oracle connection Manager for our Applets

    I support an application named IDEA out of New York. The IDEA application is an INTRANET application for use within our company Firewall.
    Currently, the IDEA application's front end resides on a Windows 2000 Server running IIS 5 and JRun 3.0. The back-end runs on Oracle 8.1.7 database on a UNIX Database Hosting Utility (DHU). Our applets communicate with the back-end database using Oracle Connection Manager that is installed on the Web Host.
    We are trying to migrate to the DWeb environment (Linux cluster). The linux cluster is running Apache Tomcat. We have been told that installing Oracle connection manager is not a viable solution (our company does not support it). Because of this our applets cannot communicate with our database. Below is a brief description of this limitation and also the work-around.
    ====================================================================================================================================================
    [i][i][i]Connecting to the Database through the Applet
    The most common task of an applet using the JDBC driver is to connect to and query a database. Because of applet security restrictions, unless particular steps are taken an applet can open TCP/IP sockets only to the host from which it was downloaded (this is the host on which the Web server is running). This means that without these steps, your applet can connect only to a database that is running on the same host as the Web server.
    If your database and Web server are running on the same host, then there is no issue and no special steps are required. You can connect to the database as you would from an application.
    As with connecting from an application, there are two ways in which you can specify the connection information to the driver. You can provide it in the form of host:port:sid or in the form of a TNS keyword-value syntax.
    For example, if the database to which you want to connect resides on host prodHost, at port 1521, and SID ORCL, and you want to connect with user name scott with password tiger, then use either of the two following connect strings:
    using host:port:sid syntax:
    String connString="jdbc:oracle:thin:@prodHost:1521:ORCL";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    using TNS keyword-value syntax:
    String connString = "jdbc:oracle:thin:@(description=(address_list=
    (address=(protocol=tcp)(port=1521)(host=prodHost)))
    (connect_data=(sid=ORCL)))";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    If you use the TNS keyword-value pair to specify the connection information to the JDBC Thin driver, then you must declare the protocol as TCP.
    However, a Web server and an Oracle database server both require many resources; you seldom find both servers running on the same machine. Usually, your applet connects to a database on a host other than the one on which the Web server runs. There are two possible ways in which you can work around the security restriction:
    You can connect to the database by using the Oracle8 Connection Manager.
    or:
    You can use a signed applet to connect to the database directly.
    These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
    Connecting to a Database on a Different Host Than the Web Server
    If you are connecting to a database on a host other than the one on which the Web server is running, then you must overcome applet security restrictions. You can do this by using either the Oracle8 Connection Manager or signed applets. ====================================================================================================================================================
    It was suggested that we implement signed applets (it is our only alternative at this time). This is where, hopefully, you can help me. We are unfamiliar with using certificates and signing applets. We need to obtain certificates that will allow our applets to connect to our oracle database on the DHU. What kind of certificates do we use? Are their coding examples of how to use these certificates? We have a CA within our company but they cannot tell us what kind of certificates we need. How many certificates do we need? Do we install any certificates on the backend database server? Any information would be greatly appreciated. We are basically trying to get our applet to work outside the sandbox by establishing a connection to the database server.
    Thanks in advance for your time.

    Eston,
    Have you searched SUN's java Web site? Maybe this article will help:
    http://java.sun.com/developer/technicalArticles/Security/Signed/index.html
    Good Luck,
    Avi.

  • Connection Manager for our Post-Paid USB Mobile Broadband devices

    Windows and Mac users can download the Telstra Post-Paid Mobile Broadband Connection Manager for USB devices.
    Download for the Telstra Post-Paid Mobile Broadband Connection Manager:
    Bigpond Mobile Broadband Users:
    For Windows users (ZIP, 33.9 MB) - Version 3.17.30227
    For Mac users (DMG, 11.4 MB) - Version 3.15.20905
    Telstra Mobile Broadband Users:
    For Windows users (ZIP, 33.9 MB) - Version 3.17.30227
    For Mac users (DMG, 11.4 MB) - Version 3.15.20905
    When downloading this update, your data allowance will not be affected. The Telstra Post-Paid Mobile Broadband Connection Manager can send and receive SMS. Just open your Connection Manager and click on the My Messages button to get started.

    Hi Elise, What prepaid device did you purchase, so we can assist you better with that? What happens when you plugged the device into your computer? Did anything auto-run? Are you able to read the device's contents? There should be a file in it which you should be able to load as well.

  • Connection Manager for our Pre-Paid USB

    After trying for hours to set up a 4G pre paid broadband internet.  I was told by telstra to downland Connection Manager and run that.  Will try that the file will not run  on windows 8 but have try it on windows 7 and it run perfecctly. What else can I do 

    Hi Elise, What prepaid device did you purchase, so we can assist you better with that? What happens when you plugged the device into your computer? Did anything auto-run? Are you able to read the device's contents? There should be a file in it which you should be able to load as well.

  • Oracle Connection Manager

    Hi,
    i'm having a problem configuring Oracle Connection Manager. It does start the instance of connection manager
    Summary of my environment is
    10g Application server and infrastructure machine OS: Windows 2003
    9i Database Server: Windows 2003
    Client : Java Applet
    JDBC driver type : THIN
    Installed: 10g Infra first and then 10g midiier(portal and wireless) in seperate oracle homes on the same machine. Eveything is up and running as i was able to login seperately in infra and midtier enterprise managers.
    Final Goal : Trying to connect to an Oracle 9i database on a differnt machine than the appserver using an applet, thin drivers and Oracle Connection Manager
    Problem : Connection manager instance not started however cmanADMIn service started.
    CMCTL:CMAN_oracle9-app> administer cmanOracleAS
    Current instance cmanOracleAS is not yet started
    Connections refer to (address=(protocol=tcp)(host=10.10.1.101)(port=1610)).
    The command completed successfully.
    CMCTL:cmanOracleAS> startup
    Service Oracleoracle_infraCMAdmincmanOracleAS already running.
    TNS-04012: Unable to start Oracle Connection Manager instance.
    CMCTL:cmanOracleAS>
    Steps done to configure Oracle Connection manager
    1. Copied 4 .exe (CMADMIN, CMCTL,CMGW,CMMIGR) files to bin folder of Appserver or midtier's main ORACLE_HOME/BIN folder.
    2) created a cman.ora file and copied in appservers /NETWORK/ADMIN directory
    3) On cammand prompt type CMCTL...ADMINISTER cman_OracleAS where cman_OracleAS is the name of cman instance used in cman.ora file.
    My cman.ora file is as follows
    # Copyright (c) 2001,2002, Oracle Corporation. All rights reserved.
    # NAME
    # cman.ora
    # DESCRIPTION
    # Sample CMAN configuration file that the user can modify for their
    # own use.
    # NOTES
    # 1. Change <fqhost> to your fully qualified hostname
    # 2. Change <lsnport> to the listening port number
    # 3. Change <logdir> and <trcdir> to your log and trace directories
    # MODIFIED (MM/DD/YYYY)
    # asankrut 10/05/2002 - Added Rule List Specifications
    # asankrut 06/11/2002 - Modified to add new parameters; added comments.
    # asankrut 12/31/2001 - Creation.
    # CMAN Alias
    cmanOracleAS =
    (configuration=
    # Listening address of the cman
    (address=(protocol=tcp)(host=appserver_name)(port=1610))
    # Configuration parameters of this CMAN
    (parameter_list =
    # Need authentication for connection?
    # Valid values: boolean values for on/off
    (aso_authentication_filter=off)
    # Connection statistics need to be collected?
    # Valid values: boolean values for on/off
    (connection_statistics=yes)
    # Log files would be created in the directory specified here
    (log_directory=D:\GAV\OracleAS10\NETWORK\log)
    # Logging would be in done at this level
    # Valid values: OFF | USER | ADMIN | SUPPORT
    (log_level=ADMIN)
    # Maximum number of connections per gateway
    # Valid values: Any positive number (Practically limited by few 1000s)
    (max_connections=256)
    # Idle timeout value in seconds
    # Valid values: Any positive number
    (idle_timeout=0)
    # Inbound connect timeout in seconds
    # Valid values: Any positive number
    (inbound_connect_timeout=0)
    # Session timout in seconds
    # Valid values: Any positive number
    (session_timeout=0)
    # Outbound connect timeout in seconds
    # Valid values: Any positive number
    (outbound_connect_timeout=0)
    # Maximum number of gateways that can be started
    # Valid values: Any positive number (Practically limited by
    # system resources)
    (max_gateway_processes=16)
    # Minimum number of gateways that must be present at any time
    # Valid values: Any positive number (Practically limited by
    # system resources)
    # max_gateway_processes > min_gateway_processes
    (min_gateway_processes=2)
    # Remote administration allowed?
    # Valid Values: Boolean values for on/off
    (remote_admin=on)
    # Trace files would be created in the directory specified here
    (trace_directory=D:\GAV\OracleAS10\NETWORK\trace)
    # Trace done at this level
    # Valid values: OFF | USER | ADMIN | SUPPORT
    (trace_level=ADMIN)
    # Is timestamp needed with tracing?
    # Valid values: Boolean values for on/off
    (trace_timestamp=on)
    # Length of the trace file in kB
    # Valid values: Any positive number (Limited practically)
    (trace_filelen=1000)
    # No. of trace files to be created when using cyclic tracing
    # Valid values: Any positive number
    (trace_fileno=1)
    # Maximum number of CMCTL sessions that can exist simultaneously
    # Valid values: Any positive number
    (max_cmctl_sessions=4)
    # Event logging: event groups that need to be logged
    (event_group=init_and_term,memory_ops)
    # Rule list
    # Rule Specification:
    # src = Source of connection; '*' for 'ANY'
    # dst = Destination of connection; '*' for 'ANY'
    # srv = Service of connection; '*' for 'ANY'
    # act = Action: 'accept', 'reject' or 'drop'
    # Action List Specification:
    # aut = aso_authentication_filter
    # moct = outbound_connect_timeout
    # mct = session_timeout
    # mit = idle_timeout
    # conn_stats = connect_statistics
    (rule_list=
    (rule=
    (src=*)(dst=databaseIP)(srv=*)(act=accept)
    (action_list=(aut=off)(moct=0)(mct=0)(mit=0)(conn_stats=on))
    (rule=
         (src=appserverIP)(dst=127.0.0.1)(srv=cmon)(act=accept)
    Please help
    Thanks
    Atul Jain
    [email protected]

    Forgot to mention that
    cmanOracleAS.log file i.e connection manger log file is as follows.
    It says does not currently know of service 'cmon' but i have the rule which
    allows cmctl to conect locally with 127.0.0.1 .
    TNSLSNR for 32-bit Windows: Version 10.1.0.3.0 - Production on 17-MAR-2005
    12:17:53
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    System parameter file is D:\GAV\oracle_infra\network\admin\sqlnet.ora
    Command-line specified parameter file is D:\GAV\oracle_infra\network\admin\
    cman.ora
    Log messages written to D:\GAV\OracleAS10\NETWORK\log\cmanoracleas1_924.log
    Trace information written to D:\GAV\OracleAS10\NETWORK\trace\
    cmanoracleas1_924.trc
    Trace level is currently 6
    Started with pid=332
    Running in PROXY mode
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.10.1.101)
    (PORT=1610)))
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    17-MAR-2005 12:22:07 * (connect_data=(service_name=cmon)(pid=ctl)) *
    (ADDRESS=(PROTOCOL=tcp)(HOST=10.10.1.101)(PORT=4589)) * establish * cmon *
    12514
    TNS-12514: TNS:listener does not currently know of service requested in
    connect descriptor
    17-MAR-2005 12:22:10 * (connect_data=(service_name=cmon)(pid=ctl)) *
    (ADDRESS=(PROTOCOL=tcp)(HOST=10.10.1.101)(PORT=4596)) * establish * cmon *
    12514
    TNS-12514: TNS:listener does not currently know of service requested in
    connect descriptor
    17-MAR-2005 12:23:31 * (connect_data=(service_name=cmon)(pid=ctl)) *
    (ADDRESS=(PROTOCOL=tcp)(HOST=10.10.1.101)(PORT=4782)) * establish * cmon *
    12514
    Thanks
    Atul jain

  • How to install oracle connection manager on solaris 10

    I have installed oracle application server 10.1.2 on solaris 10. How do i install oracle connection manager utility.
    My end goal is to use applets/jdbc.
    Thanks

    Thank you Zettabyte!!
    Folks, network printers should NOT BE configured like this:
    lpadmin -p somequeue -s someprinter
    that creates a remote style queue and puts all the I/O and processing capability on the basic LPD listener present on network printer interfaces. This will cause problems down the road, not to mention that you cannot control access, get any logging, filter content, or control banner pages.
    Network printers should use any software (or PPD file) supplied by the vendor over the basic lpadmin/netstandard config.
    You can install CUPS, but Oracle won't support it until it's part of the OS (S11, apparently).
    The "System Administration Guide: Solaris Printing" is highly recommended for those administering printers on Solaris.

  • TNS-04012: Unable to start Oracle Connection Manager instance.

    Hi,
    I've tried to configure Connection Manager but i fails on:
    TNS-04012: Unable to start Oracle Connection Manager instance
    This is my configuration (I've removed as much as possible to remove possible errors):
    CMAN1=(CONFIGURATION=
      (ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>)(PORT=1522))
      (RULE_LIST=
       (RULE=(SRC=*)(DST=<IP>)(SRV=*)(ACT=accept))))
    CMCTL> administer CMAN1
    Current instance CMAN1 is not yet started
    Connections refer to (ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>)(PORT=1522)).
    The command completed successfully.
    CMCTL:CMAN1> startup
    TNS-04012: Unable to start Oracle Connection Manager instance.I've reviewed following notes without getting any closer (298916.1 and 733421.1)
    I can't see any errors in any of the following possible issues:
    * The max_connections value must not exceed 1024. Maximum acceptable value is 1024
    * The max_gateway_processes value must not exceed 64. Maximum acceptable value is 64
    * The trace_directory and log_directory values must be valid
    * The trace_level and log_level values do not support numeric values 6,10 and 16
    * Duplicate sections
    * Misspelled parameter names or parameter values
    * Host values that are not resolvable
    * Rule list must allow the local address of the machine where cman is installed
    * A specfic address in SRC or DST for a rule in the rule list must be resolvable(Try ip address range as a workaround and see the enhancement request 6125025)
    * Windows: Ensure the ORA_DBA group is present and O/S user starting CMAN is in the group
    * Windows: Ensure any firewall is not blocking Oracle from using Network
    All help are appreciated!
    Cheers

    933746 wrote:
    Osama_mustafa wrote:
    Refer to
    Troubleshooting Guide: TNS-04012: Unable to Start Oracle Connection Manager Instance [ID 733421.1]Hi,
    As I've stated in my post I've reviewed this post without any help.I would suggest you read the provided doc [ 733421.1] more thoroughly.... the answer is there.

  • How to configure Oracle Enterprise Manager for ASM RAC Database ?

    Dears,,
    We have two databases (Primary & Standby), each database has two instances
    Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    How to configure Oracle Enterprise Manager for this environment ?
    I need documentation for this please.
    Many thanks & Regards,,

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • Cannot find the Novell Connection Manager for LDAP

    Novell Connection Manger for Java/LDAP
    Cannot find the Novell Connection Manager for LDAP in download
    I am trying to connect through a Java client to the Apache Directory Studio, LDAP server....I have downloaded the classes from the download page...see link below...but I can't see the NovellConnectionManager Class anywhere in this download when I use the open freely application to view the jar details.
    LDAP Classes for Java
    Environment: Windows 7

    Hi MentalSuplex, and a warm welcome to the forums!
    Don't know about Airport cards for it, but other options...
    http://eshop.macsales.com/item/Sonnet%20Technology/N80211PCI/
    Maybe this one, ask them...
    http://eshop.macsales.com/item/Newer%20Technology/MXP802NPCI/
    I use these...
    http://eshop.macsales.com/item/Newer%20Technology/MXP2802NU2C/
    http://eshop.macsales.com/item/Edimax/EW7711UMN/

  • Add rule to oracle connection manager

    Oracle 11.2.0.4 on Linux.
    I need to add a rule in my oracle connection manager.
    Now I do not use rule:
    (rule_list=
    (rule=
    (src=*)(dst=*)(srv=*)(act=accept)
    (action_list=(aut=off)(moct=0)(mct=0)(mit=0)(conn_stats=on))
    I can add a rule like this:
    (rule_list=
    (rule=
    (src=*)(dst=dbxx-int.dbc.cineca.it)(srv=service_name1_ext)(act=accept)
    (src=*)(dst=dbxx-int.dbc.cineca.it)(srv=service_name2_ext)(act=accept)
    (action_list=(aut=off)(moct=0)(mct=0)(mit=0)(conn_stats=on))
    Since my two service_name end with ext can I use a single rule like this:
    I can add a rule like this:
    (rule_list=
    (rule=
    (src=*)(dst=dbxx-int.dbc.cineca.it)(srv=*_ext)(act=accept)
    (action_list=(aut=off)(moct=0)(mct=0)(mit=0)(conn_stats=on))

    this forum is commonly used to connect from Oracle databases to foreign databases using Oracle's gateway product. A connection manager can't be used here. You might ask that question in the generic database forum:
    General Questions
    but in my opinion you should log a service request to get assiatance.
    - Klaus

  • DataDirect and Oracle Connection Manager

    Quick Question - Has anyone made the Plumtree Portal running on Oracle using the built in DataDirect drivers work with an infrastructure that uses Oracle Connection Manager (OCM).
    Due to security and performance reasons, using Oracle Connection Manager is needed to communicate accross firewalls.
    Ive already followed up with DataDirect, they dont support it currently. Plumtree Support doesnt seem to think it will work (im guessing there right).
    If anyones got any insight, it be appreciated.
    -DM

    please send configuration file of cman.ora, listener.ora

  • Monitor oracle connection manager (cman) in grid control

    How to montior oracle connection manager listener/instace in Grid Control. When I installed grid agent on the box where oracle connection manager running, agent is not able to discover the oracle connection manager instance. Is it possible to montior this via Grid Control?

    please send configuration file of cman.ora, listener.ora

  • Lenovo Mobile Broadband Connection Manager for Windows 7 - ThinkPad

    Hello
    i want to ask a Question , why Lenovo Still did not make
    (Lenovo Mobile Broadband Connection Manager for Windows 7 - ThinkPad ) ??!!!
    i look at the Drivers PageAnd i only found this : For windows VISTA and XP :
    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-70946
    BUT , Where is WINDOWS 7 VERSION ????!!!!!!!!, What are they doing all this time ??? 
    is this the Support which Lenoveo Give to there Customers? , i hope not .
    I am asking lenovo to give me as  a Customers , the software i need as fast as possible .
    Greeting,
    Al-allan Alaa
    Solved!
    Go to Solution.

    Try this URL:
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=HT037696#broadband
    -gan

  • Oracle Enterprise Manager for Personal Oracle 9i

    I have justdownloded Personal oracle 9i for WIN98.
    Everything was fine. But when I tried to install the Enterprise Management 2.2 (for 8i) I got an errorthat "Oracle .swd.Jrl.1.1.8.10.0 support file is missing.
    I was able to install the OEM for my Personal 8i
    How do I download the OEM for Personal Oracle 9i. I do not have room to install Enterprise Oracle 9i

    You can't use Enterprise Manager for 8i on
    Personal Oracle 9i.
    I have a question.
    I have installed Personal Oracle 8i on my PC,
    but i don't find Oracle Enterprise Manager for 8i download site on OTN. Can you healp me?

  • Send an email to all user in Oracle Test Manager for Web Applications

    I have administrator access to Oracle Test Manager for Web Applications. How can I send email to all user in the system (Oracle Test Manager for Web Applications)?
    Thanks
    Katherine
    Edited by: Katherine on 20/12/2010 16:38
    Edited by: Katherine on 20/12/2010 16:39

    Hi ,
    You can create a single dynamic distribution group with the condition to have only the mailboxes in exchange as its members . Then when a person send an email to that  Dynamic distribution group it will get distributed to all the mailboxes
    in exchange.
    Note : Most important feature in the dynamic group is that the membership of that group will be maintained automatically and also along with that we can have group membership by defining the recipient types/OU /rules.
    I agree with ED and also based on my knowledge you cannot achieve your scenario without Distribution groups or dynamic distribution groups.
    Thanks & Regards S.Nithyanandham

Maybe you are looking for

  • How to write a sql query to calculate weights using CTE

    Hi guys, want some help using a CTE to generate data using recursive SQL - input data in table A to be transformed into table B shown below Table A Instru_id_index     instru_id_name    instru_id_constit  con_name   weight         56                 

  • HT4341 My World Travel Adapter Kit

    The manual that comes with the kit states that for Spain I should use the round thin pins AC plug adapter; having bought a hairdryer, a flat iron and a curling iron in Spain, I can state that the pins are thick pins like those for the Korea plug adap

  • Cannot fill path correctly after using image trace.

    When I pull a regular 2-color photo from the web and use the tracing option, selecting ignore white, then expanding it into a path, it will not fill correctly.  Instead of filling the object created, it fills the entire photo area of the original ima

  • Quick time won't stream anymore

    I've been watching quicktime streaming videos before (more specifically the Apple Events) and now I can't. I tried opening the link in both FireFox and Safari, and nothing. I deleted quicktime preferences in my library (under my user account) and sti

  • Arabic Language Help

    Hi, On our Development server, We have installed Arabic Language. Our SAP Server is on ECC 6.0. It has got installed successfully. When we have logged in to the SAP using Arabic Language. And when we are clicking on F4 for help. The help is comming w