How to configure OraMTS to allow WCF using MSDTC access  OracleDB  On unix?

How to configure OraMTS to allow WCF using distributed transactions to access the ORACLE database On Linux/Unix ?
Env:
1. DB-tier node , ORACLE database (version: 11.2.0.1.0) on Redhat Linux server ;
2. middle-tier node ,Both the client, the MS DTC and Oracle MTS run on the same computer , Win7 x64 OS , installed .Netframework 4.0, ODP.net (ODAC112030), and configure the component services in a distributed transaction;
Has done the configuration:
1. ORACLE database on a Linux server (version: 11.2.0.1.0) has execute oramtsadmin.sql script;
2.ORACLE database on a Linux server (version: 11.2.0.1.0) has execute the following script, Creating an Access Control List (ACL);
BEGIN
-- Create the new ACL, naming it "OraMTSadmin.xml", with a description.
-- This provides the OraMTS administrative user e.g. MTSADMIN user FOO
-- the privilege to connect
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('OraMTSadmin.xml',
'Allow usage to the UTL network packages',
'ORAMTS', TRUE, 'connect');
-- Now grant privilege to resolve DNS names to the OraMTS administrative user
DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE('OraMTSadmin.xml' ,
'ORAMTS', TRUE,'resolve');
-- Specify which hosts this ACL applies to, in this case we are allowing
-- access to all hosts. if one knew the list of all Windows middle-tier,
-- these could be added one by one.
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('OraMTSadmin.xml','*');
END;
3. ORACLE database on a Linux server has set JOB_QUEUE_PROCESSES = 1000;
4. restart Oralce;
5.Test code as follows :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JetSun.Infrastructure;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using JetSun.Infrastructure.ServiceModel;
using JetSun.DataModel.Cis;
using JetSun.TestFramework;
using System.IO;
using System.Data.EntityClient;
using System.Data.Objects;
using ConsoleApplicationTest;
using System.Transactions;
namespace Core.Tests
[TestClass]
public class EfOracleTest
public TestContext TestContext { get; set; }
[TestMethod]
public void GetEntities()
//string cn = "DATA SOURCE=HIS30;DBA PRIVILEGE=SYSDBA;PASSWORD=jetsun;PERSIST SECURITY INFO=True;USER ID=SYS;enlist=true";
string cn = "DATA SOURCE=HIS30;DBA PRIVILEGE=SYSDBA;PASSWORD=mtssys;PERSIST SECURITY INFO=True;USER ID=mtssys;enlist=true";
DbsSetting s = new DbsSetting(Dbs.IP, DbsProvider.Oracle, cn);
Runtime.SetDeploymentDir(TestContext.TestDeploymentDir);
File.Copy("E:\\VSTS\\MedicalHealth\\bin\\Debug\\DataModel.Cis.Oracle.dll", Path.Combine(TestContext.TestDeploymentDir, "DataModel.Cis.Oracle.dll"));
//File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.csdl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.csdl"));
//File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.ssdl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.ssdl"));
//File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.msl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.msl"));
File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.csdl", Path.Combine(TestContext.TestDeploymentDir, "Model1.csdl"));
File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.ssdl", Path.Combine(TestContext.TestDeploymentDir, "Model1.ssdl"));
File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.msl", Path.Combine(TestContext.TestDeploymentDir, "Model1.msl"));
string connectionString = s.ToEdmConnectionString(typeof(EdmEncounter), false);
//// Initialize the EntityConnectionStringBuilder.
//EntityConnectionStringBuilder entityBuilder =
// new EntityConnectionStringBuilder();
////Set the provider name.
//entityBuilder.Provider = s.Provider.Provider;
//// Set the provider-specific connection string.
//entityBuilder.ProviderConnectionString = cn;
//// Set the Metadata location.
//entityBuilder.Metadata = string.Format(@"res://{0}/EdmDiagnose.csdl|res://{0}/EdmDiagnose.ssdl|res://{0}/EdmDiagnose.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
//entityBuilder.Metadata = string.Format(@".\Model1.csdl|.\Model1.ssdl|.\Model1.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
//connectionString = entityBuilder.ToString();
////using (Entities edm = new Entities(connectionString))
//// foreach (var item in edm.ENCOUNTERs.Take(10))
//// Console.WriteLine("{0}\t{1}", item.ENCOUNTERID, item.DISPLAYNAME);
//entityBuilder.Metadata = string.Format(@"res://*/EdmDiagnose.csdl|.\EdmDiagnose.ssdl|.\EdmDiagnose.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
//entityBuilder.Metadata = string.Format(@"res://{0}/", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
connectionString = s.ToEdmConnectionString(typeof(EdmFeeInfo), false);
try
//using (TransactionScope tx = new TransactionScope())
using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0, 0, 30)))
//using (var dbcn = s.Provider.CreateConnect(connectionString))
using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
//edm.Connection.CheckOpen();
//using (edm.Connection.BeginTransaction())
foreach (var item in edm.FeeInfos.Take(100))
TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
item.Amount = item.Amount * -1;
edm.SaveChanges();
// using (EdmFeeInfo edm2 = new EdmFeeInfo(connectionString))
// edm2.Connection.CheckOpen();
// edm2.Connection.EnlistTransaction(Transaction.Current);
// foreach (var item in edm2.FeeInfos.Take(100))
// item.Amount = item.Amount * -1;
// edm2.SaveChanges();
// throw new NotImplementedException();
TestContext.WriteLine("-----------1---------------");
using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
foreach (var item in edm.FeeInfos.Take(100))
TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
throw new NotImplementedException();
catch (Exception ex)
TestContext.WriteLine((ex.InnerException ?? ex).Message);
TestContext.WriteLine("-------------2-------------");
using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
foreach (var item in edm.FeeInfos.Take(100))
TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
6. the test results are as follows:
4 125
4 835.45
4 3458
4 2350
4 200
4 100
4 300
4 123
4 234
无法列入分布式事务处理 (Could not be included in the Distributed Transaction)
-------------2-------------
4 125
4 835.45
4 3458
4 2350
4 200
4 100
4 300
4 123
The main error message:无法列入分布式事务处理 (Could not be included in the Distributed Transaction) , not use distributed transaction everything is normal.
My test environment MS DTC and Oracle MTS Recovery Service run on the same computer, but OracleMTSRecoveryService registry values under£º HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \ ORACLE \ OracleMTSRecoveryService ,not under HKEY_LOCAL_MACHINE \ SOFTWARE \ ORACLE,I do not know that there is no relationship.
Is not configured incorrectly?Who can help me, thank you very much!

Do you really have a requirement to push data from Oracle to Access rather than pulling data from Oracle to Access? It would be exceptionally unusual to push data from Oracle to Access.
Pushing from Oracle to Access would means that you want some Oracle process running that is updating Access. But you said that your Access database was on your "local desktop" which implies that it is not running on a server where it is always available. So that means that the Oracle process is going to regularly encounter (and report) errors because the Access database is not available. In turn, that's going to mean that your push process is either going to cause the underlying transaction to fail or it's going to mean that the push process is going to have to implement a fair amount of code to queue data to be pushed at a later date (and track all those changes) which is no small task. None of that seems particularly pleasant.
On the other hand, Access is designed to pull data from real relational databases like Oracle. That's the far more normal approach architecturally. It doesn't require an Oracle process, it doesn't generate errors on the Oracle database when the local desktop is down, etc.
And, of course, I'm assuming that introducing Access is even architecturally reasonable. Most organizations would be extremely hesitant to allow data from an Oracle database to get moved into Access because that quickly means that they lose control of the data from a security standpoint, that there are now multiple copies of the data floating around when changes & corrections are made, etc. That causes all sorts of headaches normally above and beyond the headaches that pushing from Oracle to Access would create.
Justin

Similar Messages

  • How to configura multiple ldap server to the sun access manager

    Hi,
    please help how to configure multiple ldap server to the sun access manager, for example access manager does't find the user in ldap1 then it should search in ldap2.
    Thanks
    Mouli

    There�s no need for deleting the default amSDK based datastore because it�s needed for some default accounts.
    You may try to create the datastore using the commandline (amadmin)
    Have a look /etc/opt/SUNWam/config/xml/idRepoService.xml
    You may also try to create amadmin account in the external ldap directory.
    (Un)fortunately i�ve never tried to remove the default datastore.
    -Bernhard

  • How to configure an jms adapter to use ActiveMQ?

    Does anyone have an example of how to configure an jms adapter of oracle esb
    for third party JMS provider to use ActiveMQ?
    I had done something as follow:
    1、add activemq shared-library in $SOA_INSTANCE/config/service.xml
    2、config a jms adapter fro third party use paramter:
         java.naming.factory.initial     org.apache.activemq.jndi.ActiveMQInitialContextFactory
         java.naming.provider.url     tcp://10.20.30.26:61615
    but I got a error:ERRJMS_CONN_FAC_NOT_FOUND.
    Caused by: javax.naming.NameNotFoundException: org.apache.activemq.ActiveMQConnectionFactory
         at org.apache.activemq.jndi.ReadOnlyContext.lookup(ReadOnlyContext.java:225)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at oracle.tip.adapter.jms.JMS.JMSFactory.jndiLookup(JMSFactory.java:237)
         at oracle.tip.adapter.jms.JMS.JMSConnectionFactoryFactory.getConnectionFactory(JMSConnectionFactoryFactory.java:138)
         ... 51 more
    what should I do? can someone give me a detail resolvent?

    I also had done as follows:
    1、add activemq shared-library to shared-library named "oracle.esb" in server.xml :
    <shared-library name="oracle.esb" version="10.1.3">
              <import-shared-library name="apache.activemq"/>
    </shared-library>
    2、add in $SOA_INSTANCE\j2ee\soa\application-deployments\default\JmsAdapter\oc4j-ra.xml
         <imported-shared-libraries>
              <import-shared-library name="apache.activemq"/>
         </imported-shared-libraries>

  • How to configure Java Plug-In to use Firefox keystore

    Does any one know how to configure Java Plugin 1.5.0 to use the Firefox kesystore either in Windows or in Linux environments?
    I installed and configured 'JSS' based on the information available at http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/keystores .html.
    but still the plugin is not using the keys from Firefox keystore.
    I noticed the following messages in Java Console.
    security: Accessing keys and certificate in Mozilla user profile: null
    security: JSS is not configured
    Thanks

    I was having this same issue prior to installing the JSS on my machine.
    I did not compile my own version of the code, but rather I took the jss34.jar file and put it in a 'jss' directory.
    I also copied the jss3.dll and jss3.lib files into the directory where Firefox was installed.
    That was all I had to do to get JSS to work for Firefox 1.0.4 and Mozilla 1.7.8.
    If that still does not work for you, you always have the option to use the Java Plugin keystore instead of using the browser cache to authenticate certificates.
    You can do that by doing the following on the Java Control Panel:
    1. Click the 'Certificates' button on the Security tab
    2. Import the certificate as a 'User' certificate (Make sure you select the appropriate certificate type)
    3. Disable the 'Use certificates and keys in browser keystore' option under the 'Security' section of the 'Advanced' tab.
    I hope that helps.

  • How to configure WL 10.3 to used log4j instead of jdk logging

    Hi,
    How can I configure WL 10.3 to use log4j instead of jdk default logging. I did changed the logging to log4j through the console for the AdminServer and one of the Managed Instance. I try to deploy axis2.war but it fails and complains about apache logger class not found. So wondering what other settings do I need. I even copied log4j-1.2.15.jar & wllog4j.jar in WL_DOMIAN\lib and restaretd the server but still gets the following error is
    'weblogic.application.ModuleException: [HTTP:101216]Servlet: "AxisServlet" failed to preload on startup in Web application: "axis".
    java.lang.ExceptionInInitializerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.servlet.internal.WebComponentContributor.getNewInstance(WebComponentContributor.java:223)
         at weblogic.servlet.internal.WebComponentContributor.createServletInstance(WebComponentContributor.java:247)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:255)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:521)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1913)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1887)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1805)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:40)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:140)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:106)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger) (Caused by org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger))
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:543)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:209)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:351)
         at org.apache.axis2.transport.http.AxisServlet.<clinit>(AxisServlet.java:83)
         ... 50 more
    Caused by: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:413)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
         ... 54 more
    Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
         at java.lang.Class.getConstructor0(Class.java:2699)
         at java.lang.Class.getConstructor(Class.java:1657)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:410)
         ... 55 moreThanks

    Go to Environments >> servers>> adminServer >> logging >> advanced
    change the default JDK logging to log4j
    by default weblogic provides two types of logging JDK and log4j

  • How to configure quick upload? I used Migration Assistant to copy iTunes from windows XP

    The transfer worked fine, and the folder is now on my desktop. When I click to open it i receive this message. "Quick upload is not configured. In order to use the quick upload feature you must first select a favorite folder by right clicking one and chosing set as favorite."
    What is a "favorites Folder," and how do I fix this issue?
    Thank you.

    Anyone? Am I leaving something out? Please i need to get this figured out. Thank you.

  • How to configure iMac and Airport Extreme for remote access?

    I want  to view videos stored in iTunes on my iMac remotely over the Internet when I away from my home network.  My home network setup includes AirPort Extreme with Comcast High Speed Internet Service (16Mbs/6Mbps).  I use AirPlayit to support the iMac as a server and have the iPad 3 and iPhone 4 apps for AirPlayit.  I have no problem viewing my videos over my home network on any of my mobile devices but for some reason I am unable to configure my firewall so that I can access my iMac remotely when I am away.

    Turning off the wireless on the TP-Link router does not make it a simple modem.
    You need to configure the AirPort Extreme in Bridge Mode to operate correctly with another router on the network.
    Open AirPort Utility and click on the AirPort Extreme icon, then click Edit
    Click the Network tab a the top of the window
    Make sure that the setting for Router Mode is "Off (Bridge Mode)"
    Click Update to save the new settings
    Wait 30 seconds for a green light on the AirPort Extreme, then power off the complete network....all devices....in any order you want.
    Wait a minute, then start the TP-Link modem/router first and let it run a full minute
    Start the AirPort Extreme next the same way
    Keep starting devices one at at a time the same way until the entire network is back up.

  • How to configure ASA to allow activesync connections ?

    To allow Activesync connections (between smartphones and an internal Exchange server) thru an ASA, I think about 3 or 4 potential solutions :
    1) do a NAT on the Exchange server and allow  activesync TCP connections from any IP to the Exchange server : I tested that and this works, but it is not the most secure solution we can imagine;
    2) use a Clienless VPN SSL  ASA configuration : I tried it, but got problems certaintly related to the fact that the Activesync client, installed on my Android/Samsung smartphone, does not seem to be able vto pass properly thru the ASA Portal to reach the Exchange server;
    3) use an Anyconnect VPN ASA configuration : I tried it , but did not manage to install or use any of the Samsung Anyconnect client available on Android Market; by the way, I saw, in the Anyconnect VPN Client Admin Guide 2.4, that an ActiveSync MSI is available from CISCO (
    anyconnect-wince-ARMv4I-activesync-AnyConnectRelease_Number-k9.msi), but I don't see any details about how it is supposed to be used except that it is for Windows environment only, so, not for an Android phone, but I have Windows Mobile smartphones to integrate too, so, maybe it can help me in this case ;
    4) if Clientless nor Anyconnect solutions can't work, it might be better to use the ASA Cut-Through proxy function to get a more secure solution than the first one listed above; but I was not successful either with this cut-through proxy function
    Any ideas or examples about how to allow activesync connections thru ASA would be welcomed
    thanks in advance

    Hi,
    Generally ASA with CSC will support HTTP,FTP,SMTP,POP3 Scaning and Filtering.
    From version ASA IOS 8.4.2 and CSC  6.6.1125.0, it will support HTTPS filtering also.
    But here one limitation is that Https filtering will not support earlier versions of internet explorer 9, i.e if you want HTTPS filtering you must use Internet explorer 9 or after versions( As you know that Windows XP machines won't support internet explorer 9). But with firefox HTTPS filtering will support from versions 4.
    For your reference use below 8.4.2 release guide
    http://www.cisco.com/en/US/docs/security/asa/asa84/release/notes/asarn84.html
    Release notes for CSC version 6.6.1125
    http://www.cisco.com/en/US/docs/security/csc/csc66/release/notes/cscrn66.pdf
    Basic configuration of the CSC
    http://www.cisco.com/en/US/docs/security/csc/csc6.1.1569.0/administration/guide/cscappa.pdf
    Sending traffic to the CSC module (using ASDM and CLI)
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808dea62.shtml
    The troubleshooting guide:
    http://www.cisco.com/en/US/docs/security/csc/csc63/administration/guide/csc8.html#wp1147829
    Hope this will help you...
    Do rate help ful posts..
    Regards,
    Janardhan

  • How to configure file server with portal using KM

    Hi
    i have some word documents,excel documents in my computer.i want to integrate these documents into portal using KM.how to do that?can anybody suggest the steps involved or tutorial to do this configuration.thanks for your help in advance
    Prasad

    Hi,
      It´s very simple to do that.
    1.You must create repository. (I gave you this information).
    2.Create portal users. (in portal or read from ldap)
    3.Create KM navigation iview to point folders in your repository.
    4.Create roles.
    5.Assing roles to users.
      For you that is new in this tools, perhaps needs 3 or 4 days.
    Patricio.

  • How to configure systems for ABAP Proxy use

    Can somebody please point me to the documentation regarding the configuration settings for the use of ABAP proxies, on both the XI and client sides? I have performed readiness checks as specified by SAP, the ABAP Proxy tests all pass, yet when I write a program with a proxy, the message does not appear in the integration engine monitor.
    I think I have missed something in configuration settings, but don't know for sure. hence the request.
    Kind Regards,
    Tony.

    Hi,
    Please follow the below configuration steps for ABAP proxy:
    ABAP Proxy configuration:
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Thnx
    Chirag

  • How to configure management authentication on IAP using Tacacs Server?

    Requirement:
    Instant access points come with default username and password i.e  admin/admin.  This does not go long way, as the IAP start finding their place in campus and corporate networks.
    With many administrators managing and monitoring the clustered IAP networks, TACACS or Active Directory based authentication is more useful.
    Solution:
    Keep this in view, IAP development teams have integrated TACACS and Radius based management authentication. 
    Configuration:
    Follow the below steps to configure radius authentication in IAP:
    Login to IAP web interface
    Select "System" from the main menu and then click on "Admin" tab
    Under local authentication, select as "Authentication Server"
    Under the "Auth Server 1" Select "New Server"
    Filling the name, IP address and shared key for Tacacs server and click OK.
    Verification
    Logout of the IAP web interface and try logging in using the username and password on TACACS server.

    I was having troubles with this as well when a customer had an older Aruba Controller and 2 Access Points. We went with a couple IAP-205s and needed LDAP integration. Using the above configuration there were some additional items needed. I found that I needed the DISPLAY NAME of the admin for the Admin-DN. I had created a user with the first name Aruba and the last name LDAP. This made the DISPLAY NAME "Aruba LDAP". This is what needs to be in the CN= for the Admin-DN.I also found there is a difference in using the CN= and OU=Currently our admin account is in the Users group which is a “Container”. Our actual user accounts are stored in an Orginizational Unit with sub OUs as well. So the Admin-DN needed the CN=Users and the Base-DN needed the OU=MyUserOU.For the windows machines I had to download and install the Aruba GTC Shim because the customer was previously using GTC and they were not going to a RADIUS server at the moment. My Android phone and IPHONE did not need any additional addins for the authentication.  The windows laptop I am using I needed to manually create a wireless profile with… Security Tab >“Choose a network authentication method:”Microsoft: Protected EAP (PEAP)Settings >Select “Trusted Root Certification Authorities”GeoTrust Global CASelect Authentication Method:EAP-Token (This is the Aruba GTC Shim) This allowed me to use my domain login credentialsUsernamePasswordDomain (This is blank because the Base-DN already has this, if anything is put in here the authentication fails)

  • How to configure and test Profibus network using NI part number 780161-01 Master/Slave interface

    I have purchased this board from NI. I have been in touch with Comsoft who it appears is the developer of this board. I have used the configurator II to try and build the network. The GSD file for my slave board is entered. I also can see the GSD file for the master. There appears to be no obvious way to test the bus from the configuration tool. I have tried the Express VI provided by Comsoft. Nothing happens. I have a purchased profibus cable with terminations installed. I know the cable works as another division has another Profibus master that does work using this cable How do I configure correctly for sure? How do I test?
    Thanks
    Rick
    Solved!
    Go to Solution.

    Hi Rick, 
    First, ensure that you have the correct drivers installed on your system: 
    Make sure NI-VISA 4.2 or later is installed on your system.
    First install 1.3x.x COMSOFT driver
    Second install a DF PROFI II Slave and Master board in your PC-System.  
    Reboot your computer System.  
    Install the NI-PROFIBUS driver, instructions can be found here. 
    However, it sounds to me like you may have an issue with your bus configuration or with the GSD file. First, did you obtain the GSD file from the manufacturer or from profibus.com? 
    Also, common issues with the configuration include specifying an improper baud rate (supported baud rates can be found here), or an incorrect PROFIBUS address. Were you able to successfully save the bus configuration and generate the configuration database? Were you able to load the configuration database into the master device successfully as well?  
    If you are unable to resolve this issue, can you provide me with some more information about your system setup and error? What PXI chassis are you using, version of LabVIEW, operating system? What devices are you testing on the bus? 
    Julianne K
    Systems Engineer, Embedded Systems
    Certified LabVIEW Architect, Certified LabVIEW Embedded Systems Developer
    National Instruments

  • How to configure HFM to allow loading of EOM and AVG rates?

    I am new to HFM and would appreciate some assistance with loading of Exchange rates. I have created the currency members in the Value and Account Dimensions, and have also created two additional accounts (in the Accounts dimension) to capture the EOM and AVG rates, and tagged these as "currencyrate" in account type. How do I get the rates to appear in C1 and C2 so that I can load EOM and AVG rates? Firstly, the TO and FROM rates do not appear in C1 & C2 for me to select (via a Grid).  And when I tried to load the data via a flat file, the system highlights that the intersection is invalid..
    Scenario;Year;Period;View;Entity;Value;Account;ICP;C1;C2;C3;C4;Amount
    Actual;2013;Jul;YTD;[None];<Entity Currency>;EOMRate;[ICP None];AUD;USD;[None];[None];X.XXXX
    When I tried creating the currencies in C1 & C2, the system rejected the members due to duplication (ie in the Value dimension)
    Assistance appreciated.
    Thanks
    JC

    Hi JC,
    To view/load the rates in a grid you'll want to select [Currencies] from View option in your Member Selection.  View is the first of the three icons at the top of the screen (View, Filters, and Options).  Once you select [Currencies] you'll see a list comprised of all members you've previously added to the Value dimension.
    Your flat file looks good, however, you might try loading to [None] in the Value dimension rather than <Entity Currency>.  Also, confirm the members to which you're loading in C1 and C2 exist in the Value dimension.
    Note: you can also view/load rates using HsSetValue formulas.
    Thanks,
    Erich

  • How to configure DSN in Linux for use in Essbase?

    Hello everyone,
    Can anyone help me out about how to create a DSN in Linux to load data from Oracle into Essbase?
    Configuration:
    Oracle 10g R2 installed on the same box as Essbase (11.1.1.1)
    OS: RedHat Enterprise Linux 5.0
    (Since no DSN is configured, I am getting an error "No data sources defined. Please create one to continue" every time I try the 'Open SQL' option in a rule file)
    Thanks,
    Sayantan

    I am no expert on this subject, mind you, but I did recently work with Oracle support regarding an ODBC issue. My issue was primarily with a Teradata ODBC connection, but while we were looking at the .odbc.ini, he helped me fix my Oracle connection as well.
    He mentioned that we were connecting with the 'Oracle Wire Protocol', and my Oracle ODBC description in .odbc.ini looks like below. I'm not sure what all the entries are, but I do know that Driver, Hostname, SID, and Portnumber are mandatory (there may be other mandatory entries as well, should be some documentation somewhere on it)
    Here is my .odbc.ini definition for an Oracle Wire Transfer database connection
    [LBR_FCT2]
    QEWSD=39264
    Driver=/opt/hyperion/common/ODBC/Merant/5.2/lib/ARora22.so
    Description=Merant 5.2 Oracle
    ApplicationUsingThreads=1
    Hostname=ora-godev2a
    SID=godev2a
    PortNumber=6364
    ArraySize=60000
    CatalogIncludesSynonyms=1
    CatalogOptions=0
    DefaultLongDataBuffLen=1024
    DescribeAtPrepare=0
    EnableDescribeParam=0
    EnableNcharSupport=0
    EnableScrollableCursors=1
    EnableStaticCursorsForLongData=0
    EnableTimestampWithTimeZone=0
    LocalTimeZoneOffset=
    LockTimeOut=-1
    LogonID=
    OptimizeLongPerformance=0
    Password=
    ProcedureRetResults=0
    UseCurrentSchema=1

  • How to configure email and calendar to use my Yahoo mail box

    Hello,
    Please can someone help me to configure email and calendar sun microsystem edition on solaris 10 to access and send email through my yahoo inbox.
    I have tried configure it with yahoo POP and SMTP address but still i am receiving error message fetching the mail from the server.
    Yahoo Incoming Mail Server (POP3) - pop.mail.yahoo.com (port 110)
    Yahoo Outgoing Mail Server (SMTP) - smtp.mail.yahoo.com (port 25)
    Thanks

    Hi,
    <b>Creating E-mail transport:</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/36/eacfb72888e04eaf523f7236c0892f/frameset.htm
    also do <b>SMTP confiduration:</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm
    <b>Activate Calender Repository</b>
    Goto System Admin>System config>KM>Content management>Repository managers>Calendar Repository>New
    <b>Calendar Repository Manager</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/4b21436ed70448bf689c5f5c79dea1/frameset.htm
    Rewars points if its udeful
    Regards,
    Senthil K.

Maybe you are looking for

  • How come since updating to ios 6.1.2 AOL emails are not being pushed?

    Since updating the only way my iphone 4s receives emails is by manually checking. How do I fix this???

  • Mail to SOAP

    Hi All,           My requirement   When a file or XMl is send to Pi from PI some webservice http,soap need to pick and post. My doubt: 1.What are the settings to be done in sender mail adapter any basis help required. 2.How data will come to PI 3.wha

  • How do I remove Default.sfvidcap?

    Hi, I'm using windows XP and Adobe 9.  I use Vegas 7 to edit videos and Adobe9 has decided to take over as my default video capture program.  I need to understand what is going on and how to re-establish Vegas as my default video capture program.  Th

  • Web workers and JS database

    Hi there, I'm trying to create a JS database from within a web worker, in order to maximise UI when undertaking expensive DB queries. I have the web worker and main JS thread successfully communicating back and forth. However, I can't create a JS dat

  • Why does my email stop working?

    My POP email works fine for a while then just stops and the error " ...cannot connect/find server..."  appears.  Why?  What can I do?   I can't send or receive.  Thanks.