Definition of value 'protected' to an article via the sidecar?

Hello

I was just wondering if this is an area that you can include in the sidecar of a Folio protection status of the article. In the read - me PDF there is no mention of this area. I don't see why it would not one, however.

Thank you!

Protégé is not valid in the file sidecar.xml. It would be great if it was included, as well as metadata of folio.

Tags: Digital Publishing Suite

Similar Questions

  • The value of PDF file printed via the script name

    Hi people!

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    The Acrobat script is finished and functional. I thought: the InDesign script is over, too. But I was wrong-. -.

    I merged the databasefile with the document and it has exported to PDF. But after export, we noticed that the Acrobat script isn't finding the adressheader where ID is in. The script only noticed the text after this header. The result is, as get-Acrobat always 'null' as ID

    If print us the PDF with our PDFprinter, the header could be read by our script of Acrobat. I don't know why this is... But now, I changed the script to print the files through our PDF printer. Unfortunately I can not set a name for my exported file - do you know if it is possible to print PDF files without asking for confirmation after each other as well as with a via script name?

    Here you can see the old writing for InDesign and after her, the sript Acrobat. Maybe I made a mistake by generating my PDFexport and have no need to use the printer?

    INDESIGN SCRIPT:

    /**
    * invite filebrowser and stores the name and path of the file in variable
    */
    var sourceDocument = File.openDialog ("Bitte Indesign-Dokument Park", "*.indd", false);

    /**
    * stores the only prefix of file name to use as the new file name
    */
    newName var = sourceDocument.name.substr (0, sourceDocument.name.length - 5);

    /**
    stores in folder where the file is stored
    */
    var dbSourceFolder = sourceDocument.parent + "/"; "

    /**
    * guests for databasefile, where production is expected to begin
    */
    var dbstartfile = File.openDialog ("Start-Datenbankdatei of Bitte Park", "*.txt", false);

    /**
    * Gets databasefile basename
    */
    var dbstartfilename = dbstartfile.name.slice (0, dbstartfile.name.search(/_Teil+/));

    /**
    * Gets number of first databasefile
    */
    var i = dbstartfile.name.slice (dbstartfile.name.search(/_Teil+/) + 5) .slice (0, -4);

    /**
    * generates the path and name of the first databasefile to use
    */
    var dbSource = dbstartfile;

    /**
    * set PDF preset to generate PDFS
    */
    var PDFPreset = app.pdfExportPresets.item ("GAG - PDF");

    /**
    * stop throwing alerts
    */
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;

    message will be thrown if databasefile is not existing
    If (dbSource.exists == false) {}
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("File" + dbSourceFolder + dbprefix + "_Teil" + i + ".txt konnte nicht werden found! \n\rBitte starten Sie den procedure Rubis und Sie die right Datenbankdatei one enter.");
    }
    another process begins
    else {}
    even if (dbSource.exists == true) {}
    Opens the document indesign source without displaying
    mergeDocument = app.open (File (sourceDocument), false);
    defines what databasefile should be used for data merging
    mergeDocument.dataMergeProperties.selectDataSource (File (dbSource));
    starts the file database and the indesign document merging
    mergeDocument.dataMergeProperties.mergeRecords ();
    document generated in PDF export
    app.activeDocument.exportFile (ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
    farm open indesign document
    mergeDocument.close (SaveOptions.no);
    i ++ ;

    change the name of the database file to get the next file
    dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    }
    }
    reboot to launch alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Alert ("PDF-Generierung sky!");

    SCRIPT ACROBAT:


    /**
    * Path where files should be saved
    * Special characters like spaces must be preceded of--------.
    * If you want to change the folder, use the following form:
    * ' / DriveLetter/foldername /... /LastFolderName/.
    * Be careful not to forget the / before and after the location
    */
    filepath var = "/ c/pdf_split_test / ';

    /**
    * Number of display pages - do not hesitate to change
    */

    pageType = app.prompt var ("Please die Seitenzahl der presentations one gewunschte.", "");
    Alert (PAGETYPE);

    /**
    to search for regular expression
    */

    var idNumber = / 08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;

    /**
    * If possible this function gets the number sought as string
    *
    @param string of revenge that is to be found in the document
    * @return null if rematch is not found or a string if the rematch is
    */

    function ExtractFromDocument (reMatch) {}
    try {}
    var Out = new Object();
    for (var i = 0; i < 1; i ++)
    {
    numWords = this.getPageNumWords (i);
    var PageText = ' ';
    for (var j = 0; j < 30; j ++) {}
    var Word = this.getPageNthWord (i, j, false);
    PageText += Word;
    }
    var strMatches = PageText.match (reMatch);
    If (strMatches == null) continue;
    }
    Return strMatches;
    } catch (e)
    {
    App.Alert ("processing error:" + e)
    }
    }

    /**
    * tries to load given filename (excerpt number)
    *
    @param string file name of the file that should be checked
    @param n number of iterate when checking files
    * @return true if the file exists or false otherwise
    */

    function checkIfFileExists (filename, n) {}
    var existingDoc = false;
    try {}
    If (n == 0) {}
    var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
    } else {}
    var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
    }
    checkDoc.closeDoc ();
    existingDoc = true;
    } catch (e) {}
    }
    If (existingDoc == true) {}
    n = n + 1;
    n = checkIfFileExists (filename, n);
    }
    return n;
    }

    var pageAmount = this.numPages;
    for (i = 0; I < pageAmount; i + pageType) {}
    var filename = ExtractFromDocument (idNumber);
    fileExistence = checkIfFileExists (filename, 0);
    If (fileExistence! = 0) {}

    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + "-000_" + fileExistence + ".pdf"});
    } else {}
    this.extractPages ({nEnd:(pageType-1), cPath: filepath + filename + ""-000.pdf ""});
    }
    this.deletePages ({nStart:0, nEnd: pageType-1});
    }

    Hello

    I have a little problem with the generation of a PDF file. First my Workflow:

    I have an InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After it is merged, we need to generate a PDF file. This PDF file is opened in acrobat. In the document, I am looking for one ID for each record so I can split the document to 100 files (each with 6 pages) and name by the ID that I found.

    Why you are not exporting 6 pages PDF directly from InDesign?

    Robin

    www.adobescripts.co.UK

  • Hidden point - 'Value protected': when its value is editable?

    Question: When a 'Protected value' hidden element is editable?

    I see http://docs.oracle.com/cd/E17556_01/doc/user.40/e15517/item_types.htm:

    Hidden element
    Attributes of parameters:
    •Valeur is protected - select Yes to prevent the values hidden of manipulated when a page is posted.

    Question: How protected value Hidden Items work - that is to say, what is their semantics?

    Now, I am asking an intelligent question. I understand that "prevents the values hidden of manipulated when a page is published" means that the value cannot be changed. And I guess that 'Posted' means presented in Session State. (Failure of my search for a definition for 'post').

    So all this raises the question (s):
    Just when - made the page / page treatment - value a ' protected ' Hidden of the element can be changed?
    Exactly what event signals the beginning of the period where he can not be changed?
    This feature to protect the State from Session only or protecting the HTML value as well?
    Or are these not even the right questions?

    ???
    Howard

    Howard (in training) wrote:
    Paul,

    Great! Great! Very clear and very comprehensive.

    Re: In session state to the course to see the page or page accepts the treatment, but not by the user or the JavaScript changing the value in the browser page. (A dynamic Action or the application process can change the value using the code running on the server, but it would be crushed by the value of the page protected when the page is sent).

    Therefore assignments in dynamic Actions are counted as prevented changes/browser of the user. So, if I put in hidden point ': P3_HIDDEN: = 3; "in a browser of the user/a triggered a dynamic Action, that the value is submitted. I have it.

    No, you do not have it. Dynamic PL/SQL execute as action

    :P3_HIDDEN := 3;
    

    changes in the value of the session state is allowed (but this value will be replaced with the original if the page is sent). The dynamic equivalent operation to execute JS

    $s(':P3_HIDDEN', 3)
    

    is not allowed because it changes the value of the page , and an error occurs if the page is sent.

    Question: but what about 'treatment of the Page? More precisely, the different point and Validations Page postings? If they change a value of the element hidden Proteceted, is sent amended or rejected?

    Does not apply. The page has already been submitted. (The browser submits / messages page;) APEX it accepts). Looking for a track of debugging for a page accept action: the item values are copied in session state before the calculations, validations and the processes are executed.

  • I just got an email saying that I bought 3 movie rentals with a value of £116,15 via the iTunes store. I've done this! Someone else?

    I just got an email saying that I bought 3 movie rentals with a value of £116,15 via the iTunes store. I've done this! Someone else?

    This is a phishing attempt. Do not respond. Shall not disclose any personal or financial information. You can use the address below to the suspicious message as an attachment to the Apple. [email protected]

    The link below has information to identify fraudulent emails.

    http://support.Apple.com/kb/HT4933

  • I tried to tap three fingers on the trackpad to find the definition of a word in an article.  It did not work.  How can I put a definition of the word in an article published in El Capitan?

    I tried to tap three fingers on the trackpad to find the definition of a word in an article.  It did not work.  How can I put a definition of the word in an article published in El Capitan?  I googled this question and he said to three fingers on the trackpad, of the band which is what I tried without success.

    carolfromknoxville wrote:

    I tried to tap three fingers on the trackpad to find the definition of a word in an article.  It did not work.  How can I put a definition of the word in an article published in El Capitan?  I googled this question and he said to three fingers on the trackpad, of the band which is what I tried without success.

    Highlight the word, right-click on it and select "search... "with the white line that represents all that is the word.  It will pull up from the definition in the dictionary.

  • How to uninstall McAffe Total Protection 2013 (if it can be done via the control panel)?

    Hello

    I hope someone can help me to uninstall McAffe Total Protection 2013 (central security part)? I tried to do it via the control panel (uninstall program) but I receive the following message: "Please wait until the current program is finished uninstalling or that" and it can not be uninstalled (I already rebooted my computer three times). I also tried to delete in the program (in the C drive) files, but I get the message: "you need give the administrator permission to delete this program" even if it's my laptop and I'm the only user on this computer (what is the administrator then...?)

    I've already lost two hours trying to get rid of it and I'm now extremely frustrated...

    I really hope someone can help me. (I have Windows 7)

    Thank you very much
    Anna

    Hello

    Thank you for contacting Microsoft Community.

    You try this first method:

    (1) open the Windows Task Manager (right click on the taskbar-> click Start the Task Manager).

    2) click on show processes from all users. Then go to the process tab-> search "msiexec.exe".

    (3) if it is recognized, click on finish the process-> and yet, click on end process.

    (4) now, start the uninstall program.

    If the above method fails, try this:

    Right-click, and then click Save as:

    http://download.McAfee.com/Products/Licensed/cust_support_patches/MCPR.exe

    Then, run the file. It will clean all facilities of McAfee in a PC.

  • How to dynamically change values lov to an article based on the button

    Hello

    How to dynamically change the value list of an article based on the button create and apply the changes

    I have the column type of transaction that lov with values as inward, BACK inward outward, outward in the form based on the table...

    in design mode

    I need list to the OUTSIDE inward, in the type of transaction oly column...

    in update mode

    I need the list of BACK inward, BACK outwards in the type of transaction oly column...

    Kind regards

    Pavan

    Maybe something like that for a dynamic LOV

    select label d, label r from
      select 'inward' label  , 'create' chk from dual union all
      select 'outward'       , 'create'     from dual union all
      select 'inward return' , 'update'     from dual union all
      select 'outward return', 'update'     from dual
    )
    where (:P1_ID is null     and chk = 'create')
    or    (:P1_ID is not null and chk = 'update')
    
  • The session variable, NQ_SESSION. has no definition of value. (HY000)

    Hi all

    I use OBIEE 11.1.1.6.8 version and have deployed version 6.0 of BASEL RPD. When I go to the dashboard I get the below error

    Error
    View display error

    ODBC driver returned an error (SQLExecDirectW).

    http://192.168.1.18:9704/analytics/res/sk_blafp/common/errorminus.gifError details

    Error codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P

    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 43113] The message returned by OBIS. [nQSError: 23006] The session variable, NQ_SESSION. RPB_Tier1Capital, has no value definition. (HY000)

    SQL published: {call NQSGetQueryColumnInfo ("SELECT saw_0 FROM ((SELECT sum ("head of Accounting Standard in fact"." Standard Accounting head amount "(/1000000) saw_0,"Head of Accounting Standard"". "" Saw_1 head Accounting Standard identifier', '-D2061Legal entity Info "." Customer First Name' saw_2, VALUEOF (NQ_SESSION. RPB_Tier1Capital) saw_3, saw_4 3, '-Dimension Run D1008 '. " Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (Run surrogate key' AS VARCHAR (10)) saw_5 'Basel' WHERE ('head of Accounting Standard". ("' Chief Accountant standard identifier" = "CAP058") AND ("-D001 Date Dimension". "") (Date of extraction "=" 2013-10-04 ") AND (" '-D2036 Type of Cosolidation legal entity "". "") Basel consolidate Option Type Description"(" GROUP")) AND ("-Info entity D2061Legal "." ") (Client name' IN ("*) nqgtn(*'')) AND (" "-Dimension run D1008" "." ") Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (((Run surrogate key' AS VARCHAR (10)) IN ('Basel II Capital calculation-97000106'))) UNION (SELECT sum ("head of Accounting Standard in fact". "Standard Accounting head amount"(/1000000) saw_0, "Head of Accounting Standard" "." " Saw_1 head Accounting Standard identifier', '-D2061Legal entity Info "." Customer First Name' saw_2, VALUEOF (NQ_SESSION. RPI_TotalEligibleCapital) saw_3, saw_4 4, '-Dimension Run D1008 '. " Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (Run surrogate key' AS VARCHAR (10)) saw_5 'Basel' WHERE ('head of Accounting Standard". ("' Chief Accountant standard identifier" = "CAP210") AND ("-D001 Date Dimension". "") (Date of extraction "=" 2013-10-04 ") AND (" '-D2036 Type of Cosolidation legal entity "". "") Basel consolidate Option Type Description"(" GROUP")) AND ("-Info entity D2061Legal "." ") (Client name' IN ("*) nqgtn(*'')) AND (" "-Dimension run D1008" "." ") Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (((Run surrogate key' AS VARCHAR (10)) IN ('Basel II Capital calculation-97000106'))) UNION (SELECT sum ("head of Accounting Standard in fact". "Standard Accounting head amount"(*100) saw_0, "Head of Accounting Standard" "." " Saw_1 head Accounting Standard identifier', '-D2061Legal entity Info "." Customer First Name' saw_2, VALUEOF (NQ_SESSION. RPB_Tier1CapitalRatio) saw_3, 6 saw_4, '-Dimension Run D1008 '. " Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (Run surrogate key' AS VARCHAR (10)) saw_5 'Basel' WHERE ('head of Accounting Standard". ("' Chief Accountant standard identifier" = "CAP214") AND ("-D001 Date Dimension". "") (Date of extraction "=" 2013-10-04 ") AND (" '-D2036 Type of Cosolidation legal entity "". "") Basel consolidate Option Type Description"(" GROUP")) AND ("-Info entity D2061Legal "." ") (Client name' IN ("*) nqgtn(*'')) AND (" "-Dimension run D1008" "." ") Run the Description ' | » -'' || CAST ('-D1008 run Dimension '. ' ") (((Run surrogate key' AS VARCHAR (10)) IN ('Basel II Capital calculation-97000106'))) UNION (SELECT sum (case where "Accounting Standard head".)) «Standard accountant Chief identifier "=" CAP090 "then"fact head of Accounting Standard".» "" Flat rate of chief accountant "when

    Can someone help me please. I'm new and I have no experience with the available filters.

    The session variable, NQ_SESSION. has no definition of value. (HY000)


    This means that your init block does not work. Check the init block why its not leading is not to any data.

    only when the init block fails in the data, the server checks for the default value of the variable.

    Since there is no default value, you get this error.


    Init blocks can fail because

    1 connection pool does not work.

    2. the table or view does not exist

    3. no data in the table

    4. the filter in the sql in init block is not initialized if his coming of another variable of session.


    in general, no data should bring no results in a report.

    Since you have a session variable as part of the report, and this variable initialization failed, you get this error.

  • Passing a value of item to another page via the button set to redirect to the page

    Hello

    I'm new to APEX and I develop an application to manage Oracle database user accounts.  I have a (8) page that has text elements for the user name and the database name.  I have a submit button (this works very well) who deliver... the ALTER USER statement to reset his password and unlock the account.  I have another button that if:

    1. get the value of username - P8_USERNAME
    2. assign to an element of application - FIND_USER_IN_DB
    3. redirect the page application - page 11

    The issue is that FIND_USER_IN_DB does not get filled and page 11 which is a simple report with the following query:

    SELECT *.

    OF valid_db

    WHERE username =: FIND_USER_IN_DB;

    How to achieve this?

    Thanks for your help.

    Steve

    A page redirect is actually nothing more than the rendering of an anchor tag or call apex.navigation.redirect. The link provided by these is generated when the page is rendered. Thus, when the page is rendered (in charge) and P8_USERNAME session state is NULL, then the link will be an empty value. There is nothing sad about the fact that when you change the value of the element on a page that session state will not change automatically and it's just about understanding session state.

    Let's say that you will present the session before the redirection if status point. Would it change anything? N ° the link, as I pointed out, has already been made, and no substitution of session state not be made on a redirect.

    You'd better be off by submitting the page via the button instead of a redirect. This will set the session state of your object to the desired value. You can then use a branch to redirect to the correct page setting the value of an element whose state of session of P8_USERNAME. You can even choose to use a process or a calculation to set the value of the application instead of by a link element, so that you can keep the application not manipulable by the user element.

  • How to add widgets which will allow visitors to share articles via e-mail and social media?

    I built a site that has a page with a widget Accordion for feature articles.  I would like to add widgets that allow visitors to share articles via e-mail and social media.  How can I do?  And the items must be in PDF format?

    Here is the page.

    http://mckenzielaird.com/nonprofit-law.htmlhttp ://

    Quite a few sharing widgets in the Panel Social would be in the library of Widgets, including FB Like / share, Pinterest, LinkedIn, Google + etc., that may be useful to you.

    Thank you

    Vinayak

  • The definition of VM annotation/notes via the SDK.

    I am interested in affecting the property of annotation/notes of a VM programmatically via the Web Java/vSphere SDK service.  It seems that annotation field is available in the following types:

    • VirtualMachineConfigSummary

    • VirtualMachineConfigInfo

    • VirtualMachineConfigSpec

    So I guess I have a two part question.  One, which one of the above types should I work on in order to define the 'Notes' field and secondly, what is the the more direct way to achieve via Java and the SDK?

    Hello

    To change/set the VM annotation property, you can use VirtualMachineConfigSpec. Now, the most direct way to accomplish the same invoke ReconfigVM_task API (if VM) or the CreateVM_Task API (if creating a new machine virtual) passes the VirtualMachineConfigSpec and in VirtualMachineConfigSpec, set the annotation property. In this way, you can set the notes via vSphere SDK. The basic steps to perform:

    VirtualMachineConfigSpec vmConfigSpec = new VirtualMachineConfigSpec();

    vmConfigSpec.setAnnotation = "" / / value of desired

    reconfigVM_Task (vmMOR, vmConfigSpec); call the API

    Hope it will be useful.

  • What should I do to protect my computer because I left the Microtech scam people look at my computer via the ammyn Viewer?

    A woman with an Indian accent called saying she was with Microsoft and I had not answered their many urgent emails on my virus in my computer and she called for help.  I can't believe I fell for this point but finally woke up and realized it sounded funny and hung to the top.  But I did not have to look at my computer via the website ammyn.  I do not buy anything.  I just ran the full check of Windows Security Essentials.  What should I do?

    It's a tough call.  For the most part, these scammers are simply interested to bill you for your non-existent problems and then sell you a costly "contract of service" rather than actually steal information on your part.

    On the other hand, let you someone have total control over your computer and even if you could probably see everything that was done, he could well be activity past in the background a copy of your files.  Usually, however, all they do is look at the event viewer where they can surprise highlighting the 'mistakes' and 'warnings' (which virtually every Windows computer displayed in the event viewer) and thus convince you to buy their services to 'fix '.

    At a minimum, I suggest to change all your name of user and password login information for whatever sites you visit, especially for banking sites or credit card.  If you are really interested and you keep financial information on your computer, you might want to act like your portfolio, including your credit card has been lost or stolen: contact your financial institutions and change your account information.

    IMO, it is unlikely that no matter what malware 'backdoor' or another was left in this event, but if you are concerned that, really, the only way is to be sure to do a complete "clean" installation of Windows.  For most people who have computers that were purchased with Windows pre-installed, this means (a) back up your personal files, (2) to restore the computer to its "fresh from the factory" State by using some mechanism to do so provided by the manufacturer; (3) painstakingly updated day Windows to the current service pack and post-service pack updates; (4) reinstall any programs that were installed after that you bought the computer (using the original installation media) and then update these programs according to needs; and (5) restore your personal files.

  • Obligation to fill the values in table advanced according to the selection of a value in another article of lov (not in the advanced table)

    Hi all

    We work in a custom oaf page subdivision. We have an obligation to fill the values in table advanced based on a value selection in an element of the lov (this LOV is not in the advanced table) .can share you it please me steps or examples of code to achieve this. Waiting for response.

    Kind regards

    I do not understand completely still. What do you mean by "default in the table values must be inserted".

    You can create a dummy VO with the same columns and fix the VO in the advanced table.

    In the normal scenario, when the user clicks on submit button, browse this VO, and copy the values to the validation according to VO and appeal EO. If values gets inserted into the database.

    When the user selects the number of PO, simply run the other VO and fill this dummy VO so that values are available in the advanced table. When you click on send, do not copy these values to the EO based VO, so these lines won't get inserted.

    It work?

    See you soon

    AJ

  • Send messages via the java code, but using definitions of Mail

    Hello

    I want to send mails using java code, but reading the data (body, subject, sender, etc.) of the IOM Mail definitions.

    can someone send me a link or a thread where this method is used?
    or a reference to some Thor API manual.

    Thank you.

    You can use tcEmailOperationsintf API to call IOM Email definitions from java code.

    Here is the snippet of code on the use of this API.

    {} public void getEmailTemp (String email_def_name)
    tcEmailOperationsIntf emailIntf = null;
    resSet tcResultSet = null;
    Map emailMap = new HashMap();
    emailMap.put ("Email Definition.Name", email_def_name);
    try {}
    emailIntf = getUtilityFactory() (Thor.API.Operations.tcEmailOperationsIntf)
    .getUtility ("Thor.API.Operations.tcEmailOperationsIntf");
    resSet = emailIntf.findEmailDefinition (emailMap);
    for (int i = 0; i)< resset.getrowcount();="" i++)="">
    resSet.goToRow (i);
    Void String = resSet.getStringValue ("Email Definition.Subject");
    System.out.println ("subject of the email is:" + sub);
    String body = resSet.getStringValue ("Email Definition.Body");
    System.out.println ("body of the email is:" + body);
                                  
    }
    } catch (tcAPIException e) {}
    System.out.println ("Exception occurred in the getEmailTemp method:" + e);
    } catch (tcColumnNotFoundException e) {}
    System.out.println)
    «cloumn illegal name allowing access to the getEmailTemp method: "+ e);»
    }
    System.out.println ("getEmailTemp smoothly method");
    }

    You can use this code for your reference.

  • connect a laptop computer people visit to my desktop via the USB cord

    If I connect my laptop to friends to my computer via the USB cord so that she can get on the internet, if there is nothing wrong on my computer like a virus or something bad, he can go on to the laptop? And if I have a wireless router & it connects to the internet in this way, can get the same bad things in his laptop? I know that sounds pretty lame, but I don't have a laptop.

    First of all, it is doubtful that you could find a USB bridge cable to connect two computers, and even if you did, it would be difficult to configure things to enable the second computer to access the Internet.  (But see http://www.hardwaresecrets.com/article/Connecting-Two-PCs-Using-a-USB-USB-Cable/248)

    The good way to share your Internet connection is using a router (wired or wireless, any - except convenience).  But it is certainly possible for the virus to spread on a network, it is unlikely as long as each computer has an antivirus application to update and Windows Firewall (or a good third party firewall) is enabled.

    If you don't want to buy a router (and note that a router is very good for you security protection even if you only have one computer), you can connect the two computers with a cable 'cross-over' (a special type of cable Ethernet) and of XP Internet connection sharing.

    If you wish, you can disable 'file and printer sharing' on computers or both to further isolate them from each other.  Details vary for different versions of Windows.  Here's how in XP: http://compnetworking.about.com/od/windowsfilesharing/ht/enable_disable.htm

Maybe you are looking for