Entity Extraction by path instead of body

Hi,
i did a test of entity extraction (something like the sample
http://orgviz.ulitzer.com/node/2505884 ) and it works fine :)
In case i need to extract values not from the body of the files, but from the Path - which managed property to map? will it work?
keren tsur

Hi,
Including it in the full text text index (setting them searchable) only matters when doing free text search, not entity extraction. And I would try to use a wordpart extractor if you haven't.
If it doesn't work, you might have to resort to a content enrichment web service instead.
Thanks,
Mikael
Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
http://techmikael.blogspot.com/
Author of Working with FAST Search Server 2010 for SharePoint

Similar Messages

  • Using Relative Path instead of Full Path OMBPlus

    Can we use relative paths in OMBPlus scripts instead of full paths. For example all my OMBplus (tcl) scripts are in folder;
    C:\tfsroot2\Interfaces and Extracts\branches\Interfaces and Extracts1.1\000 - OWB Prototype\deploy\ora.stg
    and the MDX file I would like to deploy is in
    C:\tfsroot2\Interfaces and Extracts\branches\Interfaces and Extracts1.1\000 - OWB Prototype\deploy\ora.stg\scripts\dwextract\tables
    but when I try to use
    OMBIMPORT MDL_FILE '../scripts/dwextract/tables/$tblName.mdx'
    instead of
    OMBIMPORT MDL_FILE 'C:/tfsroot2/Interfaces and Extracts/branches/Interfaces and Extracts1.1/000 - OWB Prototype/deploy/ora.stg/scripts/dwextract/tables/$tblName.mdx'
    It does not work.
    I use
    call "C:\OraHome_1\owb\bin\win32\OMBPlus.bat" "C:\tfsroot2\Interfaces and Extracts\branches\Interfaces and Extracts1.1\000 - OWB Prototype\deploy\ora.stg\OMB_DEPLOY_TBL.tcl" XTRCT_WRK_INPUT_FILE
    in order to execute.
    I think it is because It set the OMBPlus.bat location is a base folder. Any way to overcome this issue and use relative paths instead of the full path?

    OK, a couple of things. First, you need to remember that TCL treats back-slashes as an escape character. Always use forward slashes in your paths, or double up the back slashes .
    So, this should work:
    CD "C:\tfsroot2\Interfaces and Extracts\branches\Interfaces and Extracts1.1\000 - OWB Prototype\deploy\ora.stg"
    call OMBPlus.bat "C:\\tfsroot2\\Interfaces and Extracts\\branches\\Interfaces and Extracts1.1\\000 - OWB Prototype\\deploy\\ora.stg\\OMB_DEPLOY_TBL.tcl" XTRCT_WRK_INPUT_FILEor this:
    CD "C\tfsroot2\Interfaces and Extracts\branches\Interfaces and Extracts1.1\000 - OWB Prototype\deploy\ora.stg"
    call OMBPlus.bat "C:/tfsroot2/Interfaces and Extracts/branches/Interfaces and Extracts1.1/000 - OWB Prototype/deploy/ora.stg/OMB_DEPLOY_TBL.tcl" XTRCT_WRK_INPUT_FILEAs an FYI for OMB, if you are prone to doing a lot of scripts and so building libraries of common functions, you can also easilly use the "file" command in order to determine the current directory at runtime so you can plunk your script anywhere with it's required libraries and it will be able to source them at runtime.
    For example, all our scripts have this basic bit of code at the beginning so we can pass them between developers and it doesn't matter where anyone put their script directory - the scripts will find the libraries as long as they are co-located:
    #  Get Current Directory and time
    set dtstmp     [ clock format [clock seconds] -format {%Y%m%d_%H%M}]
    set scrpt      [ file split [file root [info script]]]
    set scriptDir  [ file dirname [info script]]
    set scriptName [ lindex $scrpt [expr [llength $scrpt]-1]]
    set cnfg_lib "$scriptDir/ombplus_config.tcl"
    set owb_lib  "$scriptDir/omb_library.tcl"
    set sql_lib  "$scriptDir/omb_sql_library.tcl"
    #  Import Lbraries
    #      Assumes that owb_config, omb_library, and omb_sql_library are in the same directory as this
    #      script.
    #get config file
    if [catch { set retstr [ source $cnfg_lib ] } errmsg] {
       puts "**********************************************************************"
       puts "* Libraries are missing from the current directory. Exiting.... *"
       puts "**********************************************************************"
       return -code 2
    #get standard library
    source $owb_lib
    source $sql_lib
    #  Set Logfile
    #    This will overwrite anything set in the config file.
    set LOG_PATH "$scriptDir/logs"
    file mkdir $LOG_PATH
    set    SPOOLFILE  ""
    append SPOOLFILE $LOG_PATH "/log_"  $scriptName "_" $tabName "_" $dtstmp ".txt"
    # Now the main script body goes from here.Cheers,
    Mike
    Edited by: zeppo on Aug 4, 2009 7:02 AM
    Edited by: zeppo on Aug 4, 2009 7:03 AM

  • How to get the full path instead of just the file name, in �FileChooser� ?

    In the FileChooserDemo example :
    In the statement : log.append("Saving: " + file.getName() + "." + newline);
    �file.getName()� returns the �file name�.
    My question is : How to get the full path instead of just the file name,
    e.g. C:/xdirectory/ydirectory/abc.gif instead of just abc.gif
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JFrame {
    static private final String newline = "\n";
    public FileChooserDemo() {
    super("FileChooserDemo");
    //Create the log first, because the action listeners
    //need to refer to it.
    final JTextArea log = new JTextArea(5,20);
    log.setMargin(new Insets(5,5,5,5));
    log.setEditable(false);
    JScrollPane logScrollPane = new JScrollPane(log);
    //Create a file chooser
    final JFileChooser fc = new JFileChooser();
    //Create the open button
    ImageIcon openIcon = new ImageIcon("images/open.gif");
    JButton openButton = new JButton("Open a File...", openIcon);
    openButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would open the file.
    log.append("Opening: " + file.getName() + "." + newline);
    } else {
    log.append("Open command cancelled by user." + newline);
    //Create the save button
    ImageIcon saveIcon = new ImageIcon("images/save.gif");
    JButton saveButton = new JButton("Save a File...", saveIcon);
    saveButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showSaveDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would save the file.
    log.append("Saving: " + file.getName() + "." + newline);
    } else {
    log.append("Save command cancelled by user." + newline);
    //For layout purposes, put the buttons in a separate panel
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(openButton);
    buttonPanel.add(saveButton);
    //Explicitly set the focus sequence.
    openButton.setNextFocusableComponent(saveButton);
    saveButton.setNextFocusableComponent(openButton);
    //Add the buttons and the log to the frame
    Container contentPane = getContentPane();
    contentPane.add(buttonPanel, BorderLayout.NORTH);
    contentPane.add(logScrollPane, BorderLayout.CENTER);
    public static void main(String[] args) {
    JFrame frame = new FileChooserDemo();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    simply use file.getPath()
    That should do it!Thank you !
    It takes care of the problem !!

  • [svn:bz-trunk] 17772: Update the url in the tests to use a relative path instead of the default localhost : 8400 so that the tests can pass on appservers other than the default Tomcat .

    Revision: 17772
    Revision: 17772
    Author:   [email protected]
    Date:     2010-09-20 15:02:50 -0700 (Mon, 20 Sep 2010)
    Log Message:
    Update the url in the tests to use a relative path instead of the default localhost:8400 so that the tests can pass on appservers other than the default Tomcat.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationFalseTest/Remoting_NetConnectionTest.mxml
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationTrueTest/Remoting_NetConnectionTest.mxml

    Revision: 17772
    Revision: 17772
    Author:   [email protected]
    Date:     2010-09-20 15:02:50 -0700 (Mon, 20 Sep 2010)
    Log Message:
    Update the url in the tests to use a relative path instead of the default localhost:8400 so that the tests can pass on appservers other than the default Tomcat.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationFalseTest/Remoting_NetConnectionTest.mxml
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationTrueTest/Remoting_NetConnectionTest.mxml

  • Sql for extract file path without file_name form the folumn value

    Dear Experts,
    can someone give the sql script to extract file path without file_name form the folumn value.
    can someome provide sql to extract only path in the column value.
    column value :
    /data/rrsapus/oradata22/rrsa_25122011rpsp_arpch.rsp
    i need output like this */data/rrsapus/oradata22/*

    Hi,
    Welcome to the forum!
    INSTR and SUBSTR is probably the most efficient way. Use INSTR to find where the last '/' is, and SUBSTR to get that many characters, starting from the beginning of the string.
    INSTR and SUBSTR (and REGEXP_SUBSTR, and REGEXP_REPLACE, and RTRIM, and REPLACE, and all the other bullt-in functions) are documented in the SQL language manual:
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/index.htm
    REGEXP_SUBSTR or REGEXP_REPLACE would also do the job, perhaps with a little less code, but maybe not as efficiently.
    Here's a more creative way:
    SELECT     RTRIM ( str
               , REPLACE (str, '/')
               )          AS file_path
    FROM     table_x
    ;What results do you want if str does not contain a '/'?

  • WordPartCustomRefiners (Entity Extraction) - Can i display it in search result hover panel?

    Hi,
    We use Refiners that come from Entity Extraction (In the Refinement Web Part i select: WordPartCustomRefiners2, WordPartCustomRefiner4 etc.).
    In case i want to display that also in search result hover panel - is it possible?
    to set in the hoverpanel display template something like: ctx.currentitem.WordPartCustomRefiner4
    keren tsur

    Hi keren,
    Here is an article talking about how to display custom managed properties in the hover panel of search results, please check if it is what you are looking for:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/09/17/how-to-display-values-from-custom-managed-properties-in-the-hover-panel-in-sharepoint-server-2013.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Word 2013 shows full UNC path instead of local "Documents" folder on file Open and Save

    Normally Word (and Excel) by default will show the user's local "Documents" folder when opening or saving a file. That is what we want. However, after using Windows Server Folder Redirection to redirect the Documents folder to the network (Windows
    Server 2012R2), Word now shows the full UNC path to the network share.
    Instead of seeing:
    "MyPC  Documents"
    users see
    \\sever1\redirect$\username\documents
    Folder redirection is supposed to be transparent to the user. Virtually all our other applications, including Office 2003, respect this convention and continue to show "Documents". As you can see, Word even exposes a hidden share.
    Even if we go to File / Options / Save and browse to the local Documents folder as the place Word should open and save files from, Word immediately removes the path you have browsed to, and replaces it with the UNC path.
    Is there a way to suppress this behavior? Thanx!
    Dana

    Hi,
    Based on my understanding, you only want others to see some part of path name, rather than full UNC path name. It is right?
    It seems that we can’t implement your requirement. When we open a file from “My Pictures”, it shows “My picture” instead of showing the full path “C:\Users\User\Pictures”. “My Picture” is set as a library in Windows, so it hides
    full path by design. We can't set \\sever1\redirect$\username\documents as a library.
    As a workaround, you can upload these files to OneDrive and share link to others.
    If I have anything misunderstood, don't hesitate to tell me.
    Regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Drag and drop just to extract file path

    I'm writing a Cocoa GUI app to facilitate working with a command-line program. The scenario is quite similar to what I see in the Apple FileMerge.app. I'd have a NSView (or a drop pocket of whichever class appropriate) into which I can drag the file icons just in order to retrieve file's path, one by one, no visualization, no checking for file types, just for assembling a list of files to eventually be passed to the data crunching program as command line arguments. I've come across CocoaDragAndDrop sample program, which does great work in displaying dragged picture tiff and pdf files. Probably 90% of the code there is beyond what I need, but the semantics are so unlike anything I've ever come across (I'm miles away from image processing). I can't even figure where to start since everything seems so interconnected. Is there a simplest case example of Drag and drop which only serves file path extraction? From the aforementioned sample code I'm struggling to figure out what is the part which is absolutely needed only to retrieve the path? Do I have to init a [NSImage canInitWIthPasteboard: ... ...] if a file is a plain text file, or a raw data file? The app doesn't need to know what the file is, since passing the absolute path as text argument cannot do any harm in this case - the number crunching command line program takes care of the content. Do I need coders? Do I need a sourceOperationMaskForDragingContext? Does Drag and Drop even cover such trivial demands?
    Thanks in advance!
    Regards, UU

    Thanks for your kind replay. Please let's stay on-topic: my question shouldn't have pointed at if "Apple works like this or like that".
    IMHO, it's quit opposite: many things are cut-and-paste compatible, yet I'm missing few basic explanations.
    The following code can be derived from the API reference:
    #import "DragTView.h"
    #import "AppDelegate.h"
    @implementation DragTView
    - (id)initWithFrame:(NSRect)frame{
        self = [super initWithFrame:frame];
        if (self) [self registerForDraggedTypes:[NSArray arrayWithObject:NSFilenamesPboardType]];
        return self;
    - (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender{
        highlight=YES;
        [self setNeedsDisplay: YES];
        return NSDragOperationGeneric;
    - (void)draggingExited:(id <NSDraggingInfo>)sender{
        highlight=NO;
        [self setNeedsDisplay: YES];
    - (void)drawRect:(NSRect)rect
        [super drawRect:rect];
        if ( highlight ) {
            [[NSColor grayColor] set];
            [NSBezierPath setDefaultLineWidth: 5];
            [NSBezierPath strokeRect: rect];
    - (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender {
        highlight=NO;
        [self setNeedsDisplay: YES];
        return YES;
    - (BOOL)performDragOperation:(id < NSDraggingInfo >)sender {
        NSArray *draggedFilenames = [[sender draggingPasteboard] propertyListForType:NSFilenamesPboardType];
        NSURL* fileURL;
        NSTextField* pathField = [(AppDelegate*)[[NSApplication sharedApplication] delegate] pathField];
        if (([[[draggedFilenames objectAtIndex:0] pathExtension] isEqual:@"txt"]){
            fileURL=[NSURL URLFromPasteboard: [sender draggingPasteboard]];
            [pathField setStringValue:  [fileURL path] ];
            return YES;
        } else return NO;
    - (void)concludeDragOperation:(id <NSDraggingInfo>)sender{
    @end
    It reveals the file path, yet, it boils down to fifty meaningless lines of code, since the pathField object (of class NSTextField) would itself reveal a dropped file's path without a single extra line of drag-and-drop code. What I find confusing is the following:
    How should a drag operation be set up, so a text file can be dragged to the DragTView object (declared as @interface DragView: NSImageView <NSDraggingSource, NSDraggingDestination>), which would than show the image of file's icon (without dragged file itself being an image file)? This is rather unclear in the documentation, with all due respect to Apple.
    Thanks in advance.

  • Extract cdata from the soapenv:Body

    If I log $body, I am seeing the below.
    <soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><![CDATA[<?xml version="1.0" encoding="UTF-8"?><Customer><name>aaa</name>...</Customer>]]></soapenv:Body>
    How to extract <?xml version="1.0" encoding="UTF-8"?><Customer><name>aaa</name>...</Customer> from the above soapenv:Body? Xml is inside the CDATA section.
    Basically i want to extract all the xml that is in between CDATA section
    Edited by: user10367892 on Jan 12, 2010 10:34 AM

    hmm... finally solved... in assign action, assign value $body/text() to any variable and use that. No need to convert it into a XML node as it is already a XML.
    For e.g. - if the SOAP envelope being received is below -
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header>
    </soap:Header>
    <soap:Body>
    <![CDATA[<?xml version="1.0" encoding="UTF-8"?><Customer/>closeing brackets for CDATA here***
    </soap:Body>
    </soap:Envelope>
    Then assign action would return you below -<?xml version="1.0" encoding="UTF-8"?><Customer/>However I would like to know that what do you want to do further (operations), on this xml.Regards,AnujEdited by: Anuj Dwivedi, Infosys on Jan 13, 2010 6:42 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Use short name path instead of long name path

    This month we came accross a vulnerability which is cause by installing patches with their environment path unquote and embedded space. (long path name).
    The vulnerability takes advantage of the way Windows parses directory paths to execute code.  
    Consider the following command line. C:\windows\system32\notepad \temp\file.txt This tells windows to
    launch notepad.exe from the c:\windows\system32\ directory and pass it the argument \temp\file.txt. 
    Now consider this command line.
    C:\program files\Microsoft Office\Winword.exe
    If space is used as a delimiter, wouldn’t Windows think you are trying to execute the program  C:\PROGRAM.EXE and pass it the argument “files\Microsoft Office\Winword.exe”?    Or maybe you are trying to execute “C:\Program files\Microsoft.exe”
    and pass it the argument “Office\Winword.exe”?  So how does it know what you are trying to do?    If the software developer places quotation marks around the path then Windows knows the spaces are spaces and not delimiters.  
    If the software developer fails to put the path in quotes then Windows just doesn’t know.  If Windows doesn’t know then it tries to execute all the possible programs in the path.  First it tries “C:\Program.exe”,   Then, it tries “C:\Program
    files\Microsoft.exe”
    and finally the path we intended for it to execute.
    This programming error is very common because when a developer is addressing paths on the file system they are usually stored in use they are in strings the developer has used quotes once already and they often fail to consider that they need two sets of
    quotes.  For example, the following line would incorrectly assign the path variable.
    pathvariable = “C:\Program Files\Common Files\Java\Java Update\jusched.exe”
    Really, the developer needs to double quote it because they need the path to contain quotes.  So they should have assigned their variable by doing something like this:
    pathvariable = “\\”C:\Program Files\Common Files\Java\Java Update\jusched.exe\\””
    In the first case, an attacker can strategically place a program in the path and his program will be executed instead of the intended program.   If the process runs under administrative privileges or some account other than the attacker it can
    be used to cause code to execute under a different set of privileges. 
    So the question is..... since Windows 95, when creating a bin path both long and short path name are created if enable in the registry
    For example lets take this example...
    The OS will create enviroment variable for pointing to long path name  C:\Program Files\crapy.exe
    and also create a short path name for C:\Progra~1\crapy.exe
    So how can I tell WSUS to install the path and create a environment variable to point to the executable to use the short path name instead of the long path name? Is this possible?
    Or I will have to create a report of software which install the updates patches with vulnerability and request a revision of the update.
    Or should I go a head identify the services which are type auto (exclude disable, manual) and code a script program and modify the enviroment path... Consequences of this approach, will I need to re-run the script if there a new software update for the third
    party software and it does n't address the path problem. I will need to run the script again.
    Or should I create a policy and associate the script with it, until a revision comes along.
    How can I get around this vulnerability as a long term fix versus a short term fix?
    Can someone tell me the best approach (mitigate) to solve this issue?
    thanks
    michael john ocasio

    This month we came accross a vulnerability which is cause by installing patches with their environment path unquote and embedded space. (long path name).
    The vulnerability takes advantage of the way Windows parses directory paths to execute code.  
    Consider the following command line. C:\windows\system32\notepad \temp\file.txt This tells windows to
    launch notepad.exe from the c:\windows\system32\ directory and pass it the argument \temp\file.txt.
    I'm not sure I'd call this a vulnerability. It's how Windows has worked since long path names were created for Windows 95. If there's an embedded space in a pathname it has to be delimited. If you don't delimit it, unpredicatable results will occur -- but
    most often a "File not found" error (if you're trying to read a file), or a "File creation error" if you're trying to create a file.
    Now consider this command line. C:\program files\Microsoft Office\Winword.exe
    If space is used as a delimiter, wouldn’t Windows think you are trying to execute the program C:\PROGRAM.EXE and pass it the argument “files\Microsoft Office\Winword.exe”?
    Yep. Although I suspect it's been a Very Long Time since anybody tried to launch Microsoft Word from the command line.
    Or maybe you are trying to execute “C:\Program files\Microsoft.exe” and pass it the argument “Office\Winword.exe”?
    Well, if you were, then you'd have to use the syntax as you've defined it -- with delimiters. But it's not a realistic example, given that executables don't belong in the root of the %ProgramFiles% folder anyway.
    So how does it know what you are trying to do?
    It's a computer. It's STUPID. It does exactly what you tell it to do ... nothing more, nothing less. The operator is the person responsible for intelligently instructing the computer to do what is desired to be done. (e.g. if you want to start a program
    from the command line then use the right syntax!)
    Can someone tell me the best approach (mitigate) to solve this issue?
    I'll repeat my earlier thought: Use the correct syntax. :-)
    Btw.... most developers don't hard code those pathnames anyway.. they use the SYSTEM ENVIRONMENT VARIABLES, e.g. %ProgramFiles%. Problem solved.
    Other pathnames are typically stored in a registry value, and when the registry value is retrieved using API calls, the code, as a matter of habit, wraps delimiters around the string. Using delimiters when not needed is not a problem; not using them when
    they are is a problem -- so -- the easy solution is to always use delimiters when you're defining pathnames in your code and you won't have a problem.
    Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    SolarWinds Head Geek
    Microsoft MVP - Software Distribution (2005-2013)
    My MVP Profile: http://mvp.support.microsoft.com/profile/Lawrence.Garvin
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Footer of printed page shows local drive path instead of the webpage url

    When I print any webpage in IE10 in Windows 7, the footer contains a file path like file:///C:/Users/username/AppData/Local/Temp/Low/80S1TSTK.htm instead of the URL of the webpage I am printing. In the Page Setup settings of Print Preview I have chosen to
    print the URL in the footer. This started happening after I reinstalled Windows when my computer got infected.
    I have tried the following but I still have the problem.
    In my registry I went to the path HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup and made sure the footer value is &u&b&d.
    When above action did not fix it, I reset Internet Explorer (http://support.microsoft.com/kb/923737). The problem remains. It is still there after IE automatically updated to IE11.
    Any help will be appreciated.

    Hi,
    The issue may be caused by any add-ons. So I recommend you run IE with no add-ons firstly.
    Click Start -> All Programs -> Accessories -> System Tools -> Internet Explorer (with no add-ons).
    If back button works, please follow the steps to narrow down which add-on cause the issue.
    Start IE>Press Alt to show the menu bar>On the Tools menu, click manage add-ons>under show, click All add-ons>disable half add-ons one time for quick narrow down>restart IE.
    If it is not the case, try the following steps.
    1. Delete your browser history.
    Start IE>Press Alt to show the menu bar>On the Tools menu, click Internet options>Under Browsing history, click Delete>Select all the check boxes, and then click Delete>restart IE.
    2. Try resetting IE settings and check the “delete personal files” settings.
    Start IE>Press Alt to show the menu bar>On the Tools menu, click Internet options>Advance>Reset>restart IE.
    3. Maybe your computer got infected with virus.
    Go to the Microsoft Safety Scanner webpage to download the scanner and then follow the instructions on the screen.
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Content Enrichment Fields and OOTB Entity Extraction and hithighlightedsummary

    Hi guys, i have a strange problem. I add several properties at the content enrichment service. They all feature in the full text index. I can check this by searching for phrases that only occur in those properties. However, hithighlightedsummary is not generated
    for those properties and the companies OOTB extractor will not produce any results (although I have checked the companies extraction on the managed properties is turned on).
    This is in contrast to the development environment where both seem to work just fine. Is there something I have to do to turn these features on?
    Thanks, Emir

    ...great:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/19932af1-d461-4a3d-8f75-775c6adf9b69/hithighlightedsummary-empty?forum=sharepointsearch
    Looks like managed properties do not support hithighlightedsummary only the body property does ...

  • How can I change the log file path instead of storing log in server.log

    Hi,
    I have created one domain and modified the attribute "log-file" in element "virtual-server" element to point to the new log file path.
    But when I start up my domain, it still saying: "Log redirected to DOMAIN_LOCATION/logs/server.log.
    Why?
    Why it doesn't log to the file I specify? How can I change it?
    Thanks.
    Ken

    I have changed the logging option to my specific path in admin console as what you said. I have also changed the logging in domains attribute too.
    But still there is some logging info in domains/<dom_name>/logs/server.log instead of the path and file I specified.
    Is it possbily related to linux user role setting? the Sunone AS is installed and configured by root user. But the domain is created for another user, hence I want to forward all logging info to that user's home path.

  • WHY IS LINK BEING PUT IN ADDRESS BAR OF EMAIL INSTEAD OF BODY OF THE EMAIL WHERE IT SHOULD BE ???

    When sending a link to someone (I choose Yahoo to launch the application), all of the sudden the link I want to send is being automatically inserted into the address bar of the email. What's up with that? This seems to have started all the sudden on its own. I click File - Email Link - Yahoo opens. After Yahoo opens, a blank email comes up but instead of the link being in the body of the email where it should be, it's in the Send To (address bar) of the email.
    This is obviously wrong, how do I change it?

    Nocturnal Theory wrote:
    I have to back up my Address Book daily.
    You say that like it's something you shouldn't have to do - I backup mine hourly (with Time Machine), and additionally at least once a day with SuperDuper. ALWAYS have an up-to-date backup of your important data.
    As for the missing undo command, yes that is an annoyance and I too wish it were available. It's missing from iTunes too, which has long been a frustration for me.
    Having said that, ranting here in the discussion forums will not get you anywhere. Anyone at Apple who can do something to fix the issue isn't reading these forums. If you want to send your bug report in where it will actually be read by someone who can do something about it, you should file it here: http://bugreport.apple.com
    You will need to sign up for a (free) ADC membership to use the bug reporter.
    EDIT: I should mention that this isn't likely to ever get fixed in Leopard. Apple has discontinued all development for Leopard except for security updates.

  • Weird problem while Extracting File path from file Browser item

    Hi all
    I followed some tutorials on this forum to get the absolute filepath from the filebrowser item and storing it in the database.
    Heres what I did. I created a script in the header of the page which reads like this:
    <script language="JavaScript1.1" type="text/javascript">
    function SaveFullName(filepath,feed)
    function getVal(item)
    if(document.getElementById(item).value != "")
    return document.getElementById(item).value;
    else
    return "";
    document.getElementById(filepath).VALUE = getVal(feed);
    alert(document.getElementById(filepath).VALUE);
    </script>
    I have call this function by this syntax which I have put in the onchange event handler of the file browser item.
    onChange="javascript:SaveFullName('CCDPATH','CCDFILEBROWSER');"
    Here CCDPATH is the name of the hidden item which I use to store the path and CCDFILEBROWSER is the name of the filebrowser in question.
    now the last statement of the script above, alert(), gives me an alert with the proper value. The problem is when I am trying to store the value of this variable CCDPATH in my database with an onsubmit process, NULL values are getting inserted :-(
    When I checked out in the debug mode, I can see that the value of this hidden item, CCDPATH is showing as "" , i.e; null. Why is this happening is out of my understanding.
    I mean, with the javascript, it is assigning and displaying its value perfectly, but when I try to store it with PLSQL, it simply does'nt happen.
    What am I possible doing wrong? What should I do to store the value of this hidden item in the database ??

    Any thoughts people?

Maybe you are looking for