Hyperlinks gone astray

I'm building tables of contents programmatically and save them as tagged text for importing into InDesign (CS3) for later export to PDF.
That works fine for bookmarks and hyperlinks to web sites but not for links to other PDF documents. Why?
In fact if you export a document as tagged text and then re-import that same tagged text again, the bookmarks and hyperlinks to websites still work but the file://links are lost (bug in CS3 ?).
I've already posted this question in the regular forum, but got no answer and think now that I might be able to solve the problem through scripting, e.g. by sending a fake http link and then converting it to a file link.
Thanks for any suggestions on how this could be achieved (in javascript or vbs).
Texane02

Apple has removed over 90 features from Pages 5.
http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
Pages '09 should still be in your Applications/iWork folder.
Archive/trash Pages 5 and rate/review it in the App Store, then get back to work.
Peter

Similar Messages

  • Lost emails, where hath thou gone?

    Hmmm, not all but just some emails have gone astray. I have searched in several ways and can only find some as part of an email trail.
    Any ideas how this may have happened?
    P.S. after recovering our emails from the Mobileme account in Feb, we are now suddenly recovering emails inadvertently from 2007... hmmm.

    Hello:
    A complete answer would depend on the Mail platform (POP or IMAP).
    However, you might try rebuilding the mailbox (s).  That will take awhile, by the way, do not interrupt it.
    Barry

  • How do I release memory when done with a large Image?

    I've got a sample program here. Enter a filename of a .jpg file, click the button and it will load and display a thumbnail of it. However memory is not released so repeatedly clicking the button will let you watch the memory use grow and grow. What should be done in the code to release the large original image once the thumbnail is obtained? Here's the class:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import java.util.Iterator;
    import javax.imageio.*;
    import javax.imageio.stream.*;
    import javax.swing.*;
    public class ImageMemoryLeak extends JFrame implements ActionListener {
         private JLabel thumbnail = null;
         private JTextField tf = null;
         private JButton button = null;
         public static void main(String[] args) {
              ImageMemoryLeak leaker = new ImageMemoryLeak();
              try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); }
              catch (Exception ex) { }
              leaker.showDialog();
         private void showDialog() {
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setBounds(100,100,200,200);
              setBackground(new Color(255,255,255));
              Container cont = getContentPane();
              cont.setBackground(Color.lightGray);
              cont.setLayout(new FlowLayout());
              thumbnail = new JLabel("thumbnail here");      
              cont.add(thumbnail);
              tf = new JTextField("type filename here");     
              cont.add(tf);
              button = new JButton("Load Image");
              button.addActionListener(this);
              cont.add(button);
              pack();
              setVisible(true);
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == button) {
                   String fname = tf.getText();
                   File f = new File(fname);
                   if (f.exists()) {                    
                        try {
                             // This is where a file is loaded and thumbnail created
                             Iterator<ImageReader> iter = ImageIO.getImageReadersByFormatName("jpeg");
                             ImageReader imgrdr = iter.next();
                             ImageInputStream iis = ImageIO.createImageInputStream(f);     
                             imgrdr.setInput(iis, true);
                             ImageReadParam param = imgrdr.getDefaultReadParam();
                             BufferedImage fullSizeImage = imgrdr.read(0, param);
                             imgrdr.dispose();     // is this enough?     
                             iis.close();               
                             int thWidth = 150;
                             int thHeight = 150;
                             int w = fullSizeImage.getWidth(null);
                             int h = fullSizeImage.getHeight(null);
                             double ratio = (double)w/(double)h;
                             if (w>h) thHeight = (int)((double)thHeight /ratio);
                             else if (w<h) thWidth = (int)((double)thWidth * ratio);
                             BufferedImage thumbImage = new BufferedImage(thWidth, thHeight, BufferedImage.TYPE_INT_RGB);
                             Graphics2D graphics2D = thumbImage.createGraphics();
                             graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                             RenderingHints.VALUE_INTERPOLATION_BILINEAR);
                             graphics2D.drawImage(fullSizeImage, 0, 0, thWidth, thHeight, null);
                             // done with fullSizeImage now - how to release it though?
                             fullSizeImage.flush();     // doesn't seem to do the trick
                             ImageIcon oldicon = (ImageIcon)thumbnail.getIcon();
                             if (oldicon != null) oldicon.getImage().flush();
                             ImageIcon icon = new ImageIcon(thumbImage);
                             thumbnail.setIcon(icon);
                             thumbnail.setText("");
                             pack();
                        } catch (IOException e1) {
                             e1.printStackTrace();
                   else {
                        thumbnail.setText("file not found");
    }

    lecisco wrote:
    AndrewThompson64 wrote:
    lecisco wrote:
    I don't mind having GC getting to it but it's not doing so now. .. Isn't it? GC is only called when the JRE feels it is necessary. Definitive evidence of a memory leak is generally revealed by an OutOfMemoryError. Does the code throw OOMEs?Excellent point. I tried loading over and over to force an OOME. I found that after the memory footprint grew to about 750mb, it reset down to about 130mb again, so it seems that GC does eventually kick in. Perhaps what I have is fine.
    That question brings me to the code sample. Typing an image file name in a text field is soooo 1980s. It would take a long time and much hard work on the part of the person testing it, in order to get to an OOME.In my actual application I'm using drag-and-drop to specify the image. The text field was just to simplify the code sample. How you get the file location is not relevant for the question - it's how the resources are released. If you're saying my code is fine regarding and shouldn't be holding onto any resources, that's great. I'm not saying that. So far I've not looked closely at the code, and am no expert on resource caching in any case.
    ..I am looking to confirm I'm following best practices regarding image resources.Good show. There is too much rubbish code out there.
    ..With the code sample, you just have to specify one .jpg file and repeatedly click the button to see the memory grow, so there's no burden to type a new file each time.Oh right, my bad. I had presumed it required a different image each time. Still (grumbles) a file chooser to select the image file would not have gone astray - for us lazy types. ;)

  • New to Struts - logic:if error - am I not properly defining a bean?

    I am going through what are for the most part simple Struts examples and tutorials on my company's Intranet. The example below should be testing against the pre-defined <logic:if> and <logic:or> statement values and spitting out either the 'one or more conditions are true' or 'none of the conditions are true' depending.
    That said, I am getting an error with the following block of code (at line 11) just before the first logic:if statement and I am hoping for help in determining where I have gone astray.
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%@ taglib uri="/tlds/marketmaker.tld" prefix="abc" %>
    <%@ taglib uri="/tlds/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/tlds/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/tlds/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/tlds/jdo.tld" prefix="jdo" %>
    <%@ taglib uri="/tlds/string.tld" prefix="str" %>
    <abc:page>
         <h3>logic:if</h3>
           <logic:if name="calendarBean" property="month" op="equal" value="March">
           <logic:or name="calendarBean" property="year" op="lessEqual" value="2012"/> <!-- Note self-closing -->
           <logic:or name="calendarBean" property="day" op="equal" value="Friday"/>
             <logic:then>
                <p>At least one condition above is true.</p>
              </logic:then>
              <logic:else>
                <p>None of the conditions are true.</p>
              </logic:else>
           </logic:if>
    </abc:page>Again, the error is at line 11, occurring at or just before the <logic:if> statement. I presume it is because a bean must be properly defined.
    I tried the following variations of <bean:define> and keep coming up with the same error.
    <bean:define id="calendarBean" name="myCalendarBean" value="March" />
    <bean:define id="calendarBean" name="calendarBean" value="March" />
    <bean:define id="calendarBean" name="calendarBean"/>
    <bean:define id="calendarBean" name="myCalendarBean"/>
    <bean:define id="myCalendarBean" name="calendarBean"/>
    <bean:define id="calendarBean" value=""/>
    <bean:define id="calendarBean" value="false"/>
    <bean:define id="calendarBean"/>Am I right about defining a bean first? If yes, what am I doing incorrectly in the aforementioned <bean:define> declarations listed above?
    If you see something entirely different (and wrong) please do let me know.
    Edited by: 924359 on Mar 29, 2012 1:03 PM

    Try a Struts forum. This isn't one. Locking.

  • ITunes Seem to Have Suddenly Stopped Communicating With the CD/DVD Burner

    Hello, I wonder if anybody can help - my itunes application seems to have suddenly stopped communicating with my laptop's cd/dvd burner
    (Generic Name (E: H - T-S D D A S - 20N ATA Device)).
    About 2 years ago, I have experienced a similar problem, but was able to resolve it by downloading 64-bit compatible GEAR drivers to my system. However, the problem has re-appeared when I have updated to iTunes Version 10.1. Funny enough, the cd/dvd burner started getting recognized again when I updated to iTunes Version 10.2, but halfway through me burning a large playlist to multiple cds has suddenly stopped recognizing the cd/dvd burner again, and has never "resolved itself" ever since.
    I have tried multiple approaches to solving this issue, including completely re-installing itunes software and completely re-installing GEAR drivers, but nothing works. I have even tried uninstalling GEAR drivers completely, as I read that it worked for someone on one of the similar forums, but that didn't work either.
    My itunes diagnostics runs all the points of the cd/dvd drive check successfully, except for the last point (Can Not Read Audio CD). Here's what the diagnostics summary looks like:
    Microsoft Windows Vista x64 x64 Home Premium Edition Service Pack 2 (Build 6002)
    Hewlett-Packard HP Pavilion dv9700 Notebook PC
    iTunes 10.2.1.1
    QuickTime 7.6.9
    FairPlay 1.11.16
    Apple Application Support 1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Driver not found.
    Bonjour 2.0.4.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number 0016AB580A7B0C28
    Current user is not an administrator.
    The current local date and time is 2011-04-14 17:52:25.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce 7150M / nForce 630M
    ** External Plug-ins Information **
    No external plug-ins installed.
    The drive F: Motorola MB810 Rev 0001 is a USB 2 device.
    iPodService 10.2.1.1 (x64) is currently running.
    iTunesHelper 10.2.1.1 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    ** CD/DVD Drive Tests **
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: H-T-S DDA
    S_-20N, Rev W_05
    Audio CD in drive.
    Found 1 songs on CD, playing time 255:08 on Audio CD.
    Track 1, start time 00:02:00
    Audio CD reading failed. Error Code: 27 27 27 27 27 27 27 27 27 27 27 27 27 27 27 27 0 0 0 0.
    iTunes cannot play or import music from a CD in this drive. The drive may need a firmware update. Check with the manufacturer.
    Get drive speed succeeded.
    The drive CDR speeds are: 3 9 16 24.
    The drive CDRW speeds are: 3.
    The drive DVDR speeds are: 3.
    The drive DVDRW speeds are: 3.
    Error Correction is turned on for importing audio CDs.
    I have noticed that the diagnostics summary containes a suggestion to update firmware of my laptop's cd/dvd drive, but currently there are no such firmware updates available.
    Another frustrating issue that I ran into was trying to convey this issue to Apple Technical Support via e-mail using the Express Lane for the troubleshooting issues. I really fail to understand why I am being asked for the "hardware serial number" when I'm clearly choosing the categories for "iTunes/CD-DVD Import Issues" which are software, not hardware, categories! This prevents me from being able to simply send the description of my problem to the correct Apple Support department, and does not let me do that even when I enter my itunes' Serial Number, which can be found in the diagnostics summary provided above.
    Much Thanks to anyone who can provide any kind of helpful advice, even if it's just on how to be able to convey this problem to Apple Support via e-mail!

    Okay ... checking something else:
    Current user is not an administrator
    Is that true? Or do you in fact have a Windows user account with full administrative rights?
    (It's possible that a permission may have gone astray in your usual user account, which might be causing the burning issues.)

  • This is ridiculous... (Updating Hell)

    Please Adobe, get your act together.
    Your announcements, update warnings, download pages, preliminary statements, links and buttons (in the software itself) are confusing and even misleading users so terribly, most of them don't dare to touch anything anymore. During my demo's and courses I encounter many users who have gone astray, because of incorrect or incomplete installations, based on bad information from genuine Adobe sources (web pages, help references, support staff, etc.)
    For instance, just take a look at this "Announcement", blatantly stated above this forum:
    ANNOUNCEMENT:
    Nov. 10 Update to Folio Producer Service/Viewer Builder
    "Upon login, older versions of Viewer Builder (versions 1.5.1 and older) contain a link to upgrade Viewer Builder which incorrectly points you to the DPS Dashboard. Do not use the DPS Dashboard to upgrade Viewer Builder. You can download the latest version of Viewer Builder from http://www.adobe.com/go/digpubsuite_vb_mac."
    At 5:00 PM PST, the Folio Producer Service on the web will be updated. This update requires you to update the Folio Builder panel:
    Mac OS: Download Folio Builder panel
    Windows: Download Folio Builder panel
    You'll be able to download the new Viewer Builder (v1.7) from the DPS Dashboard.
    Is the bold part above meant to quote a WRONG part of some other (older) announcement? If not, then why does the last line state exactly the opposite instruction of the bold text (DO vs. do NOT use Dashboard to download Viewer Builder) ?
    The linked file in the bold text directly downloads an "RC" version of the Viewer Builder. Normally an "RC" means a "Release Candidate", which does not necessarily mean the "final" version of an officially numbered release. So, what is the wise thing to do here: wait, or go out on a limb?
    And finally, the two links don't seem to work (as of Sunday morning 13th Nov. GMT).
    Either, the techniques are so terribly going wrong behind the scenes, you're simply frantically releasing and withdrawing software as we go (in that case your DPS development sucks). Or the software is actually upgraded correctly, but the information and links which are supposed to lead us to it, are assembled in a haphazard fashion (in that case your DPS communication sucks). Worst case scenario: both development and communication sucks, but I won't go that far. Well, maybe they both suck, partially.
    Here's another recent beauty, from the Discussions list in our very own forum:
    Nov. 10 - Folio Producer Service Update
    At 5:00 PM PST, the Folio Producer Service on the web will be updated.
    This update requires you to update the Folio Builder panel:
    Mac OS: Download Folio Builder panel
    Windows: Download Folio Builder panel
    This update includes support for the Single Edition and Amazon Appstore.
    You'll be able to download the new Viewer Builder (v1.7) from the DPS Dashboard.
    Again, the unresponsive download links and the doubtful Dashboard reference.
    My advice:
    Clean up any mess immediately after any wrong step, by deleting or editing all referring links and pages that point to or hold outdated information or software.
    Wtach your SEO ! You won't believe how many DPS skeletons one can find within the official Adobe closet, or detours one must take, using a perfectly legitimate Google search string like "download adobe folio builder" or "adobe digital publishing editions". This mess of old information, dead ends, and ambiguity gives many desperate users a major headache.
    Mention the release dates with every download version, because in this swamp of tools and updates, users get easily mixed up with all these numbers.
    Use icons or other types of imagery in your information to clarify what downloads/tools users are looking at. After all, we're working in a graphical trade - not an IT department.
    Start setting up ONE landing page that caters for all downloads, using some sort of a step-by-step guidance (I hesitate to use the word "Wizard")  to distinguish between what the user has and needs, depending on who they are: a newbie, an updating average user, a self-supporting proficient user, or Johannes Henseler...
    This brand new area of media and tools is entitled to some bugs and confusion, but there's no reason to add insult to injury. And there's no reason for me to say that the stuff you do "sucks" (although I did, to make my point). Because most users who have taken the effort to visit this forum, know how hard you're all trying to get this ball rolling.
    But you must achieve a more solid and thrustworthy basis for your information and downloads, and get rid of the "beta" mood that still surrounds DPS. Users understand quite well that DPS is far from solid and that it obviously requires regular updates, even separate from InDesign. But they get lost in the process too easily. So, get "The Future of Publishing" to behave according to the complete and agile solution the promotion claims it to be, or go back to Lab.

    word!
    second that.
    This is really hard to follow, even for us who keep an eye on every update and read every single post and have an imagination of update problems out there.
    You tried to make digitalpublishing.acrobat.com (the "dashboard") the one-stop place for downloading and updating all necessary tools. good idea to make this the central point, because adobe.com download sections is a pain in the arse when trying to find updates for secondary tools like the DPS.
    also, make it super-duper clear what version is the current and what versio are currently available. I already wrote about lining up version numbers months ago and you seem to get this working — but it is still a mess. 1.7 vs 1.1.7 vs. 2.0 vs. drop17 vs. 11.4.2.201111104_m_670635 7.5.5.16 (you can imagine where I took the latter from)
    Peter: The bold line in the sticky forum message was added later, as I recall.
    —Johannes

  • Mac Pro 1.1 to 5.1 comprehensive upgrade advice?

    I need some comprehensive advice on upgrade process, over the next 2-3 months, from my current Mac Pro 1.1 which is:
    Dual-Core 2.66 GHz
    8 GB of 1033 ram
    120 GB OWC Mercury Electra 3G SSD (boot and data)
    SSD backed up to internal 500 GB Hitachi Drive (CCC)
    SSD backed up to external 250GB FW800 Drive (CCC)
    Running Lion 10.7.5
    2- 23” Cinema displays @ 1900x1200 res,
    Nvidia GeForce
    I’ve had this rig, give or take, for four+ years.
    Main complaints:
    Slow Excel and Word updating and editing, Some charts take 5-10 seconds to appear or redraw, in spite of font fixes, 0 ‘recents’ setting, keeping a very clean ‘permissions’ set-up, and other good ‘housekeeping’.
    7300GT PCI card starting to get a little "quirky" with occasional mangled screens
    Occasional ‘spinning ball’.
    McDraft slow to redraw.
    Generally, the 1.1 seems to be a bit too slow for me. I'm waiting on the computer, too much.
    Would like somethingh that has a bit more ‘pop’. I like for the computer to wait on me, rather than the other way around.
    Also, have not ruled out that I might be using some more ram and CPU-intensive apps in the future.
    In looking at what’s out there used, and from what I read by the experienced folks here on the forum, I see the:
    2010 or 2012 Mac Pro 5.1,
    3.33GHz six-core,
    w/ 3-8GB Ram,
    1 TB Drive
    5870 PCI
    Moving up to ML or Mavericks.
    as a very good ‘bang-for my-buck’ candidate. $2000+/-.
    I intend upgrade the ram in the 5.1 to 24GB (3x8GB) @ $300., unless somebody talks me into higher, or another ram config.
    Since my total usage for the last 3-4 years has remained fairly constant at 70-75GB, I intend to use:
    My existing 120GB SSD as a boot for the new 5.1
    Buy another 120GB SSD for a data drive
    use the 1 TB drive with 2 partitions, to back up the Boot and Docs SSDs,
    then do “belt and suspenders similar B/U with the existing Hitachi 500GB drive
    all with Carbon Copy Cloner, and bootable.
    Will be running one, possibly two, more 23” Cinema displays (or maybe a 23" and 27”)
    User usage profile:
    Lots (50-60+) of heavily cross-linked Excel workbooks (many with ten to twenty 2000-3000 line, work sheets) with tons of complex charts, in 15-20 folders.
    A lot of long Word docs (100-150) pages, many of which subscribe to the Excel workbooks.
    Medium to large, complex, symbol library-rich drawings, in MacDraft
    Illustrator – light usage –simple stuff (amateur)
    Photoshop – light usage – simple stuff (amateur)
    Just getting into some GoPro Movie editing, nothing too big or complex. Vacation and recreation vids. (amateur)
    Some Garage Band stuff for my harps (amateur)
    Some 40-50 slide PowerPoint stuff, with more to come.
    Dragon Dictate, which is a bit sluggish on my 1.1.
    Questions:
    Am I about on the right general track?
    And I’m ready to get something I can live with for another 4-5 years. Realistic?
    Ram upgrade to a minimum of 24GB -32GB? If so, Should I add 2x16 GB ram modules or 3x8 gig ram modules?
    Will be leaving some, but not too much, processing speed unused?
    What have I forgotten or gone astray with?
    Better/cheaper upgrade?
    Advice?
    I know this is a long request, but I'm tying to make it in one concise and unfragmented attempt.

    A couple(?) of clarifying questions:
    Are you recommending upgrade to ML10.8? Isn't there some sort of hack involved with that? Or is it just the 32vs64 bit video issue. Anything else?
    I believe he meant that buying the 5,1 would give you few benefits beyond being able to run any OS X beyond Lion.  And this might not be critically important for what you do.
    You could hack it to run 10.8 or 9, I guess.
    However, a new 5770 will take care of the 7300GT/0SX10.8 incompatibility issue, correct?
    A 5770 will not allow you to run 10.8 if that's what you meant.  It will work in your Mac Pro so long as you are running, at the earliest, OS X 10.6.4.  That 7300GT is overdue for an upgrade.
    50% head room on boot SSD? How do I find how much of current usage is boot? Subtract docs and apps folder sizes from total used?
    If I understand...use a new Samsung 250GB SSD for boot and use my existing OWC120 SSD for docs and apps, and that gives me all the head room that I would need, for both SSDs?
    SSD for the OS X system and apps only.  System is only 10GB or so.  How much space do need for apps?  50% of 120GB ssd is 60GB.  So as long as your apps don't occupy more than 45GB or so, then you can use the 120GB ssd as your boot drive.
    If you don't feel the need to run the latest OS X, then more Ram, a 5770 upgrade kit, and an SSD boot drive should give you a nice boost in performance for just a few hundred dollars.

  • Certain ondemand channels via Vision box using up ...

    His anyone else experienced this possible flaw with the ondemand service on the BT Vision system.
    I have found that programs watched via iplayer and any channel4 related content seem to deduct usage from my monthly broadband allowance.
    I have only really noticed it this month as I haven't bothered with the iplayer until his month as it's not very good on the Vision box and I've not watched that much from the rewind service or 4ondemand until now.  The 8 episodes of Fresh Meat seem to have affected the usage.  This weekend I watched several and my normal daily usage jumped by at least 0.5G for a single day which is alarming. 
    At the moment my usage appears to be around 2.5G more than normal after watching 12 programs on the above mentioned channels.
    Could someone from the Vision Team look into this as BT's normal customer services don't understand and are not very helpful.

    I carried out an experiment to see what was happening and for January as my usage was over 13G.  During February I didn't watch anything on Iplayer or via 4ondemand (via vision box) and guess what my usage was back down to the normal 7G.  Again this month very limited watching of anything on Iplayer and usage around 6G.
    Another thing which was noticed was that when running a BT speedtest back in January the additional QOS test was not available and therefore it appears again that my Vision service was not correctly set-up.  Since then I contacted the support team and now the QOS test is back and my broadband usage is back to normal.
    Therefore it does appear that something had gone astray with the way usage allowance was being recorded. However BT say this isn't possible.

  • Oracle 11g Express: listener/DB stopped regularly ...

    Dear all,
    we currently use oracle DB 11g express edition on Win XP in order to do nigthly test of our product accessing the DB via a JDBC driver. After two successful nightly test communicating via JDBC doesn't work anymore due to stopped DB listener. The first error message I got was "ORA-12518, TNS:listener could not hand off client connection", I fixed it via settings up maximum processes to 450, then I got the next error message where I don't know what to do "ORA-12560: TNS:protocol adapter error". Please can you help me since I need a stable DB for nightly continuous integration tests.
    Thank you in advance, Andreas.

    Bumping processes would seem to be a symptom fix, not a problem fix- if a session can't get a connection because available processes are at the max, must be some client programs with a bug/glitch where they aren't letting go of their session(s).
    Eg. maybe hitting an exception block, and the code never sees a "close connection" call? Until that bug (the problem) gets fixed, increasing process limits is not going to be much of a fix. Just a guess, can't know for sure without seeing the code.
    Anyways, for the ora-12560 something may have gone astray (or changed?) with host network adapter settings- hostname change? IP address change? IPv6? Is the host a DHCP client? Is there more than one NIC on the host? Do both the hostname and its IP address(es) resolve correctly? (... ipconfig /all ... `hostname` ... nslookup <hostname> ... nslookup <n.n.n.n> ...)
    One item to try, stop the listener and move the listener.ora file "out of the way" (eg move listener.ora listener.ora.bk) as others have suggested here before. Any RDBMS install has its default listener, named LISTENER, and if all the default settings are OK for your setup then using that should work fine. Double checking that the listener service still shows in the services applet would also be advisable, only takes a moment ... Start/Run/services.msc ...
    Another possible fix for ora-12560 is setting ...HOST=0.0.0.0... in listener.ora, that is the "any IPv4" address setting, but that is advisable only if the host has one NIC, otherwise the instance would be accepting connections at an address you might not want made available to remote clients.

  • Win xp won't shut down

    I installed win xp on my imac with leopard. When I go to shut down windows nothing happens. I can log off and switch between user, but not shut down windows.
    HELP!!!

    Hi and welcome to Discussions,
    when Windows refuses to shutdown it mostly means that a program is not closing/stop running but rather waits for an input (from the user or the system itself) or simply that that program has gone astray.
    Open the Task-Manager (presiing the keys 'ctrl''alt''del' to enter the Task Manager and see if there is such a program.
    You can also force a shutdown from within the Task Manager.
    Stefan

  • Using Exchange 5.5 to authenticate Portal Users

    I have searched through the forums and metalink for examples
    and/or instuctions on how to successfully use the Exchange 5.5
    LDAP directory to authenticate users, to no avail. I have tried
    a number of different methods with no success.
    Has anybody out there successfully acheived this and if so can
    you please post details regarding the process.

    I have the ports setup it's the FW policy that I'm having issues with.
    when I attempt to login I'm watching the ACS logs and don't see connection attempt failures from the device. I was hoping someone with the same FW has gone through this so I could compare notes and see where I have gone astray in my rule configuration.
    ej

  • Essbase Excel add-in error

    We have upgraded to Essbase 6.5.2 and when installing the excel add-in haveencountered the message "R.xls" file cannot be found. Does anyone elseknow anything about this and how to resolve this? The addin works okay,but the users get this message each time they open excel now.JC

    This sounds as if your environment variables are not set correctly or something in your registry has gone astray.I had a similar problem once which was actually caused by another VB application which was removing and adding them back in the add-ins but getting the syntax slightly wrong on the essbase add-in xla's (an extra " being created in the registry).Have you tried completely uninstalling the add-in and re-install?

  • Using CS6 Photoshop - Unable to select tool or zoom etc

    Using CS6 Photoshop on a Toshiba Laptop. Satellite L850 - I7-3610QM CPU Intel @ 2.30GHz - 12.0 GD Ram - 64 bit - Windows 7 - Direct x 11 - AMD Radeon HD 7670M ATI Graphics - Current display mode ... 1920 x 1080 - I begin by opening a photo to work on for a tutorial as a beginner. I right click on spot healing brush, current selection "spot healing brush tool " if I try to left click to select " healing brush tool" it wont for quite some time, and I can not hold space bar to display hand to move and sometimes can not even zoom. This happens no matter which tool I select. Can anyone help ???

    c.pfaffenbichler thank you also for your kind response. I did go the the site you linked. Was taking a great deal of time to find anything relevant, at the end could not find fix. However, your link and advise has not gone astray. Thank you

  • Why are images desaturated?

    I've struggled with this problem off an on for years, never truly understanding what fixed or caused the problem. I work on a MAC OSX and use Lightroom 4 and Photoshop CS4 exclusively.  In the past, I was told the issue was my color profile, and I've been diligent to make sure images are saved as RGB. In the past, I've had a lot of issues with exporting an image and it inexplicably looking green and desturated. Today I have a more pressing issue within Photoshop. I copied this image after it was opened in photoshop and then pasted it into an album template. I've been working with this template for a few days, no problems, copying and pasting, but now my copied image here -
    when pasted looks like this:
    (Please ignore the light blue sight lines from a template)
    I made sure that I was copying the image and not just one layer. Any thoughts on where I've gone astray?
    Thanks.

    I was told the issue was my color profile, and I've been diligent to make sure images are saved as RGB
    RGB is a COLOR MODEL, you need to Edit> Convert the images to the sRGB PROFILE
    and save a copy with the sRGB profile embedded
    before you do that tho
    open one of the problem images in Photoshop (so it is displaying proper)
    go to View> Proof Setup> Monitor RGB
    that should duplicate the problem, yes?
    i highly recommend you begin by
    Edit> Color Settings
    and set these settings

  • New User with a format problem

    Hello All!
    I am wondering if anyone could help me with an issue.  It seems my formatting has gone astray and pushes my main content past my sidebar on my website.  The site is www.innergazeyoga.com.  It appears fine in dreamweaver and even in firefox but not in IE.  I have trying to resolve the issue by reducing the width of the sidebar as well with no luck.  It also appears that other formatting has either disappeared or a late night delete moved the text away from the second photo.  Any suggestions on fixing the huge space under the header and get the content box back up there?  Thanks

    reduce the size of your #mainCotent to something like 580px and the white space is the top margin and top padding of the <h1>...simply zero it out in your css. Same issue with the last <p> in your #mainCotent...padding and margin is keeping the footer from coming up all the way. Also give your #mainContent some padding to push the text inward. Then you can also give the imgs some padding as well to space off the text. Going to take some fine tuning but this will at least get you started.

Maybe you are looking for