Simple M'Cast issue 2504

Hi,
I have a simple multicast setup that I can't get working. I have a Cisco WLC 2504 on version 7.4.110 (tried with 7.4.100) with one AP connected (3502). I have two SSIDs (psk limitation on apple tv) that point to the same interface with a default mdns profile attached to it. What I can not understand is why my airplay icon wont light up on my mac osx. When I connect through my corporate network (embedded LWAP on an dmvpn spoke) I can see my corporate apple tv just fine.
I ran a packet capture and debug mdns all and I see the reply with my apple-tv sent back to the my laptop, both mdns replys look fine for the apple tv service. I am a little confused at to what is the issue. The clients default gateway for both the macbook point the svi on my vlan, and just for grins I have ip pim sparse-dense mode configured.
I also tested with an ipad and i get the same results.
The corporate controller I tie back into is a 5508 that is on version 7.4.100
If there are any debugs I can provide let me know, I can clean the screenshots if anyone wants to see the packet capture. I wanted to ask to see if there is a simple setting I may be missing.
Tarik Admani

Yes, Since iOS 6.0.x onwards you required this AirTunes service in order to get Apple TV working with those.
Below post may help you as well
http://mrncciew.com/2013/03/27/configuring-mdns-on-wlc-7-4/
HTH
Rasika
**** Pls rate all useful responses ****

Similar Messages

  • Difference between narrow() method usage and simple class cast for EJB

    Hi,
    I have a very simple question:
    what is the difference between PortableRemoteObject.narrow(fromObj,
    toClass) method usage and simple class cast for EJB.
    For example,
    1)
    EJBObject ejbObj;
    // somewhere in the code the home.create() called for bean ...
    ABean a = (ABean)PortableRemoteObject.narrow(ejbObj,ABean.class);
    OR
    2)
    EJBObject bean;
    // somewhere in the code the home.create() called for bean ...
    ABean a = (ABean)ejbObj;
    Which one is better?
    P.S. I'm working with WL 6.1 sp2
    Any help would be appreciated.
    Thanks in advance,
    Orly

    [email protected] (Orly) writes:
    Hi,
    I have a very simple question:
    what is the difference between PortableRemoteObject.narrow(fromObj,
    toClass) method usage and simple class cast for EJB.
    For example,
    1)
    EJBObject ejbObj;
    // somewhere in the code the home.create() called for bean ...
    ABean a = (ABean)PortableRemoteObject.narrow(ejbObj,ABean.class);
    OR
    2)
    EJBObject bean;
    // somewhere in the code the home.create() called for bean ...
    ABean a = (ABean)ejbObj;
    Which one is better?(1) is mandated by the spec. It is required because CORBA systems may
    not have sufficient type information available to do a simple case.
    P.S. I'm working with WL 6.1 sp2 You should always use PRO.narrow()
    andy

  • Type casting issue

    Hello All,
    I've a Type casting issue. Could yu please help me resolving it.
    I'm trying to initialize the variable v with sysdate ('mon-dd-yy:hh:mi:ss') but couldn't initialize. I was able to do that in the body but is it not possible to do it in the declaration part?
    I was able to do like this
    DECLARE
      v varchar2(25);
    BEGIN
      SELECT to_char(sysdate,'mon-dd-yy:hh:mi:ss') INTO v FROM dual;
      DBMS_OUTPUT.PUT_LINE(v);
    END;
    Output looks like this: jan-19-12:04:32:11But how to do it in delaration part?
    DECLARE
      v varchar2(25);
      v := to_date(sysdate, 'mon-dd-...') ? ? ?
    BEGIN
        DBMS_OUTPUT.PUT_LINE(v);
    END;Thx
    Shank.

    You don't need to cast a sysdate to a date. It already is a date.
    SQL> alter session set nls_date_format = 'mon-dd-yy:hh:mi:ss';
    Session altered.
    SQL>
    SQL> DECLARE
      2    v varchar2(25);
      3    v_date date:= sysdate;
      4  BEGIN
      5      DBMS_OUTPUT.PUT_LINE(v_date);
      6  END;
      7  /
    jan-19-12:04:46:40
    PL/SQL procedure successfully completed.Hope this helps.

  • Casting issue, help someone.

    I'm having a casting issue taking an ArrayList of String[] objs converting to a single String array, separated... Anyone with clues?
    String[] allDataString = new String[mCapacity];
         for (int i=(mData.size()-1); i>0; i--)
         allDataString[i] = (String)mData.get(i);               
    PELEEEEZE HEEELLP. Thanks.

    String[] allDataString = new String[mCapacity];
    for (int i=(mData.size()-1); i>0; i--)
    allDataString = (String)mData.get(i);
    }

  • Simple cfc mapping issue = I am a muppet

    Right, there's something blissfully simple that I'm just missing here, but I've had by C# hat on for weeks and now have had to come back to CF and I've gotten stuck on a simple issue.
    Yes, I've trawled Google and the search on here but I just can't spend any more time on this, so thought I'd post on here so someone can abuse my noobishness.
    All I want is a simple mapping to a cfc directory for creating components. In order to avoid issues with mappings coinciding with physical directories, I've made them a little more unique but still nothing. My folder structure is currently thus (simplified):
    /htdocs
      /badgers
        Something.cfc
      /quotenew
        index.cfm
    What I want to do is to create an Application-level mapping (ie not in CF admin) to the cfc directory. My Application.cfc has the following lines at the top:
    THIS.Mappings                = {} ;
    THIS.Mappings["horses"] = 'badgers' ;
    Then in /quotenew/index.cfm I have the following line:
    <cfset a = createObject("component","horses.Something") />
    But I'm getting the dreaded "Could not find the ColdFusion Component or Interface horses.Something." error.
    I've tried everything I can think of but just can't figure out whether I've done something stupid or whether it would never work in the first place but as I said, I'm well out of practise. If anyone can point me in the right direction, I'd be most appreciative.
    O.

    Ah, it seems I'd done two things wrong.
    Firstly, I needed a forward slash at the start of the mapping, which I believe is what Adam was getting at.
    Secondly when doing mappings it seems you can only do them to physical directories, not CFC paths. At first I thought this was odd (and it's caught me out before) as if I can do createObject("system.cfc.classes.MyClass") then why can't I have a mapping to "system.cfc.classes"?
    I can only assume this is to keep mappings generic - they can be used for physical directories and component paths so I guess the physical path is required.
    All sorted now with this:
    THIS.Mappings["/horses"] = 'g:\websites\mywebsite\htdocs\badgers' ;
    Not quite as clean as I would have liked but still, if it's what needs doing.
    Cheers Adam
    O.

  • Out parameter cast issue - C#

    Hi all,
    Having an issue with an older application I am supporting. The data access is CSLA .Net and there is a line that updates a newly created entity id with the value from an out parameter. This is defined in the database as NUMERIC(10,0). The code looks like this:
    OracleParameter opID = new OracleParameter("P_ID", OracleDbType.Int64);
    //... do some stuff and save the new entity to the db
    _id = (long)opID.Value;
    This used to be fine on windows XP with version 9.x of ODP .Net. On a Windows 7 box with the latest version the cast fails and the return data type Decimal. This looks to me like a bug/weird behavior in the new version. Is there a workaround or something I can do to fix the issue without, preferably without changing my code?
    Thanks!
    Matei
    Edited by: Matei on Apr 29, 2013 4:05 PM

    Yes for sure, thanks for the reply. Here are more details on the table schema and the proc that's being called. It's part of a package that does user related CRUD operations.
    ID     NUMBER(10,0)     No
    USERNAME     VARCHAR2(20 BYTE)     No
    PASSWORD     VARCHAR2(20 BYTE)
    FIRST_NAME     VARCHAR2(40 BYTE)
    LAST_NAME     VARCHAR2(40 BYTE)
    PROCEDURE insert_by_pk (
    p_id OUT fact.users.ID%TYPE,
    p_first_name IN fact.users.first_name%TYPE,
    p_last_name IN fact.users.last_name%TYPE,
    p_home_phone IN fact.users.home_phone%TYPE,
    p_business_phone IN fact.users.business_phone%TYPE,
    p_mobile_phone IN fact.users.mobile_phone%TYPE,
    p_fax IN fact.users.fax%TYPE,
    p_email IN fact.users.email%TYPE,
    p_internal IN fact.users.INTERNAL%TYPE,
    p_username IN fact.users.username%TYPE,
    p_password IN fact.users.password%TYPE,
    p_home_ext IN fact.users.home_ext%TYPE,
    p_business_ext IN fact.users.business_ext%TYPE,
    p_active          IN     fact.users.active%TYPE
    AS
    BEGIN
    INSERT INTO fact.users
    (ID, first_name,
    last_name, home_phone, business_phone,
    mobile_phone, fax, email, internal,
    username, password, home_ext, business_ext, active,
                        CREATE_USER,CREATE_DATE
    VALUES (FACT.users_seq.NEXTVAL, p_first_name,
    p_last_name, p_home_phone, p_business_phone,
    p_mobile_phone, p_fax, p_email, p_internal,
    LOWER(p_username), p_password, p_home_ext, p_business_ext, p_active,
                        (select sys_context('userenv','os_user') FROM DUAL),SYSDATE
    SELECT FACT.users_seq.CURRVAL
    INTO p_id
    FROM DUAL;
    END;
    And for completeness the C# code. The line that fails is the second to last one where the cast happens: _id = (long)opID.Value;
    // we're not being deleted, so insert or update
                                  OracleParameter opID = new OracleParameter("P_ID", OracleDbType.Int64);
                                  if(this.IsNew)
                                       // we're new so insert
                                       cm.CommandText = "FACT.users_pkg.insert_by_pk";
                                       opID.Direction = ParameterDirection.Output;
                                       cm.Parameters.Add(opID);
                                  else
                                       // we're not new, so update
                                       cm.CommandText = "FACT.users_pkg.update_by_pk";
                                       opID.Direction = ParameterDirection.Input;
                                       cm.Parameters.Add("p_id", _id);
                                  cm.Parameters.Add("p_first_name", _firstName);
                                  cm.Parameters.Add("p_last_name", _lastName);
                                  cm.Parameters.Add("p_home_phone", _homePhone);
                                  cm.Parameters.Add("p_bus_phone", _busPhone);
                                  cm.Parameters.Add("p_mobile_phone", _mobilePhone);
                                  cm.Parameters.Add("p_fax", _fax);
                                  cm.Parameters.Add("p_email", _email);
                                  cm.Parameters.Add("p_internal", _internal ? "Y" : "N");
                                  cm.Parameters.Add("p_username", _username.ToLower());
                                  cm.Parameters.Add("p_password", "password");
                                  cm.Parameters.Add("p_home_ext", _homePhoneExt);
                                  cm.Parameters.Add("p_business_ext", _busPhoneExt);
                                  cm.Parameters.Add("p_active", _active ? "Y" : "N");
                                  cm.ExecuteNonQuery();
                                  if(this.IsNew)
                                       // update ID with the oracle generated sequence
                                       _id = (long)opID.Value;
    Edited by: 1002325 on Apr 25, 2013 7:56 AM
    Edited by: 1002325 on Apr 25, 2013 7:57 AM

  • IPage - Casting Issue - Class Not Found

    EP6SP14...Encountering a funny issue...
    I am successfully compling the following code. All JAR are in place and NWDS is detecting the class and showing the methods properly. LookupObject() is able to find the object.
    import com.sap.portal.pcm.page.IPage;
    IPage page = (IPage) lookUpObject request,PcmConstants.ASPECT_SEMANTICS,pageUrl);
    lookUpObject() returns - com.sap.portal.pcm.page.admin.AttributeSetPage@81e75c
    but during Casting, it gives error...
    Caused by: java.lang.NoClassDefFoundError: com/sap/portal/pcm/page/IPage
    Any ideas what's missing???

    Hi Gulshan,
    For IPage (and IiView, ILayout, ...) you need the following reference:
    <property name="ServicesReference" value="com.sap.portal.ivs.api_iview"/>
    Hope this helps.
    Daniel

  • Simple question (Trace issue) Access of undefined property

    Having a strange issue with my new Flash Builder and the trace command. Anyone seen this before and why?
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <fx:Declarations>
               <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    <fx:Script>
         <![CDATA[
              var myString:String = "Help";
              trace(myString);
              //Error 1120: Access of undefined property myString.
         ]]>
    </fx:Script>
    </s:Application>

    your trace command isn't in a function
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"          
                   xmlns:s="library://ns.adobe.com/flex/spark"          
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" applicationComplete="doThis()">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                private var myString:String = "Help";
                private function doThis():void
                    trace(myString);
            ]]>
        </fx:Script>
    </s:Application>

  • Simple Router Config Issues

    Forgive me, I have configured several routers on the inside but never a default gateway. It seems simple enough but I am stuck.
    I can ping the Gateway from the inside. I can ping the inside from the gateway. I can ping the outside from the gateway, but I cannot ping the out side from the inside. (Or get to the DNS server assuming they have ICMP turned off) Heres my config (IPS have been changed to protect the innocent:) )
    My guess is something is screwed up with NAT
    Configuring g
    !b
    boot-start-ma
    no
    ip subnet-zeroered, becomes
    no ip routinghe configurat
    !n
    !e
    no ip cef
    interface Ethernet0er enable secret: b
    ip address 63.223.13.115 255.255.255.128The enable password is used when you do n
    ip access-group 20 out
    [OK]
    ip nat outside
    *Mar
    enable
    no ip route-cacheith some older sof
    half-duplexs, and Trans
    !i
    ip nat inside source list 20 pool poolone
    ip nat inside source static 192.168.10.5 63.223.13.121
    ip classless
    ip route 0.0.0.0 0.0.0.0 63.223.13.1
    no ip http server
    access-list 20 permit 192.168.0.0 0.0.255.255
    banner login ^Cc
    ###### WARNING ######
    AUTHORIZED ACCESS ONLY^C
    line con 0
    password 7 03005A1C011C70
    login
    line aux 0
    line vty 0 4
    password 7 06020E364B5D58
    login
    no scheduler allocate
    end
    ZaxT1#
    Pro Inside global Inside local Outside local Outside global
    --- 63.223.13.121 192.168.10.5 --- ---
    ZaxT1#

    I do not know how you generated this config listing but it seems to be quite garbled. So I am not sure how accurately we can evaluate it.
    But one things that does appear to be there is that you are using access list 20 to control what addresses get translated by NAT and it permits 192.168.0.0/16. So that any address in 190.168.0.0 will get translated. However the same access list is applied outbound on Ethernet 0. So Ethernet 0 will only permit outbound traffic whose source address is 190.168.x.x. Except all these addresses have been translated so that the source address is no longer 192.168.x.x. This would prevent any traffic going out through Ethernet 0.
    Do not use the same access list to control translation and to control outbound traffic on the interface.
    HTH
    Rick

  • Help with simple addition formcalc issue

    I know just enough to be dangerous. I'm trying to get a row in a table to add up and appear in a separate subtotal box. The error I get is "accessor amount [*] unknown." I am working from the invoice template, but I had to refigure the box after some issues. I am using the formula that appeared in the previous subtotal box, but I know I'm not referencing the table row properly.
    Each amount box has been given a name (amount1, amount 2, etc) in the binding box and the subtotal box formula I used (throught formcalc) is form1.#subform[0].Subtotal::calculate - (FormCalc, client)
    Sum(Table1.Row1-15.amount[*])
    and
    Sum(amount1, amount2, amount3, amount4...) (listing all the amount names up to 15)
    I also tried Sum(amount[*]) as the previous template did and it wouldn't work. The Subtotal box grouping is straight from the Invoice Template, not created from the table. I know I am missing something pretty basic with heirarchy, but I don't know enough about scripting to figure this out. Any help (and explanation of what I did wrong) would be greatly appreciated. Thanks!

    The accessor [*] is only used for objects with the same name, that occur once or more.
    If you have 5 fields "Amount" in one row named "Row1" then the reference syntax is
    Table1.Row1.Amout[0], Table1.Row1.Amout[1] ... Table1.Row1.Amout[4].
    To summarize those fields you use: Sum(Table1.Row1.Amout[*])
    If you have 5 rows named "Row1" and each row has one field "Amount" then the reference syntax is:
    Table1.Row1[0].Amout, Table1.Row1[1].Amout ... Table1.Row1[4].Amout
    To summarize those fields you use: Sum(Table1.Row1[*].Amout)
    Both examples only work if the object that is repeated has always the same name!

  • Simple shell script issue

    Hi,
    I have an issue with following shell script:
    #!/bin/sh
    env | while read VAR; do
    RIGA=$RIGA"\""$VAR"\";"
    done
    echo $VAR
    echo $RIGA
    exit 0
    Why the last echo commands (echo $VAR and echo $RIGA) don't give me any result? Why $VAR and $RIGA are empty?

    From what I understand, anything to the right of a pipe is run in a sub-process in non POSIX shells, which runs in it's own environment. Variables changed inside ta sub-shell are not changed at the parent process.
    Perhaps using ksh instead of bourne shell will work, or you could try input redirection rather than using pipe command. e.g.:
    while read VAR; do
    RIGA=$RIGA"\""$VAR"\";"
    done < $(env)
    echo $VAR
    echo $RIGA
    exit 0
    Edited by: Dude on Dec 15, 2010 6:11 AM

  • Private inheritance and dynamic cast issue

    Hello. I am hitting a problem combining private inheritance and dynamic casting, using Sun Studio 12 (Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25):
    I have three related classes. Let's call them:
    Handle: The basic Handle class.
    DspHandle. Handle implementation, able to add itself to a Receiver.
    IODriver. Implemented in terms of DspHandle, It is the actually instantiated object.
    Consider the following code. Sorry, but I've tried my best trying to minimize it:
    #include <iostream>
    using namespace std;
    class Handle {
    public:
    virtual ~Handle() {};
    class Receiver {
    public:
    void add(Handle &a);
    class DspHandle : public Handle {
    public:
    virtual ~DspHandle() {};
    void run(Receiver &recv);
    class IODriver : private DspHandle {
    public:
    void start(Receiver &recv) {
    DspHandle::run(recv);
    void DspHandle::run(Receiver &recv) {
    cout << "Calling Receiver::add(" << typeid(this).name() << ")" << endl;
    recv.add(*this);
    void Receiver::add(Handle &a) {
    cout << "Called Receiver::add(" << typeid(&a).name() << ")" << endl;
    DspHandle d = dynamic_cast<DspHandle>(&a);
    cout << "a= " << &a << ", d=" << d << endl;
    int main(int argc, char *argv[]) {
    Receiver recv;
    IODriver c;
    c.start(recv);
    Compiling and running this code with Sun Studio 12:
    CC -o test test.cc
    ./test
    Calling Receiver::add(DspHandle*)
    Called Receiver::add(Handle*)
    a= ffbffd54, d=0
    The dynamic cast in Receiver::add, trying to downcast Handle to DspHandle, fails.
    This same code works, for example with GNU g++ 4.1.3:
    Calling Receiver::add(P9DspHandle)
    Called Receiver::add(P6Handle)
    a= 0xbfe9c898, d=0xbfe9c898
    What is the reason of the dynamic_cast being rejected. Since the pointer is actually a DspHandle* , even when it is part of a private class, shouldn't it be downcastable to DspHandle? I think that perhaps the pointer should be rejected by Receiver::add(Handle &a) as it could be seen as a IODriver, that can't be converted to its private base. But since it's accepted, shouldn't the dynamic_cast work?
    Changing the inheritance of IODriver to public instead of private avoids the error, but it's not an option in my design.
    So, questions: Why is it failing? Any workarround?
    Best wishes.
    Manuel.

    Thanks for your fast answer.
    But could you please provide a deeper answer? I would like to know where do you think the problem is. Shouldn't the reference be accepted by Receiver:add, since it can only be seen as a Handle using its private base, or should the dynamic_cast work?
    Aren't we actually trying to cast to a private base? However, casting to private bases directly uses to be rejected in compile time. Should the *this pointer passed from the DspHandle class to Receiver be considered a pure DspHandle or a IODriver?
    Thanks a lot.

  • Plz help simple list formatttin issue

    hi all
    i have a simple list in which i have a header
    like
    profit       acknowledgement      quantity          data creation          data scheduling
    this header is acceding my page i am not able to take the print on a single page
    i want to convert it into
    profit       acknowle                    quantity          data                      data
                     dgment                                        creation                  scheduling
    plz tel me how to do it
    thanx in advance

    hi,
    try this
    hope it will b helpfull.
    FORM build_eve .
      DATA : wa_eve TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = t_eve
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE t_eve WITH KEY name =  slis_ev_top_of_page INTO wa_eve.
      IF sy-subrc = 0.
        MOVE 'TOP_OF_PAGE' TO wa_eve-form.
        MODIFY t_eve FROM wa_eve INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " build_eve
    FORM header_build  USING  p_gt_list_top_of_page TYPE slis_t_listheader.
      DATA : year(4) TYPE c,
             mon(2) TYPE c,
             day(2) TYPE c,
             date(30) TYPE c.
      year = budat-low+0(4).
      mon = budat-low+4(2).
      day = budat-low+6(2).
      CONCATENATE day  mon  year INTO date SEPARATED BY '.'.
      CONCATENATE 'From' date 'To' INTO date SEPARATED BY space.
      IF budat-high IS INITIAL.
        budat-high = budat-low.
      ENDIF.
      year = budat-high+0(4).
      mon = budat-high+4(2).
      day = budat-high+6(2).
      CONCATENATE date  day INTO date SEPARATED BY space.
      CONCATENATE date  mon year INTO date SEPARATED BY '.'.
      SELECT SINGLE butxt INTO comp_nm FROM t001 WHERE bukrs = bukrs.
      CLEAR st_line.
      st_line-typ   = 'H'.
      st_line-info  = comp_nm.
      APPEND st_line TO p_gt_list_top_of_page.
      CLEAR st_line.
      st_line-typ   = 'S'.  "H-HEADER,S-SELECTION,A-APPLICATION
      st_line-info  = 'CREDIT NOTE REGISTER'.
      APPEND  st_line TO p_gt_list_top_of_page.
      IF budat IS NOT INITIAL.
        CLEAR st_line.
        st_line-typ   = 'S'.  "H-HEADER,S-SELECTION,A-APPLICATION
        st_line-info  = date.
        APPEND  st_line TO p_gt_list_top_of_page.
      ENDIF.
    ENDFORM.                    " HEADER_BUILD
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_list_top_of_page.
    ENDFORM.                    "TOP_OF_PAGE

  • Simple flash export issue

    hello
    I'm trying to export a flash video using Adobe media encoder from Premier Pro, but when I do I get this error " there are no clips to build".
    I have another file that I am able to export and it does not have this problem.
    They are Windows Media files and play in Premier fine. I am using Premier Pro CS3.
    Lastly, I'm not a video expert but I really need to get these up on the web for work, there is a lot of pressure and I need to get it done.
    Regards,
    Tom

    fixed the exporting issue.

  • Simple 5x7 Printing issue

    I have an image I took and no matter what I do I can not get the thing to print a full 5x7 image. I even went in and resized the image itself to be exactly 5x7 and its printing an image closer to 4x6 no matter what printer selections I make. What gives?
    Is it possible to get Aperture to print correctly?
    Thanks,
    glenn

    Glenn,
    Having recently purchased Aperture, I have been pursuing a similar question that I think is related to your experience. I can find no way to invoke Page Setup functions from within Aperture. I think if you use another application to invoke Page Setup, and then change the default at that time to the paper size you wish to use, you will have more success. I was having the same issue with trying to print an 8 X 10, and having it print 4 X 6 instead -- my defaults for most use of this particular printer were previously set to use 4 X 6. Changed the defaults for Page Setup (from within Photoshop CS3, btw) and had more success. But I have some questions remaining.
    And the basic question that remains -- how or where to invoke Page Setup settings? If the settings in the Print dialogue are meant to override those previously set somewhere in Page Setup, then in Leopard at least, it is not working.
    Ernie

Maybe you are looking for

  • Reversal credit memo

    Hi! For type  CR - credit memo in VOFA Negative posting = B. So, when I create a credit invoice form (CR), FI document created with indicator "Negative posting". For reversal credit memo (CRS - reversal credit memo) in VOFA Negative posting = empty.

  • How do you get street view back on the iPhone 6.0

    i want to know how to get the street view back onto my maps

  • WiFi looses connection when idling

    Hi, I've updated to Mavericks and since then I've following issue. If my network connection idles for a certain amount of time, Mavericks decides to drop the connection. The WiFi smybol gets greyed out and I have to maually reconnect to my network. F

  • Photos not rotated in iCloud Photostream

    Using iPhoto 11 v.9.5 under Mavericks OS X 9. I rotate photos in iPhoto 11 and they look fine locally. However, in the iCloud the photos remain unrotated, whether looked at with iPhoto or through AppleTV. Any ideas how to correct this?

  • E-mac won't boot-up

    Please help this novice! We turned on our computor today and got a blank, blue screen. No booting up. Tried disconnecting and reconnecting to no avail. Any ideas and much thanks, maureen