_blank link in external xml generates pop up blocker

I have links that are read into an html formatted text field
from an external xml file. My problem is that I would like the link
to load a new browser window when clicked using _blank - but that
generates pop up blocker in firefox.
I've tried passing the link to a function in flash to do the
same thing , but no luck with that.
The links all work OK (as soon as I put _self in it performs
as expected)
Does anyone know a solution to this problem
thanks

you could try using javascript to open the popup and see if
your popup blocker is less sensitive about that. you would use the
externalinterface class in flash to communicate between
actionscript and javascript.

Similar Messages

  • I develop electronic technical manuals. With new version all links to external xml files in the manual go to top of file not to designated ID. Works fine in IE.

    Links to external file in same directory does not go to proper location.
    <pre><nowiki>ex:Link
    <xref href="G00020-THRY-11-5840-390-23NP-510" inline="true" scilevel="no"
    security="uc" show="replace" title="RADAR W6" xml:link="simple"
    xrefentclass="xrefs"/>
    Destination: in G00020-THRY-11-5840-390-23NP-V-1-0-0.xml in same directory. Goes to top of this file. All similar links are defective in same manner. Does not recognize id ie.-510
    <row id="G00020-THRY-11-5840-390-23NP-510">
    <entry>
    <pcnarr>RADAR </pcnarr>
    <extref href="77A586771_REV-E.pdf" refconrevccrugenentname="null"
    refconrevgenentname="null" title="W6"/></entry>
    <entry>
    <pcnarr>77A586771P1 </pcnarr>
    </entry>
    <entry>
    <pcnarr>77A580358 SHT 2 ZONE C7 </pcnarr>
    <extref href="SCH_77A580325_REV-B.pdf" refconrevccrugenentname="null"
    refconrevgenentname="null" title="RADAR ASSEMBLY"/></entry>
    <entry>
    <pcnarr>77A580358 SHT 2 ZONE C6 </pcnarr>
    <extref href="SCH_77A580325_REV-B.pdf" refconrevccrugenentname="null"
    refconrevgenentname="null" title="RADAR ASSEMBLY"/></entry>
    <entry>
    <pcnarr>COMMS/CTRL/DISCRETES </pcnarr>
    </entry>
    <entry>
    <pcnarr>P1/A2A2J19 </pcnarr>
    </entry>
    <entry>
    <pcnarr>P2/A1J6 </pcnarr>
    </entry>
    <entry>
    <pcnarr>Point to Point : W6 connector P1 is mounted to the RPES bulkhead
    J6 on the curbside under the maintainence platform. The P2 connector
    is then routed to the AES bulkhead J19. </pcnarr>
    </entry>
    </row></nowiki></pre>

    I figured it out.
    I created the links in InDesign by making an interactive link to a file. When I open the file in Acrobat, the links work fine over the network. I burn to disk and the links no longer work.
    Problem: At some point, InDesign changes the "open file" hyperlink command in InDesign into a URL webpage request in Acrobat.
    Solution: So basically, I now have to go into the file in Acrobat and change all the buttons from "open web link" to "open file." It's only a product catalog with about 1,200 links that's due today.

  • Search external xml

    hi, i am trying flash builder 4.6
    with some tutorials i was able to manage to connect to and external xml via http:
    <s:HTTPService id="srv" url="http://85.1......
    i also created  detail view of the items on the list generated.
    what i cannot find is how do i search the database and show only the results of that search.

    Hi,
    Based on your description, you cannot crawl an external site in SharePoint 2013.
    Check things below:
    1. Check if there is any error about the external site in the crawl log. If there is error, you can click the number of the error to see the details of the error.
    2. If your crawl rule includes either of the following please uncheck them and test again. “Crawl SharePoint content as http pages”, “Follow links on the URL without crawling the URL itself".
    3. If the external site is a SSL enabled website, you can configure SharePoint to Ignore SSL warnings (
    Open SharePoint Central Administration->Select Manage service applications, from the Application Management section->Select the Search Service Application. e.g. Search Service 1->Select Farm Search Administration->Toggle the Ignore SSL warnings
    to Yes)
    The article below is about how to configure external site as content sources in SharePoint search
    https://mohitvash.wordpress.com/2012/03/07/configure-external-site-as-content-sources-in-sharepoint-search/  
    The article below is about SharePoint could not establish trust relationship for the SSL/TLS secure channel when crawling SSL enabled websites
    http://www.infotext.com/help/sharepoint-could-not-estabilish-trust-relationship-for-the-ssltls-secure-channel-when-crawling-ssl-enabled-websites/
    There is a similar case:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/c4aa91df-d2fd-4c34-9d3c-796666a3509e/sharepoint-2013-could-not-crawl-external-php-cms-website?forum=sharepointsearch
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Variable substitution in external XML

    I'm loading an external xml file using the Loader class, and
    then assigning the loaded content to a variable when the loading is
    complete, like this:
    function x_loaded(e:Event) {
    var rotation_value:String = "-180";
    mc_xml = XML(x_loader.data);
    If I include in my xml file a value to be substituted, for
    example <image rotation={rotation_value}/>, the parsing of
    the xml fails when assigning to the mc_xml value.
    Is it possible to substitute values in externally loaded xml?
    alternatively, is there a way to simply SET the values,
    something like image.attribute("rotation")="180";
    thanks in advance

    Thanks, k
    I think all the code that's germane is in my first post, but
    here's a bit more detail. It turns out I was using URLLoader, sorry
    to confuse the issue. Your help is appreciated. The failure occurs
    on the line that reads "mc_xml = XML(x_loader.data);" and the error
    message is: "TypeError: Error #1090: XML parser failure: element is
    malformed."
    my code:
    var mc_xml:XML;
    var x_loader:URLLoader = new URLLoader();
    var x_url:String = "motion.xml";
    var x_req:URLRequest = new URLRequest(x_url);
    x_loader.addEventListener(Event.COMPLETE,x_loaded);
    x_loader.load(x_req);
    function x_loaded(e:Event) {
    var rotation_value:String = "-180";
    mc_xml = XML(x_loader.data);
    Here's the (simplified) external xml file. It's generated by
    a "Copy motion as ActionScript 3.0" and everything works fine
    before I try to substitute some variables in the xml. You can see
    the substitution in the penultimate line.
    <Motion duration="20" xmlns="fl.motion.*"
    xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
    <source>
    <Source frameRate="25" x="784.3" y="78.1" scaleX="1"
    scaleY="1" rotation="180" elementType="movie clip"
    instanceName="mc" symbolName="Symbol 2">
    <dimensions>
    <geom:Rectangle left="0" top="0" width="288"
    height="209"/>
    </dimensions>
    <transformationPoint>
    <geom:Point x="0.2586805555555556"
    y="0.3923444976076555"/>
    </transformationPoint>
    </Source>
    </source>
    <Keyframe index="0">
    <tweens>
    <SimpleEase ease="0"/>
    </tweens>
    </Keyframe>
    <Keyframe index="19" x="-709.8" y="3.9000000000000057"
    rotation={rotation_value} />
    </Motion>
    Thanks in advance for any insight you can provide

  • How can I open a link to an xml document with a specific helper application?

    I have an html file with links to multiple xml files. When I click on one of these links, I would like Firefox to use an application of my choosing (e.g., Xmetal) to open the xml file. It works great with sgml files, because I was able to associate the "sgml" content with my external application. I can't seem to make the same thing happen for xml files, though.

    Many people on this thread have a common problem, how to download documents that have a .XML extension and then be able to view/edit them in Word. The issue is that Firefox does not treat a file it receives with a .XML extension as a download candidate, it just displays the XML in a tree structure in a popup window or a new tab. If there was an option to automatically (by configuration) open a .XML file in Word or even if it was a manual select option, that would solve the problem. Today you have to go through the process of saving the page, then when the popup down window indicates is completed, you use the right mouse to select open, when then takes you to Word (assuming Word is configured in your OS to process .XML files. This process is difficult to teach to non technical people because it error prone. Any help would be greatly appreciated.

  • Loading external XML data into XMLObject

    hey all,
    i've been working on a basic fl2 app that generates a list of
    posts from an external XML file located on my server
    (www.omedia.mobi/forum.xml) The swf file is also located there in
    the same directory .(crime.swf).
    The app runs fine in the emulator, both when i tried to load
    the data locally on my mac, and when i load it from the server. But
    when i put the swf file on my N70, it fails to load the data.
    I'm banging my head against a wall trying to get this sorted.
    has anyone had any similar experiences?
    any help would be apprieciated...
    many thanks
    Matt

    Matt–
    Dumb question, are you 100% sure that your phone is making
    any connection to the internet? Does your phone read a name/value
    variable from an external file?
    I just build a file to test this (It won't work
    online—it will only work on a phone.):
    http://punchkickinteractive.com/development/mobileConnectionTest/mobileConnection.swf
    The FLA is also up:
    http://punchkickinteractive.com/development/mobileConnectionTest/mobileConnection.fla
    Also, you can check out:
    http://www.adobe.com/devnet/devices/articles/flashlite11_rss.html
    quote:
    //Some of the code from the FLA:
    canLoad = _capLoadData;
    if (canLoad == 1) {
    urlPath = "
    http://punchkickinteractive.com/development/mobileConnectionTest/mobileConnection.txt";
    loadVariables(urlPath, _root);
    } else {
    connection = "client does not support loading dynamic data";
    // where "connection" is the variable name of the text field
    If the connection is present, then I think I know what is
    wrong. Let me know.

  • AAF linking to external media

    hi
    we are an audio post production house.
    we're working on a drama series where we need to retain sound file metadata in the AAF/OMF when it is exported from FCP, so we can auto-link to the sound recordists rushes in Pro Tools.
    the only way metadata can be retained using Avid is to export an AAF linking to external media.
    it appears this option is not possible using FCP (nor using the automatic duck plug-in).
    does anyone know of a workaround where an OMF, or even better an AAF can be created linking to a pool/folder of source audio files, rather than embedding the audio within the file?
    thanks
    steve miller - dubbing mixer
    soundworks, uk
      Mac OS X (10.4.6)  

    Not yet.
    You can use Gallery's XML Pro software, though, it might do what you want (though it makes a Pro Tools session, not an AAF or OMF)...
    http://www.gallery.co.uk/XMLPro/xmlpro.html

  • Help Required on Reading an External XML file in flex

    Hi Experts
    I want some help regarding flex.
    I want to read an external xml file in flex and want to show
    different datas in different components
    So bacically i need what is the procedure to call an external
    xml file and the procedure to catch the value of the xml tags and
    the option (options means ex: "id" or "type inside" "row" tag ) in
    side the xml file.
    Here is My xml file named "skn_organ.xml"
    <?xml version="1.0" encoding="UTF-8"?>
    <slide>
    <r>7</r>
    <c>8</c>
    <row id="A01" type="g">
    <organ>Skn</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A02" type="g">
    <organ>Brt</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A03" type="g">
    <organ>Spl</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A04" type="g">
    <organ>Lnode</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A05" type="g">
    <organ>Ske</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A06" type="g">
    <organ>Lun</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A07" type="g">
    <organ>Sgl</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="A08" type="g">
    <organ>Liv</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B01" type="g">
    <organ>Gal</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B02" type="g">
    <organ>Pan</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B03" type="g">
    <organ>Ton</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B04" type="g">
    <organ>Eso</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B05" type="g">
    <organ>Sto</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B06" type="g">
    <organ>Sto</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B07" type="g">
    <organ>Sbl</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="B08" type="g">
    <organ>Col</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C01" type="g">
    <organ>Skn</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C02" type="g">
    <organ>Brt</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C03" type="g">
    <organ>Spl</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C04" type="g">
    <organ>Lnode</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C05" type="g">
    <organ>Ske</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C06" type="g">
    <organ>Lun</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C07" type="g">
    <organ>Sgl</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="C08" type="g">
    <organ>Liv</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="D01" type="g">
    <organ>Gal</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="D02" type="g">
    <organ>Pan</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    <row id="D03" type="g">
    <organ>Ton</organ>
    <link>
    http://www.designgarbage.com</link>
    </row>
    </slide>

    Hi sanjivsutar,
    Put your xml file under folder "assets", the application demo
    is as following
    ====================================================================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    initialize="init()">
    <mx:Script>
    <![CDATA[
    private var mainXML:XML;
    private var loader:URLLoader;
    private function init():void {
    loader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onComplete);
    loader.load(new URLRequest('assets/skn_organ.xml'));
    private function onComplete(evt:Event):void {
    mainXML = new XML(loader.data)
    out.text += "xml loaded, using E4X syntax: \n\n";
    out.text += "Row 1: "+mainXML.row[0]+"\n"
    out.text += "Row 6: organ = "+mainXML.row[5].organ+"\n"
    out.text += "Row(id='D02'): link =
    "+mainXML.row.(@id=="D02").link+"\n"
    ]]>
    </mx:Script>
    <mx:TextArea id="out" width="400" height="300"/>
    </mx:Application>
    ======================================================================
    Jeffrey

  • Best way to fill CLOB with external XML from URL

    There seem to be a number of great tools available for pl/sql developers in the 8i DB environment and I am tryng to get a handle on them. So far I have worked with XSQL servlet (not PL/SQL), XML Parser and XSU.
    The problem I have is to fill a clob from an external xml file via a url and then make that clob available for DBMS_XMLSave to insert into DB. What is the best way to do this? I am thinking maybe I have to use utl_http or utl_tcp to fill the CLOB since I can't seem to find a method in the pl/sql XDK?
    XSU - can easily generate CLOB from a query but in this case it is not a query, it is XML from url
    XMlparser - can read in from a url using parse() but the document returned is a DOMDocument rather than CLOB.
    -quinn

    There seem to be a number of great tools available for pl/sql developers in the 8i DB environment and I am tryng to get a handle on them. So far I have worked with XSQL servlet (not PL/SQL), XML Parser and XSU.
    The problem I have is to fill a clob from an external xml file via a url and then make that clob available for DBMS_XMLSave to insert into DB. What is the best way to do this? I am thinking maybe I have to use utl_http or utl_tcp to fill the CLOB since I can't seem to find a method in the pl/sql XDK?
    XSU - can easily generate CLOB from a query but in this case it is not a query, it is XML from url
    XMlparser - can read in from a url using parse() but the document returned is a DOMDocument rather than CLOB.
    -quinn

  • E-Recruiting - External Candidate generating users in R/3

    We are generating some tests on External Candidate (E-Recruiting) and we
    have discovered that the external candidate generates an R/3 user (that can
    be seen in the transaction SU01). This External Candidate should refer to
    the RCF_CAND_EXT user in R/3.
    This is generating massive users creation in R/3. This situation is not
    allowed by Data Security.

    Hello Pablo,
    every action in sap needs a user who processes it. E-recruiting and its functions can't be an exception here. The unregistered ICF services like registration and unregistered job search which can be accessed by the external candidate without logging into the system are using a service user assigned to the ICF service or its external alias. All other functions need the user of the candidate which is created on registration.
    Usually the candidate creation should be done by the service user. The external candidate only changes the user e.g. when changing his last name or his password. In the manual data entry scenario users are created by the recruiter who enters the application.
    The login to the system is necessary to enable the candidate to relog to the system, maintain his profile data, continue an interupted application, use services like the job agent and check the status of applications. Without user and login there would be no possibility to link the person and the data in the system. No user and login for the external candidte would mean that all these functions would not be possible. You would need to convert the whole application to some sort of fire and forget web application form. I have no idea if this is technical possible or if the system would complain about the inconsistant data.
    So creating users for external candidates is a must for sap e-recruiting when running w/o a total conversion. The reference user RCF_CAND_EXT is just a way to assign authorizations to the candidates user and needed due to some authorization cache issues. I have never seen this to be an issue if you use propper authorization roles instead of the sap standard ones. Even in projects with a maximum of security requirements e.g. in the defense industry. Furthermore you should schedule report RCF_UPDATE_EXT_CANDIDATES to switch the user type for external candidate to prevent a logon to the backend.
    Best regards
    Roman

  • Using external XML to load an swf

    Here's the deal - I have a main SWF with lots of loaders. Can
    a hyperlink in an external XML file load another external swf in
    the root flash doc? I have a list of links load in main SWF from an
    external XML file. From these links, I'd like to load other
    external SWFs in the main flash document. I can get the XML links
    to control my browser... can I get them to control what happens in
    my flash doc?
    Thanks!

    nothing in an xml file can load anything. but you can load a
    string that you use in your swf indicate which target file to
    load.

  • Wtk emulator external event generator problem

    Hi all,
    I am developing a peer to peer application that uses bluetooth to communicate, I tried setting the longitude and latitude in the external events generator to check if the devices would be in range, and I chose typical values 33S 18E, 32S 17E that would provide a distance > 100m meaning the devices would be out of range of one another, however they still are connecting and sending data to one another despite having set these co-ordinates.
    I used the location API to check if the external events generator was working properly, and I can check via the midlet that it has indeed picked up the co-ordinates I have, therefore I am very confused as to why, the devices are still able to connect despite being out of range.
    Could anyone please help me?
    I am rather desperate as I am on a deadline.
    Thank you in advance.

    Did you check the WTK User Guide?
    There is a chapter about using Location API describing location scripts. +"...Location scripts are XML files consisting of a list of locations, called waypoints, and associated times..."+
    Also, there is a section describing CityGuide example - it mentions location +"events files"+ used in that demo application.

  • How do you load external XML into a dataProvider?

    I have been looking through the docs and have found a couple
    of entries discussing how to load external XML. Unfortunately, that
    is where the example stops and there is no example of doing
    anything useful with that data.
    I have managed thus far to get my XML file loaded into
    actionscript/flex:
    function getExternalXML():void {
    request = new URLRequest('source.xml');
    loader = new URLLoader();
    loader.load(request);
    loader.addEventListener("complete", loadXML);
    function loadXML(e:Event):void {
    combo.dataProvider = loader.data;
    obviously, the above doesn't work at all. I don't know how to
    convert the loader.data into a format that the
    ComboBox.dataProvider understands. I can't believe I have to write
    a function to parse this XML. Surely there must be a way to simply
    convert the XML to an array or something???

    That link uses the flex beta 3 docs. You may want to use the
    current livedocs.
    Here
    is a direct link to the section I was talking about.
    Scroll down about halfway to the part that says "However,
    using a raw data object..."
    If you want the PDFs (easier to read IMO) you can get them
    here.
    Here
    is a direct link to the Developer's Guide:

  • Xml generated does not confirm to xsd. (xmlns="" added to some tags)

    Hi,
    I am getting a problem with the xml generated by bpel. The xml generated is:
    <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body><xxSunEvsOkcEntlSrvsProcessResponse xmlns="http://xmlns.sun.com/xxSunEvsOkcEntlSrvs"><X_CONTRACT_ENTL_TYPE><X_CONTRACT_ENTL_TYPE_ITEM xmlns=""><CONTRACT_HDR>NK20226742</CONTRACT_HDR><BUP_PROC_TBL><BUP_PROC>ACCR</BUP_PROC></BUP_PROC_TBL></X_CONTRACT_ENTL_TYPE_ITEM></X_CONTRACT_ENTL_TYPE><X_ENTITLEMENT_FLAG>Y</X_ENTITLEMENT_FLAG><X_ERROR xsi:nil="true"/></xxSunEvsOkcEntlSrvsProcessResponse></soapenv:Body>
    </soapenv:Envelope>
    The client is unable to parse this xml due to the xmlns="" for the tag X_CONTRACT_ENTL_TYPE_ITEM. The problem is due to the copy on the bple. i am copying the entire structure starting from X_CONTRACT_ENTL_TYPE from the plsql DBAdapter service to the bpel output. The xsd used for the client wsdl and the partner link are exactly the same.
    Any ideas as to why this could be happening.
    Thanks
    Anand

    Basically this comes down to a complex xsd. I'm assuming but I think you are using namespaces to help manage the xsd.
    If you can minimise the xsd references this may help.
    here is a basic complex type example
    <schema targetNamespace="http://example.com/Gateway"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="Message">
    <complexType>
    <sequence>
    <element name="Header">
    <complexType>
    <sequence>
    <element name="UniqueID" type="string"/>
    <element name="RoutingRule" type="string"/>
    <element name="FileName" type="string"/>
    <element name="Destination" type="string"/>
    <element name="TransportType" type="string"/>
    <element name="Attachment" type="string"/>
    <element name="MQMessageID" type="string"/>
    <element name="MQCorrelationID" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="Payload" type="base64Binary"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    hope this helps.
    James

  • Unable to generate output due to huge xml generated

    Hello All,
    I am working on etext templates for generating EFT payments.
    When the payments are below 100 then the output is fine. But when it is crossing 100 payments then it is not producing any output.
    This is a standard rtf which I have modified and added some xpath conditions in the OutboundPayment table. I think because of xpath conditions the xml structure is modified internally and the xml generated is very huge.
    When I have used the original rtf without adding any conditions the output is produced for any number of payments.
    Can any one provide some help on this.

    sorry posted in wrong forum

Maybe you are looking for

  • Problem with iTunes and PrintScreen

    I have a lil' problem. When a song is playing in iTunes, and while it is playing, I push printscreen and my computer makes a strange sound and the music stops playing. It will only start playing again when i move the printscreen img file to the trash

  • Logo not printing in classical report

    hello friends, i have displayed logo in classical report but while taking printout its not showing any image in printout. pls suggest. Regards, Sunny

  • How to make fields read only in acrobat 9?

    hi folks I have created a form in Adove livecycle 9. Some fields should be read only from the start. So i have set the property .access 'open'. In versions of Adobe 8 this works, but in version 9 it won't so i think it should be done via another solu

  • Custom Paper Size

    Is there a limit on the paper size, trying to convert a Power Point presentation  - paper size is W 48in and H 36in, but I can't get adobe to maintain that paper size, I've gone into every setting I could find and create a custom paper size, in adobe

  • How to Process Files in Cluster Environment

    Hi all, We are facing the below situation, and would like to know your opinions on how to proceed. We have a cluster environment ( server a and server b). A ESP Job is picking the files from a windows location and placing it in the unix location( ser