Bursting with translation and security attributes?

Hi folks,
I've been lurking on the forum for a while and despite not always finding a solution, existing threads normally pointed me in the right direction - so thanks :)
I'm working on EBS 11.5.10 with the latest Bi-Publisher 5.6.3 (5472959) and bursting (5968876) patches installed.
I have successfully done the following individual AR Invoice Bi-Publisher tasks:
1. translated an invoice RTF template by attaching an xliff file to the data definition,
2. applied security attributes to the template to restrict updates on the resulting PDF,
3. burst a custom AR invoice print and emailed the resultant pdf's.
The PDF generated by the combined Invoice print correctly applies the translation and security attributes; however when I run the "XML Publisher Report Bursting Program" to the XML file the resultant burst PDF's do not apply the translation or security attributes. I assume this a limitation of bursting control files? If so, is this on the list of future enhancements to Bi-Publisher?
Here's an example of my control file document entry, I have included locale and pdf-security entries - these don't cause an error but equally don't generate the desired result (p.s. I know I'm emailing on a PRI filter - it's just a test):
<xapi:document output-type="pdf" delivery="att_email">
<xapi:template type="rtf"
location="/usr/tmp/xxxINVOICE3.rtf"
locale="fr-US"
pdf-security="true" pdf-encryption-level="1" pdf-permissions-password="xxxxxx"
filter=".//G_INVOICE_HEADER[PRINTING_OPTION='PRI']" >
</xapi:template>
</xapi:document>
Thanks
Dave

=================
==Properties Idea's
=================
You would have happened to try applying the security stuff in the application for your template? Try that and see if the pdf properties get set.
If that doesn't work your left with two options:
1. create a java concurrent program and set the properties manually.
2. Log a tar.
=================
==local idea's
=================
Are you sure you don't have to create template config for the locale? i suspect that's why it's not applying the xliff translation. Also, your NLS_LANG needs to be set to FRENCH for the approriate template to be applied. If your logged-in as english your french format template will not be applied, neither will the translation. As an example you can query vl table and you'll only get american (us) but if you alter your session you'll get the translation for that language when your query the table.
location="xdo://xxxAR.xxx_XML_PRINT.fr.US"
try it out and see if that works. Note: This will only work if your session NLS_LANG is set to FRENCH.

Similar Messages

  • Right click with mouse in Word 2013 does not give the list with translate and synonyms etc

    since i upgraded to windows 8.1 right click on words in word 2013 does not open the regular list where you can tap on synonyms and translate. 
    it does work if i touch the screen.
    i moved to mouse mode but it does not help 
    can anyone help...
    i am starting to hate windows 8.1 and word 2013 because of this feature not working

    Hi
    I have tested in my computer and it worked well.
    Normally when we type a wrong spelling, right clicking the word does not give a list with translate and synonyms.
    Check to make sure your spelling is right.
    if the issue persists, Start Word in safe mode to check the issue:Hold "Ctrl" key and click into the program.
    It is also recommended that you do a repair for your Office suites in
    Control panel>Program and features>Office>Change>Repair
    Thanks
    Tylor Wang
    TechNet Community Support

  • Email Bursting with Translations

    Hi All,
    I am currently working on an requirement which involves emailing order acknowledgement report in multiple languages based on customer language preference.
    I have created base template and registered in English and United States territory. I have created different xliff flies for translation. When the report is run as standalone the report is printing in different languages. However when I try to burst the report and send email, its not considering translations and sending email in English only I am including my burst file.
    Any help is appreciated.
    <?xml version="1.0" encoding='utf-8'?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:globalData location="stream"></xapi:globalData>
    <xapi:request select="/XXDOEXOEACK_EU/LIST_G_HEADER_ID/G_HEADER_ID">
    <xapi:delivery>
    <xapi:email server="mailhost" port="25" from="[email protected]">
    <xapi:message id="email123" to="[email protected]" content-type="html" attachment="true" subject="${CF_XXD_SALES_ORDER_ACK_EMAIL_S} ${ORDER_NUMBER}">
    Please review the information on attached pick slip.
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="html" delivery="email123">
    <xapi:template type="rtf" location="xdo://XXD.XXDEXOEACK_EU.en.00/?getSource=true" ></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Thanks,
    Sudheer

    Hi Parin,
        Hope you are doing well. It seems bit tricky. I would try by creating a hierarchy node variable & restricting that to emploeyee manager. It may help you to avoid skipping of em_1 & emp_2 from distributing report. Not sure if it helps.
    Cheers,
    Ramesh

  • Dynamic ALV with Static and Dynamic attributes

    Hi All,
    In my requirement we have some 5 static attributes and rest attributes needs needs to be dynamically created based upon the input selections. for eg my input for start date and end date is between 201023 to 201152 then weeks between this range should apear as dynamic columns.
    i am able to create a dummy alv table display with out populating data into it but unable to set the data to it . Kindly help me in solving this issue.
    Regards,
    Sana.

    You might have created a dynamic node, bind the data to this node and after that use the SET_DATA method of ALV interface controller to set the data by passing the dynamically created node.

  • Bursting with EBIZ12 and Listner Process

    Hi All,
    We are using BI Publisher with R12 Instance. We are using bursting to break the BIG XML file for the Employee data
    by manager and sending it to multiple desitnations and it is moving fine.
    We need to acheive the following also along with the bursting of the file :
    a) Store Individual File XML data into file system & corresponding Manager name and ID in table for retreival later.
    i ) Where can we plug this code ? Will the Listener Hook Provides have handle to each file XML data ?
    ii) How can we register the Listener hook with Standard Concurrent Program ( as we using the standard Bursting program in 5.6.3)?
    Any other approaches / pointers will be helpful.
    Regards,
    Abhishek

    a) Yes, listeners would work.
    i ) yes and no, the bursting engine prune's the doc and the xml disappears after the next delivery.
    ii) see below. super easy. you need to implement the bursting interface and java concurrent program.
    Here's an example homeslice of the *[Burst Designer| http://web.me.com/beth.wiggins/ike/bipublisher/BurstDesignerDist/launch.html]* creates a tree using the listeners:
    package bipublisher.burst.listener;
    import java.awt.Desktop;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.Enumeration;
    import java.util.Properties;
    import java.util.Vector;
    import java.util.logging.Level;
    import javax.swing.JTextArea;
    import javax.swing.JTree;
    import javax.swing.SwingUtilities;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreeNode;
    import javax.swing.tree.TreePath;
    import oracle.apps.xdo.batch.BurstingListener;
    import oracle.apps.xdo.batch.DocumentProcessor;
    import oracle.apps.xdo.common.log.Logger;
    import oracle.apps.xdo.common.log.XDOLogImpl;
    * @author ike
    public class BurstDesignerListener implements BurstingListener, Runnable {
        private javax.swing.JTextArea logTextArea;
        private JTree tree;
        private String burstControlFileLocation = "";
        private String testFileLocation = "";
        String tempdir = System.getProperty("java.io.tmpdir");
        private DefaultTreeModel model;
        private Properties properties;
        DefaultMutableTreeNode top = new DefaultMutableTreeNode();
        DefaultMutableTreeNode request = null;
        DefaultMutableTreeNode delivery = null;
        DefaultMutableTreeNode attachmentsDtm = null;
        static Logger logger;
        public BurstDesignerListener() {
            super();
        public void run() {
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            try {
                redirectXdoLogStreams(out);
                model = (DefaultTreeModel) tree.getModel();
                top = (DefaultMutableTreeNode) model.getRoot();
                DocumentProcessor dp = new DocumentProcessor(burstControlFileLocation, testFileLocation, tempdir);
                dp.setConfig(properties);
                dp.registerListener(this);
                dp.process();
            } catch (Exception e) {
                Logger.log(e);
            } finally {
                try {
                    out.flush();
                    out.close();
                //logTextArea.append(bao.toString());
                } catch (IOException ex) {
                    java.util.logging.Logger.getLogger(BurstDesignerListener.class.getName()).log(Level.SEVERE, null, ex);
        public void beforeProcess() {
            logger.log("LISTENER:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::Start of Bursting Process", 1);
            tree.setEnabled(false);
        public void beforeProcessRequest(int requestIndex) {
            logger.log("LISTENER:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::Start of Process Request ID" + requestIndex, 1);
            request = new DefaultMutableTreeNode("Request ID: " + requestIndex);
            top.add(request);
        public void beforeProcessDocument(int requestIndex, int documentIndex) {
            logger.log("LISTENER:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::Start of Process Document", 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Request Index " + requestIndex, 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Document Index " + documentIndex, 1);
        public void beforeDocumentDelivery(int requestIndex, int documentIndex, String deliveryId) {
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ========Start of Delivery", 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Request Index " + requestIndex, 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Document Index " + documentIndex, 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: DeliveryId " + deliveryId, 1);
            delivery = new DefaultMutableTreeNode("Delivery ID: " + deliveryId);
            request.add(delivery);
        public void afterProcess() {
            logger.log("LISTENER:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::End of Bursting Process\r\n", 1);
            expandAll(tree, true);
            tree.setEnabled(true);
        public void afterProcessRequest(int requestIndex) {
            logger.log("LISTENER:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::End of Process Request ID" + requestIndex + "\r\n", 1);
        //logTextArea.append("End of Process Request ID" + requestIndex + "\r\n");
        public void afterProcessDocument(int requestIndex, int documentIndex, Vector documentOutputs) {
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ========End of Process Document", 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Outputs :" + documentOutputs, 1);
        public void afterDocumentDelivery(int requestIndex, int documentIndex, String deliveryId, Object deliveryObject, Vector attachments) {
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ========End of Delivery", 1);
            logger.log("LISTENER::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Attachments : " + attachments, 1);
            Vector<String> attachments2 = attachments;
            for (String str : attachments2) {
                attachmentsDtm = new DefaultMutableTreeNode(str);
                delivery.add(attachmentsDtm);
        public String getTempdir() {
            return tempdir;
        public void setTempdir(String tempdir) {
            this.tempdir = tempdir;
        public String getBurstControlFileLocation() {
            return burstControlFileLocation;
        public void setBurstControlFileLocation(String burstControlFileDir) {
            this.burstControlFileLocation = burstControlFileDir;
        public String getTestFileLocation() {
            return testFileLocation;
        public void setTestFileLocation(String testFileDir) {
            this.testFileLocation = testFileDir;
        public JTextArea getTextArea() {
            return logTextArea;
        public void setTextArea(JTextArea textArea) {
            this.logTextArea = textArea;
        public JTree getTree() {
            return tree;
        public void setTree(JTree tree) {
            this.tree = tree;
        public void expandAll(JTree tree, boolean expand) {
            TreeNode root = (TreeNode) tree.getModel().getRoot();
            // Traverse tree from root
            expandAll(tree, new TreePath(root), expand);
        private void expandAll(JTree tree, TreePath parent, boolean expand) {
            // Traverse children
            TreeNode node = (TreeNode) parent.getLastPathComponent();
            if (node.getChildCount() >= 0) {
                for (Enumeration e = node.children(); e.hasMoreElements();) {
                    TreeNode n = (TreeNode) e.nextElement();
                    TreePath path = parent.pathByAddingChild(n);
                    expandAll(tree, path, expand);
            // Expansion or collapse must be done bottom-up
            if (expand) {
                tree.expandPath(parent);
            } else {
                tree.collapsePath(parent);
        public Properties getProperties() {
            return properties;
        public void setProperties(Properties properties) {
            this.properties = properties;
        private void updateTextArea(final String text) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    logTextArea.append(text);
        private void redirectXdoLogStreams(ByteArrayOutputStream out) {
            out = new ByteArrayOutputStream() {
                @Override
                public void write(int b) {
                    updateTextArea(String.valueOf((char) b));
                @Override
                public void write(byte[] b, int off, int len) {
                    updateTextArea(new String(b, off, len));
                @Override
                public void write(byte[] b) throws IOException {
                    write(b, 0, b.length);
            //System.setOut(new PrintStream(out, true));
            //System.setErr(new PrintStream(out, true));
            XDOLogImpl fileLog = new XDOLogImpl();
            // bao = new ByteArrayOutputStream();
            fileLog.setDestination(out);
            Logger.setLog(fileLog);
            Logger.setLevel(Logger.STATEMENT);
        public void displayDocument() {
            if (Desktop.isDesktopSupported()) {
                Desktop desktop = Desktop.getDesktop();
                // Now enable buttons for actions that are supported.
                URI uri = null;
                try {
                    uri = new URI("file:///Users/ike/Desktop/corporate_examples/SALES.pdf");
                    desktop.browse(uri);
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                } catch (URISyntaxException use) {
                    use.printStackTrace();
        private void updateTextArea(final String text) {
        SwingUtilities.invokeLater(new Runnable() {
        public void run() {
        logTextArea.append(text);
        private void redirectSystemStreams() {
        OutputStream out = new OutputStream() {
        @Override
        public void write(int b) throws IOException {
        updateTextArea(String.valueOf((char) b));
        @Override
        public void write(byte[] b, int off, int len) throws IOException {
        updateTextArea(new String(b, off, len));
        @Override
        public void write(byte[] b) throws IOException {
        write(b, 0, b.length);
        System.setOut(new PrintStream(out, true));
        System.setErr(new PrintStream(out, true));
    Hope that helps!  If it does please give me the points!
    If your looking to test bursting I have an application that can help you design the bursting control file and run it. Keep in mind it still in beta. You'll be able to get your test scenerios much faster if you use my tool. It's free, so why not!
    Click here: *[Burst Designer| http://web.me.com/beth.wiggins/ike/bipublisher/BurstDesignerDist/launch.html | A free tool to design Burst Control Files - by Ike Wiggins]*
    if you want to see what you can do with the bursting designer look at the video: *[Burst Designer Video| http://web.me.com/beth.wiggins/ike/bipublisher/BurstingDesignerDemoComputer.m4v]*
    Ike Wiggins
    http://bipublisher.blogspot.com

  • I used to have the google toolbar with Translate and Currency conv. Now it is gone. Why?

    In the last version of this browser, I had a toolbar from Google that had Translate and Currency Converter. Now it's gone. Also when I opened a new tab, it would show lots of mini pages that I regularly visit, now that's gone. Where is this stuff and why can't the program just stay the same and work?

    The Google Toolbar '''7.1.20110512W''' version works in Firefox 5.0 by using the Compatibility Reporter extension, I tried it myself due to the large number of postings about GTB problems. <br />
    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/

  • Trouble with anchor and reference attributes combined with a Correlation ID

    Greetings, I'm a little green on FIM and looking for some advice.
    We have an HR system where we store the information on Contractors, Interns, and Employees.
    The business process for converting Contractors and Interns to Employees is to terminate the Contractor and re-hire as an Employee. This gives us a different employee number for the "live" entry in the HR system.
    Also, there is a "Supervisor No" attribute that is a Reference attribute for their manager. This is their employee number.
    What do I do in FIM? If the Employee number is the anchor, won't the system consider the employee a new object? Is there a way to connect the new employee record to the metaverse object that was a contractor or intern, and update the anchor attribute (the
    new employee number)?
    I was thinking of using a different custom field in the HR system as the FIM_Sync. But just realized that if this became the anchor, then no managers would connect since the Supervisor No is an Employee number.
    Thanks in advance for helping.
    -Doug
    *** Update ***
    I read some of the articles on Correlation ID that are in the 2003 version of MIIS the TechNet library. So a follow up question would be what happens between the CS and MV when the HR object changes.. Assuming I have this FIM_Sync attribute to be my
    Correlation ID.
    Contractor is created. Employee ID is anchor and FIM_Sync field is populated.
    New object in CS
    Projected into MV
    Provisioned out to AD and other systems, but they don't have the FIM_Sync attribute in their schema.
    Business Event.. Contactor converted to Employee:
    Contractor in HR system terminated (employment_state) and FIM_Sync entry removed.
    Employee record created in HR system and FIM_Sync value populated with what it was in the contractor record
    New Employee object in CS
    Does Contractor get disconnected?
    Does the Employee CS object get joined to existing MV object?

    At one of my previous projects we solved the same scenario as following:
    1. That was not a fully automatic process.
    2. Once we receive event that Contractor is terminated in HR, we put that user in "Terminated Contractors" set, disabling his active accounts, where the object resides for 30 days (business policy) before his accounts are removed from target systems.
    3. There's a custom workflow which triggers a notification to administrators if the following criteria are met:
    Name/Surname of fresh Employee are equal to one of the members of "Terminated Contractors" set
    Employee record from HR came within a week after Contractor's termination date (also, a business policy, agreed at customer's level. HRs are lazy and not necessarily process that transfer same day).
    4. IAM Administrator contacts HR to ensure that persons in question are actually the same one. Upon confirmation, manual join is made. Once object is joined, Correlation ID is written back to HR (actually, a buffer database acting as HR source) to ensure
    that the join can be made automatically.
    We faced several problems, though, which are beyond the scope of FIM itself:
    1. HRs were creating Employee record before terminating Contractor's one. A major pain, since new accounts are created, et cetera.
    2. HRs were creating Employee records too late (that's why we set a "timeout" for a week, initially it was two days)
    3. We had a case once when Contractor was terminated and new Employee came with the same name, but those were different people and HR application doesnt allow to differentiate "contractor fired" and "contractor moves to employee" events. That's why we had
    to stick to a manual and documented procedure.

  • Problems with RemoteObject and security sandbox errors

    I'm having trouble with an AS3 AMF RemoteObject request that is hosted on Google App Engine. I have a crossdomain.xml file in the root of the domain, and also one at the remoting endpoint.
    Here are the contents of the root crossdomain.xml:
    <?xml version="1.0"?>
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies ="all"/>
    <allow-access-from domain="*.appspot.com"/>
    <allow-access-from domain="*.{appid}.appspot.com"/>
    <allow-access-from domain="*.{appid}.com"/>
    <allow-access-from domain="*.{appid}.org"/>
    </cross-domain-policy>
    I have replaced my application's ID with {appid}. In the endpoint crossdomain.xml, it says the exact same thing, except it omits the <site-control> tag.
    Loading the swf file and testing it on my machine works just fine... I think that may have something to do with me having the debugger version of Flash Player. When I push it up to App Engine to make it public, other clients access it and get a Client.Error.MessageSend Channel.Security.Error error Error #2048 url: http://05-alpha.latest.{appid}.appspot.com/_rpc/data.
    I am using Flex 4 beta, and the App Engine Python runtime. I have tried full wildcard in the crossdomain, and even accessing the data endpoint at a relative URL so as to avoid this error.
    Someone please help! Thanks in advance.

    The error happens regardless of where I access it (the beta URL, the production URL, etc).
    That's literally all the actionscript code for the remote object... I've included an extended snippet below, but I have no idea why the SWF would be trying to access localhost.
    Even on my development machines (where it seems to work), there's nothing running on the host/port combo it's trying to access.
    Extended AS3:
    FatCatStage.mxml:
    <s:RemoteObject id="dataService" showBusyCursor="false" destination="data" endpoint="/_rpc/data" />
    main.mxml:
    <fx:Script>
    <![CDATA[
                   fatCatStage.dataService.RetrieveFirstGraph.addEventListener( ResultEvent.RESULT, fatCatStage.graphInitialize );
    fatCatStage.dataService.RetrieveFirstGraph();
    public function doGraphChange(event:ResultEvent):void
    if(event.result.result!='failure')
    var GraphData:Object = event.result.response;
    this.lastGraphData = GraphData;
    fatCatViz.removeAll()
    var root:GenericSprite = fatCatViz.addNodeElement(GraphData.object,null,this.center,GraphData.object.key);
    for each ( var Connection:Object in GraphData.object.connections )
    this._recursiveGraph(root, Connection, center, 3);
    else
    Alert.show('There was an internal graphing error. Please try again.');
    fatCatViz.updateInternalStructure();
    this.intervalSet = setInterval(timedReLayout,500);
    ]]>
    </fx:Script>
    That's all of the relevant actionscript for the entire application. Where is it referencing localhost?

  • Backup or redundant ISP with FWSM and security contexts...

    Hello guys,
    I am in a middle of a dessign problem. We have 2 ISP, and we have a FWSM running multiple contexts, my context that is receiving all the static translations for all my published servers is the one where i want to configure default gateway tracking (so it can go out to an "outside2" interface in case the primary fails) and use the second ISP link for internet access and static nat. Just the exact way the ASA works.
    I am not quite sure it works with FWSM.
    Thanks a lot!
    emilio

    Hello Emilio,
    You cannot configure SLA monitoring on the FWSM at this moment.
    Maybe in the future this great feature will be added to this modules.
    I know the 6500 supports it so you can try to set it up there.
    Regards,
    Julio

  • Business Objects XI R2 SP2 with Tomcat and Security Manager enabled

    XI R2 SP2 Unix server:
    I need to start the tomcat that is embedded in Business Objects with Security Manager enabled. Is there a writeup on how to do that? This changes the port that tomcat runs on, so do I just change all references to the port that it is currently running? Is it that simple?
    Thanks for any advice!

    It sounds like an issue that would need to be troubleshot by an engineer. Can you open  a message with support?
    Cluster members for client tools are defined in the windows registry. Does infoview work?
    Regards,
    Tim

  • Problems with Yahoo and security on my new iMac

    I just got my new iMac last weekend and I have had a Yahoo email account for years.
    Now all of sudden last night, I got an email from Yahoo saying I was signed up for some Phone Out Service and there was an account set up in my user name. (so they must have gotten my user name and password somehow)
    It looks like a Japanese name and some other credit card number on my account. How does this happen? Should I be worried? Has anyone else had this happen to them?
    The billing dept. got back to me and took all that Phone Out stuff off my account, but they didn't say how it got there in the first place! I'm really concerned about this. I think I'll close out my whole Yahoo account. (I have changed my password, etc.)
    Has anything like this happened to anyone else? I'm just really concerned about how this happened, someone must have gotten into my account somehow (with my user name and password), makes me worry they could get into something else more important. Is there anything I can do to prevent this?
    I was told I didn't need antivirus or internet protection, etc. I just turned on my firewall the other day and did log into my email a couple times before I turned it on. But maybe my info was stolen somewhere else (I have logged in my email on public computers).
    Any advice anyone? Is my iMac safe? Should I get some kind of internet protection? I'm still waiting to hear more from Yahoo as to how this happened.
    Thanks so much.

    traces7 wrote:
    I'm just nervous that they somehow got into my new iMac and still can. Is there more I should do to protect it?
    Thanks again!
    Are you on high speed internet behind a hardware firewall such as a router? Or are you on a dial up modem?
    If you are high speed and don't have a router I'd highly recommend you purchase one. They are not very expensive. If you do have a router its unlikely they got into your computer and more likely someone got the information from a public source. A router protects you by only allowing in solicited data from the site you are visiting and blocks uncalled for probes. If you are on dial-up its a good idea to turn on the software firewall.
    It's very easy for someone to go to a public computer, install a small piece of monitoring software from a usb memory stick, remove the stick and then leave the program running for a period of time collecting user names and passwords. After a week or so the thief returns to the computer, re-inserts his usb stick, downloads the collected information to the stick and leaves with the data.
    Other ways they can get information is from public wifi spots such as cafes or hotel rooms. All someone has to do is join the network, and from their own computer monitor the internet traffic on the unsecured connection and collect data.
    Unless you store your passwords on the computer there's nothing there for anyone to get into. If they tried to install a piece of software you would have had to have given permission to install it just like any other piece of software. But if you do think your computer has been compromised the only sure way to know it's safe again would be to re-format the hard drive and re-install your OS and data.
    Message was edited by: pogster

  • Problems with Scrollbar and Security.allowDomain("*")

    When I use Security.allowDomain) the scrollbar stops work when my app is used in swfloader.
    If I remove Security.allowDomain() will my app not work in FireFox.
    I'm using Weborb .net.

    The app that using my app is on an other server. On both sides we have  crossdomain.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
        <allow-access-to domain="*"/>
        <allow-access-from domain="*" secure="false"/>
    </cross-domain-policy

  • HT5914 Using AppleScript with Accessibility and Security features in Mavericks

    I have an AppleScript that works fine when run from the AppleScript Editor and has an errorr when run as an App.  This problem is described by the following knowledgebase article: http://support.apple.com/kb/HT5914   However, in my case the first error appears, but the second dialog does not.  I've tried Signing the AppleScript, but the error remains.  Any suggestions?

    A regular AppleScript application saves its properties to the script in the application bundle, which is seen as a new (different) application.  If your script doesn't need to keep its properties (e.g. to save some current value for the next run), you can try making the script read only, then add the application to the Privacy list.

  • Apps 11i, Discoverer, and Security

    Just an FYI for those out who are having problems picking up Apps Security when trying to implement Oracle Discoverer on top of Apps 11i. We have struggled over the past six weeks to have Discoverer pick up Apps Security and have finally found a combination that works. If anyone else is having a similar problem and would like the details of our configuration, please e-mail me at [email protected]

    Hi,
    If you have an issue with Discoverer and security, your best option is to post a question in the Discoverer forum (Discoverer
    Rod West

  • IWeb Translation and Share link?

    I am building a website for teens around the globe. I would like my site to include a Translation and Share This link. Yet I am having trouble finding an option that interfaces with iWeb.
    Does anyone know if iWeb is set up to work with Translation and Share This?
    Thanks so much!
    Christine

    You will need to find a website hosting company.
    The Creative Cloud will let you store files but it will not let you host a website.

Maybe you are looking for

  • Upgrade to 10.8 broke all (?) aliases

    Yesterday, I upgraded from 10.7.5 to 10.8.3 via App Store.   As I've gingerly returned to work post-upgrade, everything seems OK so far, except:  Most (all?) of my existing aliases are broken.  Never had any particular problem with aliases before.  N

  • About BBPUPDVD and BBPMAININT

    Hello people, I think I have a basic question for you... I have may vendors defined in R3 in some Purchasing Organizations. And I have to transfer this information to EBP. I know I can use BBPUPDVD to update the vendors catalog in EBP from R3. If thi

  • I keep getting "This content requires HDCP for playback" with my new Apple TV 3.

    I keep getting "This content requires HDCP for playback" with my new Apple TV 3. I've returned one and got a new one. I've turned everything on and off. I've upgraded my bandwith. I've tried using different HDMI ports. Nothing is working. Sometimes a

  • How to expose odata service for input parameter based procedure.

    i have created one procedure in my schema. CREATE PROCEDURE TEST (in id varchar) AS BEGIN SELECT * FROM "table" WHERE "ID" = :id; END; and i am able to call the procedure from console. CALL "schema"."TEST"('1') my question is how to expose this proce

  • How to transport Query?

    Hi All, Kindly teach me how to transport query. Thanks, Sid