What does the "search" button actually search?

You had an OTN article a couple weeks ago about using vim in SQLPlus. I wanted to look at it again.
So I type "vim" in the search box and hit it. Two useless and apparently unrelated results are found. So I hunt for it myself and find the article: "Vimming in SQLPlus". Why didn't the "search" facility find it?
Just out of curiosity, I type "vimming" as my search key and get no results.
Are OTN articles exempt from OTN searches?

Hi Bill,
Apologies for the delay in responding to you.
I can only comment on the Search link available on the OTN documentation homepage (http://otn.oracle.com/documentation/index.html), and not the Search Icon located at the upper right of each OTN page.
The search link peruses only those items available on Tahiti - e.g. Database, Collaboration Suite and 9i Application Server. The Tahiti format is akin to a Documentation Library CD, so will return hits for only items listed on Tahiti.
If you refer to items not on the Documentaion pages, please refer to an alternative feedback forum.
Thanks and regards,
Les

Similar Messages

  • What does the copy button on the m127fn look like? Is there a diagram to refer to?

    What does the "Copy" button on the m 127fn looks like ?
    Is there a control panel diagram?
    This question was solved.
    View Solution.

    Dear Yoganova,
    Here you have the user's manual:
    http://h10032.www1.hp.com/ctg/Manual/c03628466
    In the page number 6 you can see the panel diagram.
    I hope you find it helpful.
    Greetings.
    * I am not an employee of HP, my work is voluntary.
    If this answer was helpful and clarify or resolve your problem, please mark the issue as resolved and click my star next to give a kudo as thanks.
    I am not an employee of HP, my work is voluntary. If this answer has been helpful and clarifies or solves your problem, please click the button
    and click on the icon if you want acknowledge the assistance.

  • What does the middle button do?

    Whatever does the middle button on the bottom of the screen do? I pressed it and the message 'shrinks' into the icon. I guess it is archiving or saving. How do I get that message back and read it again? I'm totally clueless, it is not explained!

    That middle button is a trash can. You should be able to retrieve the message from the trash folder. There is a setting in the Settings app where you can set it so you get a confirmation prompt before it actually gets deleted.

  • What does the refresh button in contacts on an iphone do

    In the top left corner of contacts opposite of the edit button there is a refresh button. Does anyone know what it does?

    Hi Aishi,
    Yes you are correct.Well i would change my previous statement :
    EXCEL/Word Processing is not to open a BLANK SHEET, but to open an EXCEL/WORD document and paste the ALV output data into the Sheet. You have several option when you click on EXCEL. You can paste the ouput as a  PIVOT TABLE in excel sheet or Excel SAP Macros or a normal table.
    Open program <b>BCALV_FULLSCREEN_GRID_EDIT</b> in SE38 and execute it. Click EXCEL. And follow the directions. It will copy paste the code from the ALV output into Excel/Word File.
    The difference in EXPORT is that in EXPORT, you can download it in different formats ( VIz. excel, text etc ) without any formatting ( COlors etc.). But in the EXCEL button case, the data is copied and has different colours for columns etc.
    Best regards,
    Prashant

  • What does the garmin45.vi actually do?especially all the stuff at the bottom of the diagram page.cheers

    see above
    Attachments:
    Garmin45.vi ‏621 KB
    timeset.bat ‏1 KB
    bargraph.llb ‏66 KB

    It is parsing the NMEA0183 text strings returned from the GPS receiver via the serial port and displaying the information.
    I am not sure what you are referring to at the bottom of the diagram page. The sequence structure in the lower right with the trig functions is displaying the satellite lock info on the satellite map.
    The set button sets the PC's clock to the satellite time using the System Exec to run a batch file called Timeset.bat
    The small while loop executes until it has a full NMEA 0183 sentence then the 'string subset' primitives strip out a portion of text from the sentence that identifies the type of sentence. It then matches the type of sentence to the various types possible (All the pink string stuff at the top). Depending on the type of sentence, it then passes the string to the appropriate part of the diagram where it is further parsed and converted to the relevant type of information.
    For example:
    The sentence for time, lat, long etc. from a Garmin45 must start with a $GPRMC in the string. All sentences start with '$' (and end with -). The '$' is stripped by the while loop, then a match is found between the first 5 bytes of the string and 'GPRMC'.
    The first 2 characters, 'GP', identify the talker. GP indicates global positioning system (as opposed to 39 other possible talker devices, icluding depth sounders, voyage data recorders, Loran C, etc. The NMEA standard identifies the means for different marine equipment to communicate with each other.)
    The next 3 characters, 'RMC', identifies the type of sentence. RMC is indicative of the "Recommended Minimum Specific GNSS Data". This identifies the structure of the information contained in the sentence.
    That particular structure is:
    $aaRMC,bbccdd.dd,e,ffff.ff,g,hhhhh.hh,i,j.j,k.k,llllll,m.m,n,o*pp
    where,
    aa = 2 character talker identifier
    RMC = Sentence formatter mnemonic code
    bbccdd.dd = Universal Time Code of position fix
    e = status (A=valid V=receiver warning)
    ffff.ff = lattitude
    g = lattitude North/South
    hhhhh.hh= longitude
    i = longitude North/South
    j.j = ground speed in knots
    h.h = course over ground, degrees True
    llllll = date (mmddyy)
    m.m = magnetic variation, degrees
    n = E/W
    o = mode (A,D,E,M,S,N or V)
    * = checksum delimeter
    pp= checksum
    = sentence terminator (ASCII 13 + ASCII 10 character)
    Important: I don't know if this sentence explanation actually is a byte count (as the author is parsing) or an explanation of the data format within the ","'s. Ground speed is identified as x.x knots, which would seem to indicate that 9.9 knots is the fastest if it is a byte count. On the other hand it may indicate that ground speed is a fractional representation between the nth and the nth+1 comma. As I stated in my earlier post) my receiver uses a Rockwell binary protocol (which is a lot more fun than this text - NOT!!) but my OEM software definitely reports ground speeds faster than 9.9 knots.
    Anyway you can see where the author is parsing this information for the RMC sentence type, based on byte position in the string, directly under the case statement for setting the PC's time.
    As written, er wired, it appears that the while loop continually processes the last received data for each sentence type each time it receives any new sentence and executes, regardless of whether the data for that type of sentence has changed or not. i.e. if a different type of sentence is received the old RMC sentence will again be parsed from the shift register where it is stored. Several types of sentences are identified and stored in their respective shift register but no parsing is performed and no information is gleaned from them.
    There are many types of sentences and some manufacturers have additional sentences identified as proprietary for additional info.
    Given this information you should be able to examine your received data for the basic GPS information. Note that my Delorme Earthmate receiver transmits some info (sentence types for NMEA 0183 receivers) on a regular basis while some is received only intermitently, so don't assume that what you are seeing coming in from the serial port is all that you will ever see.
    Hope this helps. Good Luck!

  • What does the "complex" button do in the side menu ? Flex time menu

    hello
    can anyone please advise me what the "COMPLEX" button does ?

    http://help.apple.com/logicpro/mac/10/#lgcpa77a4a3f
    Look under Polyphonic in the list.
    What it means: Straight Polyphonic would be for a single instrument playing chords. ie: guitar, keyboard, voices...etc.   The Complex setting would be for a mixture of instruments.

  • What does "The iPod "Buttons" could not be synced...." mean?

    Everytime i plug my iPod in to my computer this warning comes up:
    "The iPod “Buttons” could not be synced. The required file is in use."
    (Yes my iPod IS called Buttons, sad I know).
    What does this mean, does it mean that it isn't updating it?
    Does anyone know how I can get rid of this warning?
    Or make sure my iPod 'is not in use' when I try to update/sync it?
    1.9Ghz PowerPC G5   Mac OS X (10.4.9)   30GB iPod video

    Update means going from ver. 1.0 to 1.0.1, which is why my App Store app reflects that I have an update.
    Tried about 15 times after doing various things such as correcting permissions and reinstalling the 10.7.3 combo update.

  • What does the 'Complete' button do in 'Process Purchase Order' (BBP_POC)

    Hi forum people,
    Does anyone know exactly what the 'Complete' button does in the 'Process PO' transaction in SRM v5.0?
    I am in extended classic mode and clicked the button only to find the header status updated to show completed, but nothing else at first glance!
    Thanks a lot,
    Nick

    Hi,
    This is a slightly different question but it's related to the same PO 'Complete' button.
    We have a number of different scenarios where the commitments need to be released in the backend ERP system but we're not able to either becuase the POs were accidentally completed or they are in error status in SRM.
    We're running SRM 5.0 in extended classic.
    Is there a risk to corrupting the PO data if we reverse the complete status via a custom program in order to then manually set the two indicators?
    Our users completed the SRM POs without  setting the item level  'No more GR expected' and 'No more Invoices expected' values.
    Regards,
    Jerry

  • What does the Keynote button titled 'connect' do?

    Hey.
    I was wondering what the button titled 'connect' does? It's found at the top with all the other icons ex. themes, view, shapes, but you might need to go to 'customize the toolbar' to find it.
    any help would be appreciated.
    Thanks,
    Brandon

    Hello Brandon,
    just select two shapes, images or other objects. Then it becomes active and when clicked it draws a line connecting the two objects. When the objects are moved the line is moved with them so they stay connected.
    -Vaclav

  • What does the close button on the cookie permission dialog do?

    If I don't choose Allow, Allow for Session or Deny, but instead just close the dialog, is there an exception set for that site? Is a cookie stored or refused?

    Looks that there are no cookies stored if you click the close X. You can verify that by clicking the website icon (favicon) on the left end of the location bar and click the More Information button to open the Security in Tools > Page Info > Security. Click the View Cookies button to see the cookies from the current domain.

  • What does the buttons do and why are they there?

    This is a stupid question, but what does the two buttons under the volume controle of the 865 PRO do?
    It’s called “Stop” and “Go To Previous Page”. Is it relatet to IE browser, -and if so… does anyone use it?

    Gomez411 wrote:
    items in my systems folder.
    There is a document named  com.apple.ReportMessages.domains and another named com.apple.ReportMessages.v2.domains. What are these and do I need them?
    Also, I see a lot of preferences that have lists that look like the following when I search the preferences files
    What I am curious about is why all the unknown documents and the ~orig?
    I am far from an expert but I have never seen this before and wonder if I should do something.
    Generally it is not a good idea to be poking around in the System Folder, trying to second guess files and plist. There are literally 1000's of files  in your System Folder you will have no idea why they are there.
    If you want to do house keeping stick to your username folder. Therefore any damage done is limited to your user account.
    My computer was not going to sleep.
    Did you try >SystemPreferences>EnergySaver.  Make configuration changes here.

  • When there are several tabs open, why does the search always take place on the 2nd tab (the first tab seems never to change from the home page) despite my selecting a different tab in which to do a google search?

    I have Mozilla Firefox 10.0. When I open it, it correctly opens on the homepage in the first tab. Once I have another, or several, tabs open, no matter which tab is active, any google search I do immediately takes place in tab No 2. It doesn't seem to matter how many times I go to e.g. tab 4 to do a search (because I wish to compare with the webpage open in tab 2), yet it always now does the search in tab 2. This is very irritating. There must be some setting that has gone pear-shaped, but where/which? Any suggestions? Thanks.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • IM Login problem Error while doing the search

    Hi people,
    I'm facing some strange behaviour with login for a couple of users, I have users that don't have problems to login and I have user that can't login, I'm sure that all of them are valid because they're login to Portal Server, and then launch the IMClient using SSO, users that can achieved the login can't found users that can't login using the "add contact" button of the IMClient.
    In the javaws console I'm seeing this exceptions when a user can't login:
    30 Oct 2007 14:02:18,898] [xmpp] [javawsApplicationMain] org.netbeans.lib.collab.CollaborationException: Error while doing the search
    org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getUserAttributes(XMPPPersonalStoreService.java:1211)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getPrivateQuery(XMPPPersonalStoreService.java:1289)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getProfile(XMPPPersonalStoreService.java:419)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.getProfile(XMPPPersonalStoreService.java:240)
         at com.iplanet.im.client.manager.CurrentUserManager.getCurrentProfile(CurrentUserManager.java:350)
         at com.iplanet.im.client.manager.Manager.login(Manager.java:1255)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog.login(DefaultLoginDialog.java:550)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog.connect(DefaultLoginDialog.java:540)
         at com.iplanet.im.client.iIM.startLogon(iIM.java:464)
         at com.iplanet.im.client.iIM.init(iIM.java:203)
         at com.iplanet.im.client.iIM.main(iIM.java:950)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.javaws.Launcher.executeApplication(Launcher.java:1171)
         at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1118)
         at com.sun.javaws.Launcher.continueLaunch(Launcher.java:961)
         at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:515)
         at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:218)
         at com.sun.javaws.Launcher.run(Launcher.java:165)
         at java.lang.Thread.run(Thread.java:595)
    /home/lalo/.sunmsgr/mx_m53852_latam_int_bbvabancomer_com_mx/messages/scripts/scripts.txt
    [SafeResourceBundle] Missing resource key: iIMFrame_title
    [Fatal Error] :1:2908: The element type "body" must be terminated by the matching end-tag "</body>".
    com.sun.im.service.CollaborationException: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.im.service.util.ReflectUtil.getDelegatorObject(ReflectUtil.java:27)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:179)
         at com.iplanet.im.client.manager.UserCache.getPrincipal(UserCache.java:161)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:171)
         ... 19 more
    [Fatal Error] :1:2908: The element type "body" must be terminated by the matching end-tag "</body>".
    com.sun.im.service.CollaborationException: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.im.service.util.ReflectUtil.getDelegatorObject(ReflectUtil.java:27)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:179)
         at com.iplanet.im.client.manager.UserCache.getPrincipal(UserCache.java:161)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:171)
         ... 19 more
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)All of the users are under the same ldap branch, and previously I ran the command: /opt/SUNWiim/sbin/imadmin assign_services, for that ldap branch.
    Any suggestion? Thanks in advance....

    Finally we found the cause of the problems, for an strange reason if the user has the character '�' in his 'cn' o 'sn' he can't login, for example:
    bash-3.00# ldapsearch -x -h ldap -p 389 -b "c=mx,o=isp" -D "cn=DirectoryManager" -w password "cn=mx.m524217" cn sn uid
    version: 1
    dn: cn=mx.m524217, ou=people, c=mx, o=isp
    uid: m524217
    sn: VERA TREVI�O
    cn: mx.m524217
    When a user login to IM made a search of users if he search a user that can't login that search doesn't found nothing and the exception I posted before appears in the javaws console.
    But this only happened while we are using the gateway, if we point to the IM multiplexor directly we don't have all of this problems.
    Regards..

  • How does the search functon/input box work?

    How does the search functon/input box work?
    Hi
    my level is beginner
    there is a search box on the upper right hand on this page
    frames in gey ?
    how does this work.
    does this search in the database?
    if i would want to create this in an application
    what can i do ?
    are there CF examples??

    Thanks
    search against a database : Are there a function of Cf ta
    tags/code to do this? is this CFquery / and Cfoutput?
    or
    do a Verity search of a collection. How is this dont by? CF
    submit a search to an external search engine like Google.
    oh, is this when a page has a search and when the user types in
    there text in the input box it automatically goes to the google
    search. any articles on how to do this in CF
    Thanks

  • GetRealPath() -- where does the search start?!

    Does anyone know what directory the search starts from?
    Does it start from the root of your web app? (Is what I'm guessing)
    Any information on this would be great.
    Thanks in advance,
    b2s

    Also, is using this method very reliable?
    The reason I am asking is i am currently having to store the file path in a property file. Which is ok, if my development, test, and production servers would all have the same name.......yea they don't and they never will. So I want to use this method so the machine won't matter.
    Granted I've read that this method won't work for WAR deployments. Meaning the app is never extracted from the WAR file when deployed to the server. Which in my case we are currently extracting the WAR files.
    Thanks,
    b2s

Maybe you are looking for

  • [Solved] No sound on Dell XPS 13 2015 (9343) with BIOS A03

    I have been unable to get sound to work on my new 2015 Dell XPS 13 Developer Edition running kernel 4.0.1-1-ARCH.  Arch is the only OS installed. I have checked the wiki page and this forum post, which seems to indicate it should work with this confi

  • FullScreenButton in SWF file in an HTML Page

    I have inserted a small video as a SWF file into my homepage along with Play, Pause, FullScreen and Mute buttons (loaded from the Flash Components panel). The Play, Pause and Mute buttons work fine. But when I click on the FullScreen Button nothing h

  • Playing Same Video on Two iPads?

    The First iPad is Generation One and the second iPad is a second generation iPad.  Now video mirroring is not the answer since I have tried AirView and Airserveer but the video only plays on ONE iPad at a time. Basically, i would like to mimic a dual

  • Missing Editor for Cancel Email in Start a Task Process object

    I'm using SPD 2013 and the 'Start a task process' object in a list workflow.  I've successfully modified the Task Creation email, but when someone completes the task, others in the group receive the default task cancelled email and I cannot find an e

  • Subscribed calendars appear on iMac, not on IOS devices

    I subscribe to two sports calendars.  The data appear perfectly on my iMac but no longer on my IOS devices.  Each of the subscribed calendars is check-marked and appears under iCloud calendars in Calendar on the iMac.  Previously they synced fine to