In which file discoverer connections stored

hi,
When we create a connection in discoverer using discoverer/plus url, in which file all these connections are stored and how to delete a connection.
Fyi, I am talking about Oracle 9ias.
Regards
Kumar

ASFK wrote:
In system-jazn-data.xml only Application Roles GUIDs are stored. There are no GUIDs for users (for example, for users in Weblogic LDAP).
Also I don't fully understand what exactly happens when regeneration of GUIDs is done. Are user guids changed (where?) or only group guids are changed? Or maybe only some references in webcatalog and repository are changed?Good information. I never took a detailed dive into the GUID's in the system-jazn-data.xml file. To answer your other part of the question, here is what the documentation says:
"After changing the directory server that is used as the data source for the authentication provider, it is best practice to update the user GUIDs. If the same user name exists in both directory servers (original and new), then the original user GUID might conflict with the user GUID that is contained in new directory server. A refresh forces the system to reference the user GUID that is contained in the new directory server. Authentication errors might result if the GUIDs are not refreshed and the system detects a mismatch for the user GUID.
The GUIDs that are stored in the Oracle BI Presentation Catalog or in the RPD file can be resynchronized and refreshed as described in the following procedure. " ( http://docs.oracle.com/cd/E21764_01/core.1111/e10105/testprod.htm#BABFIHFJ ).
So I believe the reference to the User GUID's are resynchronized.
Thanks,
-Amith.

Similar Messages

  • How do we find out the file path which the IDOC is stored.

    Hi,
    If we use T-code: AL11, we can see the file path of the Unix server.  And some IDOC outbound file is also stored in some file path after generated.
    If i generated an outbound IDOC, how do i know in which file path it stored??
    Thanks

    Hi,
    Go to control record of the outbound IDOC.
    go to partner tab, check the port under sender information.
    the outbound file path will be configured with your port.
    Use T-code WE21, the concerned port will be available under section 'File'
    Directory under tab Outbound file will show the path under which file has been stored.

  • When i exit, mozilla will prompt me a message asked if i would like to save my tabs(i have 13 tabs opened). may i ask, where does all those 13 tabs (web addresses/links) stored in mozilla, or in which file that i can locate in mozilla's folder? I need a s

    I have a problem with my bookmarks, cookies, history or settings
    Description
    When i exit, mozilla will prompt me a message asked if i would like to save my tabs(i have 13 tabs opened).
    may i ask, where does all those 13 tabs (web addresses/links) stored in mozilla, or in which file that i can locate in mozilla's folder? I need a solution that i can find/copy down that 13 web addresses without needed to open mozilla browser.
    YOUR ATTENTION TO ABOVE MATTER IS VERY MUCH APPRECIATED!
    PLEASE HELP!
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    Please see '''sessionstore.js''' in your Firefox profile directory, the location of which is described in the [[Profiles]] knowledge base article. This file can be viewed in a readable format using the [https://addons.mozilla.org/en-US/firefox/addon/10869/ JSONView] add-on.

  • HT1339 Hi i have an I pod and i had used it as hard disk also. Now when ever i connect it with my Laptop it shows restore to factory setting....i wanted to knwo is there any way i can save the data which i had already stored in the I pod

    Hi i have an I pod and i had used it as hard disk also. Now when ever i connect it with my Laptop it shows restore to factory setting....i wanted to knwo is there any way i can save the data which i had already stored in the I pod. I dont want to loose that data???

    sure pretty simple.  make a backup of your current settings
    http://support.apple.com/kb/HT1766?viewlocale=en_US
    then restore device from old backup you need pics off of
    then import pics to computer
    http://support.apple.com/kb/HT4083
    you may need to save pics to camera roll first
    then restore the new backup and sync pics back to phone via itunes
    Peace, Clyde

  • I have a PVR which supports DLNA connected to my home network.  I want to access files on my MacBook from the PVR.  I understand that my MacBook doesn't support DLNA. Is there any 3rd party  software that I can install on my MacBook to provide DLNA?

    Hi,
    Can anyone help me please.
    I have a Personal Video Recorder (Humax HDR-1010S), which supports DLNA, connected to my home network via Wi-Fi. 
    I want to play music from iTunes and view photos from iPhoto from my MacBook (which is also connected to the home network) via the PVR / TV / Home Cinema sound system.  I understand that my MacBook (running OS X Mavericks) doesn't support DLNA server.
    Is there any 3rd party  software that I can install on my MacBook to provide DLNA server?
    Thanks,

    My recollection is that the iPhoto library has some fairly robust protections to prevent inadvertent or even deliberate changes being made that might have unwanted consequences. I'll take alook at my setup and let you know if I can see anything that might help you. Even if you get Serviio to "see" the iPhoto library, it almost ceratinly won't show the album structure and names. What I did is to export each iPhoto album to a standard folder with the appropriate folder name. These I keep on an external backup disc and Serviio can see these without trouble.

  • I want to load Firefox on my computer at home, which is not connected to the internet. I want to download Firefox to my flashdrive and then add it to my computer at home. When I try to download Firefox, it won't let me change the path of where it download

    I want to download Firefox on a flashdrive so I can then download it to my home computer which is not connected to the internet. When I download Firefox, it won't let me change the path and so tries to download on a public computer, which isn't allowed. The reason I want it on my home computer is because I'm creating web pages and I want to view my html pages using a variety of browsers, including Firefox.

    From another computer, go to http://www.mozilla.com/firefox/, click "Free download" button, click "Save File" button, select your flash drive in "Save as" window. "Firefox Setup 3.6.13.exe" file will be saved in your flash drive.
    You just need to insert it in your new computer and double-click on "Firefox Setup 3.6.13.exe" from Windows Explorer and follow instructions.

  • Executing batch file from Java stored procedure hang

    Dears,
    I'm using the following code to execute batch file from Java Stored procedure, which is working fine from Java IDE JDeveloper 10.1.3.4.
    public static String runFile(String drive)
    String result = "";
    String content = "echo off\n" + "vol " + drive + ": | find /i \"Serial Number is\"";
    try {
    File directory = new File(drive + ":");
    File file = File.createTempFile("bb1", ".bat", directory);
    file.deleteOnExit();
    FileWriter fw = new java.io.FileWriter(file);
    fw.write(content);
    fw.close();
    // The next line is the command causing the problem
    Process p = Runtime.getRuntime().exec("cmd.exe /c " + file.getPath());
    BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line = input.readLine()) != null)
    result += line;
    input.close();
    file.delete();
    result = result.substring( result.lastIndexOf( ' ' )).trim();
    } catch (Exception e) {
    e.printStackTrace();
    result = e.getClass().getName() + " : " + e.getMessage();
    return result;
    The above code is used in getting the volume of a drive on windows, something like "80EC-C230"
    I gave the SYSTEM schema the required privilege to execute the code.
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'java.io.FilePermission', '<<ALL FILES>>', 'read ,write, execute, delete');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    GRANT JAVAUSERPRIV TO SYSTEM;
    I have used the following to load the class in Oracle 9ir2 DB:
    loadjava -u [system/******@orcl|mailto:system/******@orcl] -v -resolve C:\Server\src\net\dev\Util.java
    CREATE FUNCTION A1(drive IN VARCHAR2) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'net.dev.Util.a1(java.lang.String) return java.lang.String';
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    The problem that it hangs when I execute the call to the function (I have indicated the line causing the problem in a comment in the code).
    I have seen similar problems on other forums, but no solution posted
    [http://oracle.ittoolbox.com/groups/technical-functional/oracle-jdeveloper-l/run-an-exe-file-using-oracle-database-trigger-1567662]
    I have posted this in JDeveloper forum ([t-853821]) but suggested to post for forum in DB.
    Can anyne help?

    Dear Peter,
    You are totally right, I got this as mistake copy paste. I'm just having a Java utility for running external files outside Oracle DB, this is the method runFile()
    I'm passing it the content of script and names of file to be created on the fly and executed then deleted, sorry for the mistake in creating caller function.
    The main point, how I claim that the line in code where creating external process is the problem. I have tried the code with commenting this line and it was working ok, I made this to make sure of the permission required that I need to give to the schema passing security permission problems.
    The function script is running perfect if I'm executing vbs script outside Oracle using something like "cscript //NoLogo aaa1.vbs", but when I use the command line the call just never returns to me "cmd.exe /c bb1.bat".
    where content of bb1.bat as follows:
    echo off
    vol C: | find /i "Serial Number is"
    The above batch file just get the serial number of hard drive assigned when windows formatted HD.
    Same code runs outside Oracle just fine, but inside Oracle doesn't return if I exectued the following:
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    Never returns
    Thanks for tracing teh issue to that details ;) hope you coul help.

  • Error while trying to open the discoverer connections page

    Dears,
    please your kindly help!!!
    Error while trying to open the discoverer connections page
    When I tried to open the link http://192.168.4.222:7778/discoverer/viewer
    I received the error:
    An error occurred while handling the event. See the application log for more details.
    A fatal application error has occurred. Please consult with your OracleAS administrator or look at the application log file.
    I checked the OC4J application.log file and I found the following:
    10/03/11 10:34:16 discoverer: [ERROR] [AJPRequestHandler-ApplicationServerThread-6] oracle.discoverer.applications.framework.
    GlobalExceptionHandler.execute null
    java.lang.NullPointerException
    at java.io.FileOutputStream.<init>(FileOutputStream.java:172)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    at java.awt.Font$2.run(Font.java:606)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Font.createFont(Font.java:600)
    at oracle.discoverer.renderer.pdf.XDOConfig._discoverFonts(Unknown Source)
    at oracle.discoverer.renderer.pdf.XDOConfig.<init>(Unknown Source)
    at oracle.discoverer.renderer.pdf.XDOConfig.getNewInstance(Unknown Source)
    at oracle.discoverer.renderer.pdf.PDFGenerator.initPDF(Unknown Source)
    at oracle.discoverer.applications.viewer.model.ViewerApplication.init(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationFactory.create(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationController.getApplication(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationController.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    invoke(ServletRequestDispatcher.java:824)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forward(ServletRequestDispatcher.java:222)
    at oracle.discoverer.applications.viewer.url.URLServlet._process(Unknown Source)
    at oracle.discoverer.applications.viewer.url.URLServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.doFil
    ter(ResourceFilterChain.java:65)
    at oracle.discoverer.applications.framework.ApplicationEncodingFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    invoke(ServletRequestDispatcher.java:663)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.proces
    sRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJP
    RequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJP
    RequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor
    $MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)
    10/03/11 10:34:16 discoverer: [ERROR] [AJPRequestHandler-ApplicationServerThread-6] oracle.discoverer.applications.framework.
    ApplicationController._logException error.handling.event
    oracle.discoverer.applications.framework.ApplicationException: error.handling.event
    at oracle.discoverer.applications.framework.GlobalExceptionHandler.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:553)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:486)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    invoke(ServletRequestDispatcher.java:824)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forward(ServletRequestDispatcher.java:222)
    at oracle.discoverer.applications.viewer.url.URLServlet._process(Unknown Source)
    at oracle.discoverer.applications.viewer.url.URLServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.doFil
    ter(ResourceFilterChain.java:65)
    at oracle.discoverer.applications.framework.ApplicationEncodingFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    invoke(ServletRequestDispatcher.java:663)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.
    forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.proces
    sRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJP
    RequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJP
    RequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor
    $MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.lang.NullPointerException
    at java.io.FileOutputStream.<init>(FileOutputStream.java:172)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    at java.awt.Font$2.run(Font.java:606)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Font.createFont(Font.java:600)
    at oracle.discoverer.renderer.pdf.XDOConfig._discoverFonts(Unknown Source)
    at oracle.discoverer.renderer.pdf.XDOConfig.<init>(Unknown Source)
    at oracle.discoverer.renderer.pdf.XDOConfig.getNewInstance(Unknown Source)
    at oracle.discoverer.renderer.pdf.PDFGenerator.initPDF(Unknown Source)
    at oracle.discoverer.applications.viewer.model.ViewerApplication.init(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationFactory.create(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationController.getApplication(Unknown Source)
    at oracle.discoverer.applications.framework.ApplicationController.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    ... 21 more
    10/03/11 10:34:16 discoverer: TemplateUINode, localName='documentTemplate': /u01/oracle/ias/j2ee/OC4J_BI_Forms/applications/d
    iscoverer/discoverer/cabo/styles/dc-blaf.xss: Parsing error, line 5, column 22: <laf> is not an understood element.
    This sometimes means the element's namespace (http://xmlns.oracle.com/uix/style) is set incorrectly. This may also be an issue with the syntax of its parent element.
    Please anyone can help.
    Best Regards ,
    Yasser

    Welcome to the forums !
    Pl see if MOS Doc 360403.1 (Launcing Discoverer Plus Fails With Error "Oracle.Discoverer.Applications.Framework.Globalexceptionhandler.Execute Null" in Application.log File) is applicable in your case
    HTH
    Srini

  • In which files does smtp servers details are mentioned in 11.5.10.2

    Hi,
    Can anyone please confirm in which files smtp entries will be stored so that i can manually change.
    Initially i thought to change SMTP entries in xml file and run the autoconfig. But it was not recommened in this project.
    I have been instructed that autoconfig should not be run as there are two many customisations involved.
    Now, I need to change the server name manually in all files where SMTP server details exist.
    Can anyone shed some light how can i find those files,how can i change the smtp server name.
    Regards,
    Srini

    Hi;
    Please see below which could be helpful for your issue
    What Mail Server Types Can Be Used To Configure The Workflow Java Mailer In R11i and R12.+ [ID 943578.1]
    How To Configure an SMTP Server on Red Hat Linux for the Java-based Workflow Notifica [ID 252116.1]
    Autoconfig Overwriting The SMTP Server Name For The Java Mailer [ID 313954.1]
    Regard
    Helios

  • Controlling which node OWB connects to in  a RAC environment

    We have OWB (10g R2) deployed on a two node RAC (10gR2) database (DB name ZIAP, instances = ZIAP1 ZIAP2).
    We would like to have client session and OWB sessions connect to instance ZIP1 consistently when we connect to ZIAP.
    We have changed the tnsnames.ora file to switch load balancing off and to connect to ZIAP1 1st).
    This works for client sessions.
    When OWB sessions run (i.e. when we execute OWB jobs) we see them start on ZIAP2.
    The question is how does OWB decide which instance to connect to and how can we control this?
    Thks
    John

    Hi John,
    look this
    Re: Registering RAC  location results in ORA-29532
    We have changed the tnsnames.ora file to switch load balancing offto switch off load balancing it not enough to modify tnsnames.ora on client side,
    also you need to modify instances parameters (for more detail look at forum thread which I specified)
    Regards,
    Oleg

  • Is there a way to manage your discoverer connections other than through OEM

    In chapter 6 of the administrator guide of Discoverer Admin it states to manage your Discoverer connections through OEM is there another way to do that other than using OEM.
    Help, Our DBA wants to know why I want OEM. I have tried to explain.
    Can you help me?

    Hi
    You can create private connections, which are local to your machine and browser. Alternately, you can use SSO connections, provided these are activated by your administrator. Neither of these connections require management via the OEM.
    Regards
    Discoverer Product Management

  • Which files to save prior to formatting?

    Hi there!
    I am going to format Windows 7 today and I would like to know which files and folders I need to save for one of my premiere pro projects to be able to re open it once Windows has been reinstalled?
    Do I need the preview files and encoded files? Or do I just need to save my .prproj file and place all my video in the same directories after the reinstall?
    Thanks for your help!

    >two partitions
    If all you do is keep STATIC copies on the 2nd partition... if you try to USE that 2nd partition for any video editing task... VERY bad idea!
    One hard drive has one set of read/write heads, and actually using a partition during video editing... for anything at all... is a HUGE drain on the drive
    My 3 hard drives are configured as... (WD = Western Digital)
    1 - 320G WD Win7 64bit Pro and all program installs
    2 - 320G WD Win7 swap file and video project files
    3 - 1T WD all video files... input & output files
    Search Microsoft to find out how to redirect your Windows swap file
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US
    Trying to use only ONE Hard Drive for Video Editing
    You are a music conductor, with a baton that you use to point to various parts of the orchestra... this is like Windows pointing to various parts of the hard drive to do Windows housekeeping or to load program segments for various functions
    Now, at the same time and with the same hand... while still using the baton to conduct the orchestra... pick up a bow and play a fiddle... this would be doing something with your video file at the same time as all the other work
    You as a person cannot do both at the same time with the same hand
    A computer is a LITTLE better, in that it can switch from one kind of task to another very quickly... but not quickly enough for EASY video editing
    You need AT LEAST two hard drives (separate drives, never a partition http://forums.adobe.com/thread/650708?tstart=0 for more) with Windows (or Mac OS) and software on your boot drive, and video files on a 2nd drive so the boot drive is not slowed down by trying to do everything
    I find that the three drives I use work very well for me, for editing AVCHD video... some people use a 4th drive, so video INPUT files are on drive three and all OUTPUT files are on drive four... I only bought a mid-tower case instead of a full tower case (my bad... but had to fit in the space available on my office desk!) so I use the three drives that will fit
    Depending on your exact hardware (motherboard brand & model AND USB2 enclosure brand & model AND external hard drive brand & model) AND the type of video file, you may... or may NOT... be able to use an external USB2 hard drive for SD (Standard Definition) video editing
    Steve Grisetti in the Premiere Elements forum http://forums.adobe.com/thread/856208?tstart=0 and Jim Simon in the Premiere Pro forum http://forums.adobe.com/thread/856433?tstart=0 use USB externals for editing
    A USB3 hard drive connected to a motherboard with USB3 is supposed to be fast enough for video editing (I don't have such, so don't know) but eSata DOES have a fast enough data transfer for video editing... I have not used this eSata Dock... for reference only, YMMV and all the usual disclaimers
    http://www.amazon.com/Thermaltake-BlacX-eSATA-Docking-Station/dp/B001A4HAFS/ref=cm_cmu_pg_ t

  • Need free OST viewer tool to help to view OST files without connecting to MS Exchange Server and MS Outlook.

    Need free OST viewer tool to help to view OST files without connecting to MS Exchange Server and MS Outlook.

    Hi Howard,
    As I know, Microsoft does not provide any kind of inbuilt tool or free software to only view OST file, even without the connectivity with exchange server (Offline).
    Try SysTools OST Viewer freeware which helps you to view all OST file save at your system in an easy way, whether you want to see the attachments or other items of OST file.
    Note: This is a free inbuilt utility, but try it on your own risk as I am not much aware about it and its working. But this tool sounds good according to your requirement and hopefully it would give you 100% satisfaction.
    Thanks
    Clark Kent

  • Does File Delivery support files to be stored in more than one format?

    Hi All,
    Can we have internal delivery channel configured to store files in more than one format.
    For eg. We want the files to be stored simultaneously in both xml and txt format as per requirement. Is this possible in Oracle 10g B2B.

    No, it won't be possible. At a time only one file would be written.
    You may write a utility which may poll the incoming directory (where Oracle B2B puts the file) and write messages in required formats in required directories.
    Regards,
    Anuj

  • Info about AD Domain Controller to which I'm connected

    Hi,
    Is there a way to find the AD Domain Controller to which I'm connected ?
    Some time I find the info in these file :
    /Library/Preferences/OpenDirectory/DynamicData/Active Directory/<MYDOMAIN>.plist
    under 'last used server' but this field is not always populated..
    Is there any other place where find or some command to use ?? (or even more info about the previous plist file and how is created/populated.. i have several Macsac on same domain but not all computers have the file populated in the same way..)
    Any help appreciated
    Thanks
    m.

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''Network.'''
    Look for '''Configure How Firefox Connects''' and press the '''Settings''' button.
    Check the settings.
    Some problems occurs when your Internet security program was set
    to trust the previous version of Firefox, but no longer recognizes your
    updated version as trusted. Now how to fix the problem: To allow
    Firefox to connect to the Internet again;
    * Make sure your Internet security software is up-to-date (i.e. you are running the latest version).
    * Remove Firefox from your program's list of trusted or recognized programs. For detailed instructions, see
    '''[https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet.]''' {web link}

Maybe you are looking for