Image Coming from URLRequest Not Displaying?

Hi,
  I have a main app here with a subclass that is supposed to "send images" based on the "parameters" that sends to a HTTPService.
  However, even though the url seems to be generating correctly, I could not see the image. Since my PHP is working fine with the url as shown in the trace statements from my app, I am assuming that there has to be something else that I am missing here.
  Below is the code that generates the image, is there something here I am missing?
package map
     import colorize.*;    
     import com.zavoo.svg.*;    
     import flash.display.Sprite;
     import flash.events.Event;
     import flash.net.URLLoader;
     import flash.net.URLRequest;
     import flash.net.URLVariables;    
     import mx.containers.Canvas;
     import mx.core.UIComponent;
    public class SvgMap extends UIComponent {
        public var canvas:Sprite;
        [Embed(source="USA_Counties_with_FIPS_and_names.svg")]
        public var usaMap:Class;
        public var paths:SvgPaths;                 
        private var patient_from:Array;   
        private var drive_time:Array;
        private var drive_distance:Array;
        private var college:Array;
        private var high_school:Array;
        private var income:Array;
        private var population:Array; 
        private var countyName:XMLList;
        private var stateColors:Array;
        private var horizontal_bar:Canvas;
    public function SvgMap():void {
                canvas = new usaMap();
                canvas.width = 650;
                canvas.height = 500;
                addChild(canvas);
                trace("Canvas Parent: " + canvas.parent);                            
    public function passBox(passedBox:Canvas):void{
        horizontal_bar = passedBox;       
     public function setParameters(passedArray:Array,passedArray7:Array):void {
            from = passedArray;          
            stateColors= passedArray7;   
            changeMap(from,stateColors);           
        public function changeMap(passedArray:Array,passedArray7:Array):void{   
        removeChild(this.canvas);              
        canvas = new Sprite();
        canvas.width = 600;
        canvas.height = 500;
        addChild(canvas);     
        var from_string:String = from.join("-");
        var state_colors_string:String = stateColors.join("-");       
        var loader:URLLoader = new URLLoader();          
        var url:String = "http://tdc-queuing/test/generic.php?from=" + from_string + "&state_colors=" + state_colors_string;
        var variables:URLVariables = new URLVariables();
        variables.patient_from= patient_from_string;
        variables.state_colors = state_colors_string;
        var encode:String= encodeURI(url);   
        var pattern:RegExp = /#/g;
        var decode:String = encode.replace(pattern,"%23");   
        var request:URLRequest = new URLRequest(decode);       
        request.method = "GET";       
        loader.load(request);       
        loader.addEventListener(Event.COMPLETE, onLoadComplete);
        public function onLoadComplete(event:Event):void {
                var loader:URLLoader = URLLoader(event.target);              
                paths = new SvgPaths(loader.data);      //the canvas exists
                paths.drawToGraphics(this.canvas.graphics, 2, 10, 10);
Thanks for your help. Anything is appreciated.
Alice

Hi,
For testing purposes, here is the package:
package map
     import colorize.*;   
     import com.zavoo.svg.*;   
     import flash.display.Sprite;
     import flash.events.Event;
     import flash.net.URLLoader;
     import flash.net.URLRequest;
     import flash.net.URLVariables;   
     import mx.containers.Canvas;
     import mx.core.UIComponent;
    public class SvgMap extends UIComponent {
        public var canvas:Sprite;
        [Embed(source="USA_Counties_with_FIPS_and_names.svg")]
        public var usaMap:Class;
        public var paths:SvgPaths;                
        private var from:Array;  
        private var stateColors:Array;
        private var horizontal_bar:Canvas;
    public function SvgMap():void {
                canvas = new usaMap();
                canvas.width = 650;
                canvas.height = 500;
                addChild(canvas);
                trace("Canvas Parent: " + canvas.parent);                           
    public function passBox(passedBox:Canvas):void{
        horizontal_bar = passedBox;      
     public function setParameters(passedArray:Array,passedArray7:Array):void {
            from = passedArray;         
            stateColors= passedArray7;  
            changeMap(from,stateColors);          
        public function changeMap(passedArray:Array,passedArray7:Array):void{  
        removeChild(this.canvas);             
        canvas = new Sprite();
        canvas.width = 600;
        canvas.height = 500;
        addChild(canvas);    
        var from_string:String = from.join("-");
        var state_colors_string:String = stateColors.join("-");      
        var loader:URLLoader = new URLLoader();         
        var url:String = "http://localhost/test/generic.php?from=" + from_string + "&state_colors=" + state_colors_string;
        var variables:URLVariables = new URLVariables();
        variables.from= from_string;
        variables.state_colors = state_colors_string;
        var encode:String= encodeURI(url);  
        var pattern:RegExp = /#/g;
        var decode:String = encode.replace(pattern,"%23");  
        var request:URLRequest = new URLRequest(decode);      
        request.method = "GET";      
        loader.load(request);      
        loader.addEventListener(Event.COMPLETE, onLoadComplete);
        public function onLoadComplete(event:Event):void {
                var loader:URLLoader = URLLoader(event.target);             
                paths = new SvgPaths(loader.data);      //the canvas exists
                paths.drawToGraphics(this.canvas.graphics, 2, 10, 10);
And, this is the PHP:
<?php
header("Content-type: image/svg+xml"); //Outputting an SVG
$from = $_GET['from'];
$state_colors= $_GET['state_colors'];
$from = explode("-", $from);
$state_colors= explode("-", $state_colors);
#Load the Map
$ourFileName= "USA_Counties_with_FIPS_and_names.svg";
$fh = fopen($ourFileName, "r") or die("Can't open file");
$contents = fread($fh,filesize($ourFileName));
$lines2= file($ourFileName);
foreach ($lines2 as $line_num => $line2) {
$style_line_num = $line_num+3;
$line2 = trim($line2);
      if(preg_match("/^style/",$line2)) {
       $rest = substr($line2,0,-1);        
       for ($j=$line_num;$j<=$style_line_num;$j++){
         if(preg_match("/inkscape:label/",$lines2[$j])) { 
            $location = explode("=",$lines2[$j]);
            $location2 = substr($location[1],1,-6); 
            if(in_array($location2, $from)) {
             $key= array_search($location2,$from); //Find out the position of the index in the array
             $colors_style = ";fill:" . $state_colors[$key];  //Use the index from array_search to apply to the color index
             $rest2 = substr($line2,0,-1). $colors_style . "\"";           
             echo $rest2 . "\n";
            else echo $line2 . "\n";           
         } //end preg_match inkscape       
     } //end for loop
   }  //If preg_match style
     else echo $line2 . "\n"; //else if preg_match style    
} //end for each  
fclose($fh);
?>
Thanks for your help.

Similar Messages

  • Image coming from an xml source and on which we can't click...

    Hi everybody !
    Is it possible in LiveCycle Designer ES 8.2 (or in coming version of the software) to disable the click event on ImageField ?
    I read that it is not possible yet but there is may be another solution to proceed to have an image coming from an xml source and on which we can't click.
    Thanks.

    Hi,
    Yes , you can disable image field by setting acces value to readOnly.
    Example:
         imageField1.access = "readOnly";
    It works for Adobe Reader 9
    Best regards,
    Paul Butenko

  • "From" presence not displaying in Outlook 2010

    I've been working on a software product aiming presence and im integration with Microsoft Outlook using IMessenger API.
    Integration works as expected with Outlook 2013. However, the presence indicator of the
    "from" or sender does not display in Outlook 2010. The to, cc and bcc fields all display presence properly. In Outlook 2013 however, all of the from, to, cc and bcc fields display presence.
    There is a similar discussion for Outlook 2013 on:
    http://social.technet.microsoft.com/Forums/office/en-US/a2500fec-fc3f-4295-bbe3-7620876a2d24/from-presence-not-displaying-in-outlook-2013
    My problem is similar to this one except that I've the same problem with Outlook 2010 and I don't have this problem with Outlook 2013. It may be resolved in Outlook 2013 with a hotfix I don't know. Does anybody have the same issue and have a fix or workaround
    for this situation? I have latest updates for Office 2010 already.
    A strange thing is that when I set the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Common\IM\TurnOffPresenceIcon to 1, presence indicators are disappear from contact names as expected, however when I hover over the sender it
    displays sender's presence correctly on tooltip. So integration seems ok when I look at this.
    when I set the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Common\IM\TurnOffPresenceIcon to 2, presence indicators are disappear from both contact names and tool tips as expected.
    when I set the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Common\IM\TurnOffPresenceIcon to 0, presence indicators are appear for contacts in to, cc, and bcc fields except "from" field, which is quite strange. After
    I move around between messages, some of the sender's presence indicators starts displaying.
    Does anybody know why the presence indicator is not displaying consistently for the "sender" contact in Outlook 2010 when TurnOffPresenceIcon has value 0? Does anybody have the same issue and have a fix or workaround for this situation?

    Hi,
    There is another registry value named TurnOffPresenceIntegration
    which also have an effect on the presence indicator, please find the
    Key in: HKEY_CURRENT_USER\software\microsoft\Office\14.0\Common\IM
    or Policy Key: HKEY_CURRENT_USER\software\Policies\microsoft\Office\14.0\Common\IM
    and then check if the key value is set to 0.
    For more information, please refer:
    http://support.microsoft.com/kb/2726007
    Regards,
    Steve Fan
    TechNet Community Support

  • Files coming from photoshop not showing up in Lightroom

    I suspect I have some setting goofed up, but I looked at preferences, and don't see which one............
    In lightroom 5.3, I have some raw (.nef) images.  I assign them a keyword.  I open the set of images with that keyword (so, they all have the keyword).  Go into Develop, fiddle, then do an "edit in", and go to PS CC.  Make changes, then do a Save As, and save a .psd back to the same folder......
    In the past, MY RECOLLECTION is that the .psd I just saved, would be stacked with the original .NEF, AND would show up in the group with the keyword.  With the current settings, everything works fine EXCEPT the .psd doesn't show up in the keyword group.  When I get back to Lightroom, still in Develop, there is 'NO PHOTO SELECTED".  If I go back to Library it is not visible in the keyword group.  If I EXIT from the keyword set, and display all the images, I can now see the .psd AND it has the keyword set, but it doesn't show up in the keyword group until I exit from the group, go back to displaying all the images, then go back INTO the keyword group.
    And yes, I have "stack with original" set in the external editor preferences.
    Is this normal behavior in 5.3, or do I have something set wrong?  'Cause it's really slowing things down having to constantly go back to library, exit the keyword group, and on and on...

    Hi Rikk...  Just did a test.........
    Opened the keyword group of files.  Grabbed a .nef.  Went into PSCC.  Made some changes.  Did a "Save As", saved a .psd and the file did NOT appear in the set of files in LR.  Opened the entire folder of files, and the .psd is there, so it got imported back into LR.  Went back into the keyword set and the .psd does not display.  The .psd HAS the keyword on it.  Opened the folder, removed the keyword and added it again to the .psd.  Went back into the keyword set and the .psd is there...........................................
    THEN, I grabbed another .nef in the same keyword group, went to PSCC, made changes, and did a "Save As" as a .TIF.  Went back to LR and the .tif is displayed in the group just as it always has before.
    Back to PSCC and saved the same file as a .psd.  Back to LR and the .psd and .tif BOTH appear in the group. 
    Grabbed a THIRD .nef and went through the same process, did a "Save As" for the .psd and THAT .psd NOW appears in the group just fine.
    I have NO idea WHY it's working, but it didn't work prior to creating a tif, and it does work after creating a tif.  As near as I can tell, that's the only change since yesterday when it didn't work, and even after closing and reopening LR this morning, it still didn't work.  I'm reluctant to use the "since B followed A, A caused B", but it didn't work, it now works after doing a "Save As with a .tif".  Bizarre...
    Mollysnoot - I don't think so.  for the last (way too many) years, I've ALWAYS used "Save As" because I append the word "edit" on any file that's gone through the full processing in PS.  It's always worked fine.  The file created does get imported, and has the characteristics of the original.  If the original had a green label and 3 stars and was picked and had a bunch of keywords associated, the psd also had a green label, 3 stars, was picked, and had all the keywords.  And it showed up automatically in the group of files displayed by on of those keywords... 

  • Flash objects (images/buttons/etc) does not display on some PC's

    I am trying to deploy an out of the box web application called the Mid-Tier, where some forms/pages in the application have embedded flash images/buttons/icons that do not display on IE despite the fact that there is Flash installed on these PC's. Most of the PC's are XP.
    I suspect it is some of the security settings in IE. Unfortunately security options are disabled to end users so I cannot even get to see what these settings are..
    This web application works perfect on some test PC's that have default browser settings and the same flash version installed.
    The flash objects appear on these screens as white boxes instead of some control buttons and icons that should have been displayed.,. Hence these pages are non functional.
    Any hints?
    Joe

    Hello David,
    except the latest Flash Player you have also and the latest Java installed (Next Generation Java Plug-in 10.25.2 for Mozilla browsers) , check if you activate the plugins : [https://support.mozilla.org/el/kb/troubleshoot-issues-with-plugins-fix-problems#w_determining-if-a-plugin-is-the-problem Determining if a plugin is the problem], select always active.
    see also: [https://support.mozilla.org/en-US/kb/why-do-i-have-click-activate-plugins#os=win7&browser=fx23 Why do I have to click to activate plugins?]
    you said : ''One guy said you could fix it by going Tools > options > content > make sure Automatically load images is checked (but there is no such thing on that tab in my Firefox????)''
    not exist any more from 23.0 version and above (see : http://www.mozilla.org/en-US/firefox/23.0/releasenotes/) because of this : http://limi.net/checkboxes-that-kill , if you 1 (as a value) in '''permissions.default.image''' in [http://kb.mozillazine.org/About:config about:config] you are OK (checked[v]).
    also many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Image retrieved from UCM is displayed as a link rather than an image

    Hi Folks,
    Back again with another question which probably has a very simple answer but I cant see the solution, so firstly my apols!
    I am trying to get a single image from UCM and display it on a page. So far I have worked out how to query UCM for the image I want to and up to now have been able to get the page to render properly etc.
    However, the problem I have now is that the image is not displayed, rather a link to the image (I believe this is the default). The only way to get the image to display is to click the link. I have tried various things such as changing the render options, the template category and template view but without any success. Instead of creating an image tag in the browser, an '<a></a>' is created.
    Hopefully someone can tell me where I am going wrong and suggest a solution?
    Thanks
    Mo

    Hi,
    I think I am using the first method where I drag an image from UCM on to my page creating a task flow which is displayed as part of a content presenter.
    Here the code for the jspx:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <b>testing - content just after the view</b>
    <af:document id="d1">
    <af:form id="f1" usesUpload="true">
    <af:pageTemplate viewId="/oracle/webcenter/portalapp/pagetemplates/pageTemplate_globe.jspx"
    id="pt1" value="#{bindings.pt1}">
    <f:facet name="content" >
    <af:region value="#{bindings.doclibcontentpresenter1.regionModel}"
    id="r1"/>
    </f:facet>
    </af:pageTemplate>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    And the taskflow lifted from the page definition:
    <taskFlow id="doclibcontentpresenter1"
    taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="taskFlowInstId"
    value="${'4acb66c1-28fa-48b2-aac5-8a8ad424f4d2'}"/>
    <parameter id="datasourceType" value="${'dsTypeQueryExpression'}"/>
    <parameter id="datasource"
    value="${'connectionName=CanonUCM#select * from ora:t:IDC:GlobalProfile where ora:p:dDocTitle=\'1210C\''}"/>
    <parameter id="templateCategory" value="${''}"/>
    <parameter id="regionTemplate" value="${false}"/>
    <parameter id="maxResults" value="${''}"/>
    </parameters>
    </taskFlow>
    Interestingly, when I configure my taskflow like this the image displayed correcly (this is taken from a separate test):
    <taskFlow id="doclibcontentpresenter2"
    taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="taskFlowInstId"
    value="${'c784a224-4d2d-4ff9-82e0-06e5959d880d'}"/>
    <parameter id="datasourceType" value="${'dsTypeSingleNode'}"/>
    <parameter id="datasource" value="${'CanonUCM#dDocName:OCC-001201'}"/>
    <parameter id="templateCategory" value="${''}"/>
    <parameter id="templateView" value="${'MLCT'}"/>
    <parameter id="maxResults" value="${''}"/>
    </parameters>
    </taskFlow>
    But when I use <parameter id="templateCategory" value="${'MLCT'}"/> nothing is displayed at all with example one.
    Cheers,
    Mo

  • How do I turn off image/picture from Creative Zen display?

    :How do I turn off image/picture/cover art from Creative Zen display?
    I wouldn't mind it, but it's almost ALWAYS wrong! Why is that? It seems to pick a random - and I mean random - album cover every time I upload songs. WHAT makes it decide this? I have dance collection cover pics turning up for rock songs!
    If someone an help me solve this problem, I don't mind having the images show up.
    Thanks!

    >Hi,
    The album art is usually associated with an album artwork and is supplied together with the music tracks. The player will not display it if there isn't one. You might want to make sure that the album art is linked correctly to the music track.
    Refer to this article for details:
    http://support.creative.com/kb/showarticle.aspx?sid=879?

  • Images in wwv_flow_file_objects$  do not display in the shared components

    Recently I needed to re-create an APEX workspace. The schema was intact, so I just created a new APEX workspace mapped to that schema and re-imported my apps.
    All was well EXCEPT that the images and files (e.g. style sheets) previously uploaded to the database under the original workspace were missing. Looking at the wwv_flow_file_objects$ table I saw the images and files were present but their security ID did not match that of the new APEX workspace.
    I updated the security ID and the files and images now work BUT THEY DO NOT DISPLAY IN THE SHARED COMPONENT LISTINGS. My fear is that I'll try to upload an image or file by the same name and they'll stop working because there will then be two rows in wwv_flow_file_objects$ with the same file name and security ID.
    Does anyone know how to get these items to display properly in the shared component reports?

    If they were application-specific, you would need to ensure that the new flow_id value in the table matched that of the application to which the file should be associated. If not, that value should be zero.
    Scott

  • Images inside pop-ups not displaying correctly

    I am generating a CHM using RoboHelp 10. I have certain pop-ups in some topics. These pop-ups contain screen shots. After generating the CHM, when I click the pop-ups to view the screen shots, they are not displayed correctly. That is, half of the image does not appear and there are no horizontal scroll bars either to scroll. This happens for pop-ups that are appear on the left side of a topic.The images inside pop-ups that appear to the right side of a topic appear fine when clicked.

    Hi Rick,
    Thank you for the response. Alas, updating the DHTML effects doesn't help. In the project that am working, I have used hyperlinks that are marked to be displayed as auto-sizing pop-ups.
    I also tried editing the eHlpDhtm.js file as mentioned in the thread here, https://forums.adobe.com/thread/1297423#expires_in=86399993&token_type=bearer&access_token =eyJhbGciOiJSUzI1NiIsIng1dSI6I…. But that was of no avail either.
    Do you have any other insights here?
    Regards,
    Anamika
    P.S. Am using RH 10.0.1.292.

  • "From" presence not displaying in Outlook 2013

    When running the Lync 2013 client, the presence indicator of the "From" or sender does not display in Outlook 2013.  The cc, bcc & to fields all display presence properly.
    When I close the Lync 2013 client and the launch the Lync 2010 client, the sender's or "From" presence displays properly. 
    We are currently running Lync 2010 servers in our environment.
    Just wondering if anyone else has noticed this issue?

    I have certainly come across this behaviour with outlook 2013 against Exchange 2007.
    How to repro the Issue?
    Open an email in Outlook 2013 connected to Exchange
    2007 in cached Mode. Sender of the email has empty personcard. 
    With Outlook 2013, users are not able to see GAL data for the
    sender of emails,
    Work around seem to be Using online mode instead of cached mode.
    There is a outlook fix planned for this issue however unsure on the Release schedule
    Hi Prasanth.  It's now the end of May.  Outlook 2013 went RTM about six months ago and GA about four months ago and this issue is still not fixed.  Are Microsoft still working on a fix or have they given up on it and turned their back on their
    users ?  
    I just installed Office 2013 + all MS updates and am very disappointed as Outlook 2013 is functionally inferior to 2010 because of this for us.  I work for a large organisation and this would hold back Office 2013 rollout.
    -- huddie "If you're not seeking help or offering it, you shouldn't be here."

  • Image UI element is  not displayed in Abap webdynpro application

    Hi Experts,
    I need your advice on below issue.
    I have created new ABAP Webdynpro application just to
    display employee photo.
    When loading the application, I generated a dynamic URL for
    a image in webdynpro application path in cache to map to Image UI Element. It
    is working well in DEV and QA environment. But it is not displaying when loaded
    in PRD system.
    Please suggest where to check the cache properties in system
    in order to resolve this issue.
    The user can access the application path, is there any chance for security issue in the same path?
    I suspect the URL is cleared before user access it, can it be controlled via any config?
    Looking forward for your valuable inputs.
    Thanks,
    Swetha

    HI Swetha,
    Maybe the image is not present in MIME repository for the PRD system.
    Please check.
    Regards,
    Hancila

  • KM Repository images,and XML Forms not displaying.

    Hello All,
    I am currently running NW04 SPS14 Portal with KM & Collaboration.
    However, the icons in the Content Management>> Explorer>> Documents repository are not displaying. Instead a little while box, with a red x sign appears in place of the images.
    When I launch the XML Forms builder, the application doesnt load.
    Also, the content developed using XML forms are no longer displaying, instead I get an error message "<b>Resource cannot be displayed with XML Resource Renderer</b>"
    I will appreciate any suggestion that will help to resolve this problem.
    Thank you.
    Regards,
    Collins.

    Hi Collins
    Have u got any solution to your problem .  Could you please share the solution to this problem
    Thanks
    Prasad

  • Guestname coming from session, not from parameter, and it's URL-encoded. Need it decoded.

    We have a hosted account for Adobe Connect. When users want to enter a room, they go to a URL like this:
    http://connectpro12345678.na5.acrobat.com/rereview/?launcher=false&guestName=John%20Smith
    This drops them into the meeting room, but the name is listed under Participants as
    John%20Smith
    rather than the desired John Smith.
    I've determined that the URL-encoded name is coming from the session, because when I deleted the BREEZESESSION cookie and hit the meeting room directly, using a URL like:
    https://connectpro12345678.adobeconnect.com/_a963369417/rereview/?launcher=false&guestName =Michael%20Van%20Kleeck
    the guest name is displayed appropriately.
    How can I force Connect to either decode the guestname or to use the guestname from the parameter, rather than the session?
    Thanks!
    -Michael

    You shouldn't be using the naX.acrobat.com URLs. These URLs are redirecting to the new adobeconnect.com URLs, which may be where you are seeing the issues. You shouldn't need to use your account ID (_a963369417) so your links should look like: http://connectpro12345678.adobeconnect.com/review/?launcher=false&guestName=John%20Smith

  • DHCP ping coming from node, not cluster IP

    I know this is a long shot, but..
    Netware 6.5sp8 clustered dhcp service is properly loaded and bound to the
    cluster IP, but it appears that the pings (to check if IP's are already
    used) are coming from the cluster node IP rather than the clustered DHCP IP.
    Any ideas why this would be?

    I think maybe the Netware attribute is the DNIP:ServerIPAddress, which
    appears to be set when dhcpsrvr is loaded by the cluster script. The
    problem is that, even though the cluster script is specifying the cluster
    IP, the DNIP:ServerIPAddress is being recorded as the node address, ugh.
    <[email protected]> wrote in message
    news:6DMOo.8281$[email protected]..
    >I think what I may need is the dhcp-server-identifier option discussed
    >here:
    > http://forums.novell.com/novell-prod...ondary-ip.html
    >
    > But I'm not sure if it's even possible to add this option to a Netware
    > dhcp server, to test it.
    >
    > <[email protected]> wrote in message
    > news:guMOo.8274$[email protected]..
    >>I know this is a long shot, but..
    >> Netware 6.5sp8 clustered dhcp service is properly loaded and bound to the
    >> cluster IP, but it appears that the pings (to check if IP's are already
    >> used) are coming from the cluster node IP rather than the clustered DHCP
    >> IP. Any ideas why this would be?
    >>
    >
    >

  • Tiffs from camera not displaying preview

    My Panasonic DMC-FZ3 camera takes each photo as both a tiff and a jpeg (it uses the jpeg for display on its built-in lcd). The Finder and Apple apps are having a problem with the tiffs (the jpegs are fine). The finder does not display a preview, and the creation date is blank (could this be the problem?). Any attempt to open the files in Preview or import them into iPhoto gives me an error message saying that the files are either unsupported or corrupted. When I used the camera in October there was no problem with the tiffs created by this camera.
    The files open fine in Photoshop, Graphic Converter, several other graphics apps, and even Camino and Firefox. If I edit the files and re-save in one of these other programs, the files will then display a preview, open in Preview, and import into iPhoto, but I shouldn't have to do this time consuming intermediate step.
    I do not believe this is a problem with the camera. I pulled out an old SD card with photos over 1 year old that had imported fine last November, but I got the error message when trying to import them this time.
    I searched these forums and found others with a similar problem, but none of the advice in those threads worked for my issue. I have tried changing the file name, repairing permissions, changing ownership on the library, and running the daily, weekly and monthly unix maintenance scripts. I even reinstalled iPhoto 5.0.4, but no luck.
    I think the problem must be deeper than that, because Preview and Safari also refuse to open the tiffs. With that in mind, I ran the 10.4.3 combo updater, but still no go.
    Any suggestions?
    PB G4 12 1GHz DVI   Mac OS X (10.3.7)  

    My camera doesn't do RAW, just jpeg and tiff.
    I doubt the files are too large. The tiffs are about 8.5mb each, not overly large at all. The 16 bit question doesn't explain why the OS, Preview, and iPhoto had no problems just 4 months ago.
    Another poster here traced the problem to OS 10.4.3. He thinks the .4.3 update broke something in the tiff handling ability. I wonder if there is an older library component I could import that would fix this?

Maybe you are looking for