10.6/10.5 Server and 10.7 Clients

Just wondering if there any known issues with 10.5 and 10.6 servers and 10.7 clients. Our clients are all managed with netowrk homes and some with mobile homes. We're getting a bunch of new Macs but we presently have no budget/plans to upgrade our servers.
Thanks,
Jeff

I don't know of anything nasty off-hand, but then I also don't have 10.5 around (and 10.8 is in-bound), and it's a good bet that the server configurations I work with will differ from what you're running.  In other words, "try it."
On your quest for issues, I'd dig through the archives of the Mac Enterprise mailing list and see what turns up. 
There's a veritable goldmine of server-related information available in the archives over there.    If you're operating OS X Server, that list the largest-volume resource for server-related discussions I've encountered, and the most technically-detailed discussions.

Similar Messages

  • ASA 5505 as a SSL VPN Server and Easy VPN Client at the same time?

    Is it possible to configure and operate the ASA 5505 as a SSL VPN server and Easy VPN Client at the same time? We would like to configure a few of these without having to purchase additional ASA 5505 and use a 2 device method (1 SSL VPN Server and 1 Easy VPN Client). Thanks in advance.

    I don't think it is possible. Following links may help you
    http://www.cisco.com/en/US/products/ps6120/products_configuration_guide_chapter09186a008068dabe.html
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a008071c428.shtml

  • Connection between  oracle 9i server and oracle 9i client

    hi there,
    i have installed both oracle 9i server and oracle 9i client in my system.how can i connect these two to have connection between these server and client?
    Because i was using only 9i server for creating database and for other purposes.i have not used 9i client yet.
    Please write me the answer.
    Thanks in advance.

    Hi Balu,
    If you have the Oracle 9i Client, you can just edit your TNSNAMES.ora file of your client to have a TNS Entry for your new Database & try connecting it. You just need to try TNSPING & ensure that you can reach the Listener.
    Are you facing any specific problems ?
    Regards,
    Sandeep

  • Now that I have the Media server and 3 media client boxes, all

    Now that I have the Media server and 3 media client boxes, all the individual lists of schedules are gone.
    Is there any way to keep the seperate lists on the client boxes?
    Solved!
    Go to Solution.

    No because the VMS is where are all the recordings are done.
    Client boxes use the tuners of the VMS.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • Windows 2008 Server and Windows 8 clients

    Hey Guys,
    I have had this problem for sometime now and really need a solution. I have Windows 2008 Enterprise Server running about 200+ terminal services clients. All Windows XP clients are fine, Windows 7 clients have issues when they get an updated version of
    remote desktop client(to solve the issue we simply rollback the update), Windows 8 clients cannot connect and use out remote app. The issue stems from the newer version of remote desktop client (on windows 7 and embedded in windows 8) cannot connect to our
    terminal server and generates an error and immediately disconnects. The error says "
    Your computer can't connect to the remote computer because an error occurred on the remote computer that you want
    to connect to
    So my questions are, how can i update my Windows 2008 Terminal server version to support these clients, or do u have migrate to Windows 2012? Or is there a solution to my current problem which will allow my client to connect and use the remoteapps?

    Hi,
    Thank you for posting in Windows Server Forum.
    Please follow the below steps and verify result.
    LAN manager authentication level settings (Local security policy->Local Policies->Security Options->Network Security: LAN Manager Authentication level). 
    Try to change it to "Send NTLMv2 response only" 
    Snap:
    If still face the issue please install this Hotfix.
    RDS client computer cannot connect to the RDS server by using a remote desktop connection in Windows
    http://support.microsoft.com/kb/2752618/
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Problem in video capture at server and fetching by client

    hi
    I am doing final year project it has server at one end which is connected to video capturing device-webcam in my case
    and the client is mobile.
    I want the live video captured be transmitted to the mobile client on fetch video request.
    I have tried implementing it but facing some problems so would like to know the reason behing and also ask if the way i am following is correct or not
    At server end i tried to extract frame as follows:
    //the datasource handler class is as follows
          * Inner class MyDSHandler takes the Output DataSource form the
          * Processor and extracts the frame from it.
          * It implements the BufferTransferHandler so that it can receive
          * Buffer from the PushBufferStream.
         public class MyDSHandler implements BufferTransferHandler
              DataSource source;
              PullBufferStream pullStrms[] = null;
              PushBufferStream pushStrms[] = null;
              //Buffer readBuffer = null;
              int i = 1, j = 1;
              * Sets the media source this MediaHandler should use to obtain content.
              * @param source the DataSource from the Processor
              private void setSource(DataSource source) throws IncompatibleSourceException
                   // Different types of DataSources need to handled differently.
                   if(source instanceof PushBufferDataSource)
                        pushStrms = ((PushBufferDataSource) source).getStreams();
                        // Set the transfer handler to receive pushed data from the push DataSource.
                        //pushStrms[0] since we need to handle only the video stream
                        pushStrms[0].setTransferHandler(this);
                   else if(source instanceof PullBufferDataSource)
                        System.out.println("PullBufferDataSource!");
                        // This handler only handles push buffer datasource.
                        throw new IncompatibleSourceException();
                   this.source = source;
                   readBuffer = new Buffer();
              * This will get called when there's data pushed from the PushBufferDataSource.
              * @param stream the PushBufferStream obtained from the DataSource
              public void transferData(PushBufferStream stream)
                   try
                        stream.read(readBuffer);
                   catch(Exception e)
                        System.out.println(e);
                        return;
                   if((readBuffer == null) || (readBuffer.getLength() == 0))
                        System.out.println("Null or Empty buffer encountered..");
                        return;
                   // Just in case contents of data object changed by some other thread
                   Buffer inBuffer = (Buffer)(readBuffer.clone());
                   // Check for end of stream
                   if(readBuffer.isEOM())
                        System.out.println("End of stream");
                        return;
                    * we can apply frame control here by deciding whether to process
                    * the frame or not
                   processBuffer2(inBuffer);
              public void start()
                   try{source.start();}catch(Exception e){System.out.println(e);}
              public void stop()
                   try{source.stop();}catch(Exception e){System.out.println(e);}
              public void close(){stop();}
              public Object[] getControls()
                   return new Object[0];
              public Object getControl(String name)
                   return null;
               * Processes the Buffer , i.e converts it into an image and
               * transfer its content via Socket
               * @param inBuffer the buffer received from the PushBufferStream
              public void processBuffer2(Buffer inBuffer)
              {         //extracting frame from video and writing image on stream
                   //RGBFormat format  = (RGBFormat)inBuffer.getFormat();
                   System.out.println(inBuffer.getLength());
                   YUVFormat format = (YUVFormat)inBuffer.getFormat();
                   Image img = (new BufferToImage(format)).createImage(inBuffer);
                   BufferedImage bimg = (BufferedImage)img;
                   if(bimg != null)
                        try
                              * encodes the image in the JPEG format and writes it to
                              * the socket
                             ImageIO.write(bimg, "jpg", clientOut);
                             System.out.println("Data Written to stream");
                             logArea.append("\n Image Data Written to Stream");
                        catch(Exception e)
                             System.out.println(e);
         }and how can one control the frame rate of the video like if i require the speed of 7 frames per second and the resolution
    also
    i am trying to convert the frame fetched to jpeg and at client , tried making use of jpeg image property by detecting the img start and end by reading the image data in bytes from the inputstream (0xffd8 as strt of image and 0xffd9 as end)
      byte[] img_data = new byte[4*1024];//buffer to read and hold one image info
    try
                    while((data = dis.read()) != -1)
                        //System.out.print(Integer.toHexString(data));
                        if(data == 0xFF)
                            fm = true;
                        else if(fm)
                            if(data == 0xD8)
                                //start of the image
                                System.out.print("Start of image found  : ");
                                //ctr should be zero at this stage here
                                //writing to byte[]
                                img_data[ctr] = (byte)0xFF;
                                ctr++;
                                img_data[ctr] = (byte)0xD8;
                                ctr++;
                            else if(data == 0xD9)
                                //end of image
                                //writing to byte[]
                                img_data[ctr] = (byte)0xFF;
                                ctr++;
                                img_data[ctr] = (byte)0xD9;
                                ctr++;
                                // consrtucting image from the byte[]
                                img = Image.createImage(img_data, 0, ctr-1);
                                if(img != null)
                                    repaint();
                                    System.out.println("Image drawn");
                                else
                                    System.out.println("Image is null");
                                    /*try
                                        Thread.sleep(500);
                                    catch(Exception e)
                                ctr = 0;  // ctr back to zero for the new image
                                //break;
                            else
                                //writing to byte[]
                                img_data[ctr] = (byte)0xFF;
                                ctr++;
                                img_data[ctr] = (byte)data;
                                ctr++;
                            fm = false;
                catch(Exception e){}
        }The problem i am facing is the client gets the black image just for a fraction of second and then the application hangs and no video is visible.
    I have very little time left to complete this project as deadline is very close
    please would be very grateful if guided timely.

    equator07 wrote:
    Thanks for the reply.
    i saw in recent posts some protocols had been made use of like rtp i am not making use of any of these
    will it effect?I can see that you're not using RTP... and "will it effect?" doesn't make any sense AT ALL...
    is the way i have made use of jmf correct?There's no correct way to use an API... but no, you're not doing things in even remotely a "tradional" way...
    *like the way i am extracting the frame,
    and how can i set the resolution of the video taken by cam and adjust the frame rate?*I have no idea if your code works. I assume that you would have tested it, and proved it to either be producing a valid JPEG image or not. If you've not done that testing, then you obviously need to.
    because i want live video to be seen at client end i am seriously confused and the progress as just come to an hault at this point and am in real need of guidance.You should probably be using RTP and the tradional way of using JMF then...
    [http://forums.sun.com/thread.jspa?messageID=10930286#10930286]
    Read through all of the links I gave the person on the above thread and you'll be on a lot better footing as far as using JMF goes.
    shall i send the server side code.Till now server and client are both on local host.No, I don't need to see any more of your code. I'm not a proof reader, and I'm not going to debug it for you. Do you own work.

  • BOXI 3.0 server and 3.1 client tool

    Hi,
    I have a couple of question....
    - Is it advisable to have client and server on the same machine?
    - I need the .net sdk that I think is not included in BOXI 3.0 so is it ok if on the same machine I have BOXI 3.0(server) and BOXI 3.1 (client)?
    - If I end up installing BOXI 3.1 do I need to install all the fix pack or the latest fix pack install will have all the earlier fix pack fix also?
    Thanks
    Kajal

    XI 3.0 is very buggy. You should upgrade to XI 3.1. And yes, you should install the latest service pack which is SP3. It covers all the previous FixPacks.

  • BODS 4.1 -- 64 bit server and 32 bit client on 64 bit machine

    Hi Team,
    I have a question about BODS Installation in Windows machine
    Is it possible to have 64 bit DS server and 32 bit DS client in 64 bit windows machine
    Regards,
    Venkat

    Venkat,
    I don't think so its a problem. I have installed both client and Server on the same machine. I did for both BO as well as DS and neither created any problems.
    Arun

  • Jndi compatibity between wls6.1 server and wls9.1 client

    Hi
    I have some code running as session ejbs on wls6.1.
    The client was on wls8.1 and was working fine. I am trying to upgrade to 9.1 and get the following message:
    javax.naming.CommunicationException [Root exception is weblogic.socket.Unrecover
    ableConnectException: [Login failed: 'Incompatible version: Incompatible version
    s - this server:6.1.4.0 client:9.1.0.0]]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:48)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:739)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:343)
    at weblogic.jndi.Environment.getContext(Environment.java:263)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialCont
    extFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    67)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    DOes this mean there is compatibity problem between jndi on 6.1 server and client on 9.1 ?
    Let me know if there us a solution other han migrate the older one to 9. 1 !!!
    Thanks
    -Nav

    I believe the compatability guarantee is self - 2 releases. So 9.1 will talk to 8.x and 7.x but not 6.x.
    That being said, I'd suggest confirming this with [email protected]
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Can I use my New Imac as a server and a workstation/client at the same time ?

    I havea  brand new (2 months Old) Imac - 4 Gig, fully loaded and want to use it as a server using lion server app.  I want to use it for ical server, Addressbook and fileshareing with a bit more security.  I dont want to buy a new computer, just use the existing one to do these services.  At the same time, I want to still use this computer for my regular work. 
    There will be a few users with low traffic.  At the beggining, there will be only 1 other user for the calander, addressbook and file server.  Later it might grow to 4.
    Any thoughts would be appreciated !!!
    PS - Any advice on how to set this up or tricks would be appreciated
    Thanks Again

    Arik From Tel Aviv wrote:
    great Idea !!  Lets assume I dont want to go virtual - what is your thought on that ?
    Lion Server is a "layer" on top of client. The services run in the background and do consume resources like the RAM, CPU, and HD, while you're using the computer as a client. That said, when running a VM with say VMWare Fusion you dedicate Cores and RAM to VM, even if the VM doesn't need all the CPU horsepower or RAM for your server tasks. So it may be that running a full blown Lion Server as VM along side client is more resource intensive on your computer than just running Lion Server while also using it as a workstation.

  • Problems with Solaris 10 Secure Desktop server and Windows XP Client

    Solaris 10 Secure Desktop server - Windows XP Client - I've tried to open the Solaris Machine's desktop using the browser based http://MysolarisServerName/sdg and the windows native client
    http://MySolarisServerName/tarantella.
    I log in ok to the Solaris Server.
    I can open a VT420 session with the solaris machine, and this works OK, but whenever I try anything else e.g. smc, or full screen desktop it doesn't. I get various error messages e.g. can't open display, and Session Failed - X Session timeout.
    I've also installed Cgywin X Server on the Win XP machine to see if this makes a difference, but it doesn't.
    Any clues anyone?

    Being able to run the VT420 session, but not any X-Window sessions is the clue; it's an X-specific problem. Most likely, ssh isn't configured correctly, see: http://docs.sun.com/source/819-4309-10/en-us/base/indepth/ssh.html
    Pasting in the (most) relevant bit:
    Adding support for X applications
    To support X applications through OpenSSH, enable X11 forwarding in the OpenSSH configuration file. On each Secure Global Desktop host:
    1. Edit the sshd_config file and include the following:
    X11Forwarding yes
    2. Edit the ssh_config file and include the following:
    ForwardAgent yes
    ForwardX11 yes
    3. Restart the SSH daemon.
    Using SSH and X authorization
    If SSH connections fail, when X authorization is enabled, you may have to run the SSH daemon in ipv4-only mode because Secure Global Desktop may not support the xsecurity extension used on your server. You enable ipv4-only mode by editing your system SSH configuration file. For example:
    * On SUSE Linux, edit the /etc/sysconfig/ssh file and add a SSHD_OPTS="-4" line.
    * On Red Hat Enterprise Linux, edit the /etc/sysconfig/sshd file and add a OPTIONS="-4" line.
    Note If the SSH configuration file does not exist on your system, you can create it.
    You must restart the SSH daemon after making this change.

  • Mountain Lion server and windows 7 clients

    Hi guys!
    I have a MacMini Server (with OS X 10.8.3 server). Several clients connect to the server everyday. And weird thing is happend. I cannot delete any folder when I am logged on with Windows 7 (it's ultimate one). Every users can do 'Read & Write' and I can delete the same folder with Mac OS X (With Same user account, even it's not admin)
    The only condition that I can delete forders is.....
    1. The folders have to be made by the users who create.
    2. Without logging out (After log out and re-log in, I can't delete even I made the folder)
    I don't know why it's happening. Is there any suggetions that I can try for this issue?
    Thank you! Have a nice day!

    No inherited group permission on files created over SMB
    look at http://blog.rubbingalcoholic.com/tagged/Samba

  • Lion Server and 10.5 Clients....

    We're just setup a new Lion Server as OD Master and imported our users from our old OD using the "Restore" function within Server Admin.
    My test Lion client can login fine using a network account but when I try the same account from a 10.5 client I get the following error:
    You are unable to log in to the the user account "breilly"  at this time. Logging in to the account failed because an error occurred.
    When I checked the console logs I found this error:
    11/08/2011 14:21:02 authorizationhost[318] ERROR | -[HomeDirMounter mountNetworkHomeWithURL:attributes:dirPath:username:] | PremountHomeDirectoryWithAuthentication( url=afp://ncs-mac-od1.ncs.local/Staffhomes, homedir=/Network/Servers/ncs-mac-od1.ncs.local/Staffhomes/breilly, name=breilly ) returned 2
    It seems very odd that I can log in on a Lion client but not a 10.5 client
    Any help would be greatly appreciated.

    There is a simple way for unmanaged clients.
    To point an unmanaged client to your update server, enter the following command in terminal:
    sudo defaults write /Library/Preferences/com.apple.SoftwareUpdate CatalogURL http://<your_server>:8088/index-lion-snowleopard-leopard.merged-1.sucatalog
    (replace <your_server> with the dns name of your update server.  If the unmanaged client runs snowleopard or leopard, adjust the url accordingly. For snowleopard clients, remove the "lion-" part. For leopard clients, remove the "lion-snowleopard-" part

  • Mapping ACLs between Solaris10 ZFS server and Solaris 9 client ??

    The NFS server is Solaris 10 with a ZFS filesystem. The client is Solaris 9. Using NFSv3 over tcp. If we go to the Sol10 box and set a simple ACL on a directory we never see any indication that an ACL is set from the Sol9 client. The "ls -l" will not show a "+" for the directory. The ACL permissions actually work from the client side, however. What we need is some method for the Sol9 users to actually see that there is an ACL set. Getfacl does not work.
    Testing this arrangement with a Fedora 8 client still using NFSv3, the ls -l will show the "+" character.
    thanks for your help,
    Don M.

    The NFS server is Solaris 10 with a ZFS filesystem. The client is Solaris 9. Using NFSv3 over tcp. If we go to the Sol10 box and set a simple ACL on a directory we never see any indication that an ACL is set from the Sol9 client. The "ls -l" will not show a "+" for the directory. The ACL permissions actually work from the client side, however. What we need is some method for the Sol9 users to actually see that there is an ACL set. Getfacl does not work.
    Testing this arrangement with a Fedora 8 client still using NFSv3, the ls -l will show the "+" character.
    thanks for your help,
    Don M.

  • Hi, Is it possible to disable "make adobe reader my default pdf application popup" in a network (Win2012R2 server and win8.1 clients) ??

    please help me with this.

    System board for use in models with 1 GB of discrete graphics memory 616244-001
    System board for use in models with 512 MB of discrete graphics memory 608203-001
    System board for use in models with UMA graphics 608204-001
    http://h10032.www1.hp.com/ctg/Manual/c02437489.pdf
    Graphics is built into the motherboard.
    Can only upgrade with new motherboard.
    Only a few laptops have graphics cards that can be up graded. "Like Alienware"
    Good luck.
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

Maybe you are looking for

  • Extension Manager CC does not see .mxp

    I can not open .mxp in Extension Manager CC on Mac OS 10.8.5. Extension Manager CC does not see files. I've done update and all steps: http://helpx.adobe.com/flash/kb/install-extensions-flash-professional.html

  • Adobe DNG Converter 5.7 won't recognize Canon T2i files (.CR2)

    Just downloaded Adobe DNG Converter 5.7.  I have a Canon T2i and my camera raw files (.CR2) are listed in the Converter but are faded and can't be selected.  Does anyone know what is going on or have a similar experience?

  • A Question About The Compressor 4.0.7 Update.

    On this page: http://support.apple.com/kb/HT4590 it says that in the latest version of compressor (4.0.7) they have "Removes 1 GB file size limit for uploads to Vimeo" what exactly does this mean?

  • Wish list for Queues

    A few functionalities I would like to see added to Queue functions: 1. The ability to queue up an array of elements all at once (rather than having to use a For Loop with the Enqueue Element function inside). 2. Given: A Queue with a set maximum numb

  • Calling a VI to run in the background

    Hey, can anyone help me with this: I have a vi which is eseentially a sequence (though I do not use a sequence primitive). At one point during my sequence, I need to launch another VI that goes and does its own thing. Then, the calling VI (the origin