Back to Mac - Has anyone got it working?

I've hooked my laptop up to another ISP and i can't see my desktop in the Shared Section. When i'm on the same network I can see the desktop, share the screen and all that fun stuff. Has anyone got it working? Could it be my network configuration?

I had a read through the manual that came with Leopard last night and was a little dissapointed to read this part in regard to Back to My Mac:
With your .Mac membership, an internet connection, and Back to My Mac and sharing services turned on, you can access any of your computers from anywhere on the internet."
Sounds like you might need a .Mac account for Back to My Mac. I think you can do the same kind of thing with iChat though so i guess you can still take control of someones Mac over the net to help them fix a problem. But you may need .Mac account to, for example, access your home computer from your work computer.
I could be completely wrong and im certain someone will point this out if i am wrong. Im still getting to grips with all the new features here.

Similar Messages

  • Has anyone got iFS working in Tomcat ?

    iFS 1.1.9
    We have a urgent need to get iFS running in a Servlet 2.2 container and OC4J does not support iFS yet. I know this is not supported but has anyone got iFS working in Tomcat ? If so, pls do me a BIG favour by letting me have your config files, such as
    - server.xml
    - <tomcat home>\conf\web.xml
    - web.xml for the tomcat context)
    - wrapper.properties (if you are using tomcat as an NT service)
    - tomcat-apache.conf (or equivalent)
    - <oracle home>/apache/apache/conf/httd.conf
    - A listing of relevant environment variables (by doing a "set>env.lis" or similar)
    - and any other files you might think is relevant
    Thanks a million in advance.
    null

    iFS 1.1.9 / Oracle 8.1.7 / Tomcat 4.0.1 / Windows 2000
    After several hours of fiddling around with the configuration
    files, I finally got the iFS up and running on my test machine.
    Briefly here's what I did:
    1) create application directories
    <tomcat_home>/ifs/files/WEB-INF/classes
    <tomcat_home>/ifs/files/WEB-INF/lib
    2) Add the following to <tomcat_home>/conf/server.xml:
    <Context path="/ifs/files" docBase="ifs/files"
    debug="0" reloadable="true">
    <!-- got this from jserv.properties -->
    <Environment name="ORACLE_HOME" type="java.lang.String"
    value="oracle_home"/>
    <Environment name="ORACLE_SID" type="java.lang.String"
    value="sid"/>
    <Environment name="LD_LIBRARY_PATH" type="java.lang.String"
    value="oracle_home/lib:oracle_home/ctx/lib"/>
    <Environment name="NLS_LANG" type="java.lang.String"
    value=".UTF8"/>
    </Context>
    Please replace oracle_home with your installation directory and
    fill in your SID as well.
    3) create <tomcat_home>/<tomcat_home>/ifs/files/WEB-INF/web.xml
    with the following definitions:
    <servlet>
    <servlet-name>oracle-jsp</servlet-name>
    <servlet-class>oracle.jsp.JspServlet</servlet-class>
    <init-param>
    <param-name>logVerbosityLevel</param-name>
    <param-value>WARNING</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <servlet-
    class>oracle.ifs.protocols.dav.impl.IfsDavServlet</servlet-class>
    <init-param>
    <param-name>classpath</param-name>
    <!-- this classpath is crucial for JSP compilation.
    | The value has to be in one single line without
    | linebreaks and spaces !!!
    -->
    <param-value>
    tomcat_home/webapps/ifs/files/WEB-INF/lib/ojsp.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/webui.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/adk.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/http.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/repos.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/email.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/release.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/utils.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/settings.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/classes;
    tomcat_home/lib/xmlparserv2.jar;
    tomcat_home/lib/classes12.jar;
    tomcat_home/common/lib/servlet.jar;
    </param-value>
    </init-param>
    <init-param>
    <param-name>ifs.dav.servicepassword</param-name>
    <param-value>manager</param-value>
    </init-param>
    <init-param>
    <param-name>encode_to_java</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>page_provider</param-name>
    <param-
    value>oracle.ifs.protocols.dav.impl.jsp.IfsJspResourceProvider</p
    aram-value>
    </init-param>
    <init-param>
    <param-name>page_repository_root</param-name>
    <param-value>ifs_home/ifsjsps</param-value>
    </init-param>
    <init-param>
    <param-name>unsafe_reload</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>developer_mode</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
    <servlet-name>oracle-jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    tomcat_home and ifs_home must be replaced with your installation
    directories.
    4) Copy the iFS and Oracle JARs to the locations specified in
    web.xml
    You may choose either the applications lib directory or the more
    general tomcat_home/lib for that purpose.
    One hint on libraries: Tomcat will ignore ZIP files, you have to
    use JAR. I renamed Oracle's classes12.zip to classes12.jar for
    that reason.
    5) Create settings.jar
    This was the most tricky part. I packed everything under
    ifs_home/settings into the file settings.zip, renamed this to
    settings.jar and moved it to the WEB-INF/lib directory. Seems a
    bit of a kludge to me, anyone with a better solution is welcome.
    6) Start tomcat
    7) try http://yourtomcathost:8080/ifs/files/index.html
    You should see the ifs login screen then.
    One word about the application environment. In this
    configuration every user class has to go into
    <tomcat_home>/ifs/files/WEB-INF/classes, the
    ifs_home/user_classes is of no use here. And don't try to set
    the classpath within catalina.bat, tomcat will completely ignore
    this setting.
    Finally, I know that this environment is not supported but as
    long as the iFS servlet meets the standards, every standard
    compliant servlet engine should do the job.
    Good luck

  • Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

    Hi,
    Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
    I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
    The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
    I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
    My error is simply
    SEVERE: Error listenerStart
    SEVERE: Context startup failed due to previous errors
    I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
    This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
    Has anyone encountered this before?

    Back again,
    Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
    I had a look at
    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
    and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
    -------------------- EXTRACT ------------------------
    Installing the compatibility package will add the following to the list, which are
    needed when running on J2SE 1.4:
    * jmx.jar (Java Management Extensions API 1.2 or later)
    * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
    --------------------END EXTRACT ------------------------
    Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
    Ah what a relief.

  • JSTL  Has anyone got this working successfully

    Has anyone gotten JSTL or any third party tags to work successfully if so how?  I will award points for good answers

    Basically you can not work with jstl within sap portal. However, if you are willing to do some work, here is what i did:
    At first you have to understand the problem, so here a brief snippet of the generated java source
                 try {
                              int _jspx_eval_hbj_page_2 = _jspx_th_hbj_page_2.doStartTag();
                              if (_jspx_eval_hbj_page_2 == Tag.EVAL_BODY_INCLUDE)
                                throw new JspTagException("Since tag handler class com.sapportals.htmlb.taglib.PageTag implements BodyTag, it can't return Tag.EVAL_BODY_INCLUDE");
                               if (_jspx_eval_hbj_page_2 != Tag.SKIP_BODY) {
                                 try {
                                   if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE) {
                                     out = pageContext.pushBody();
                                     _jspx_th_hbj_page_2.setBodyContent((BodyContent) out);
    snip some parts
                             } finally {
                                  if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE)
                                       out = pageContext.popBody();
                        if (_jspx_th_hbj_page_2.doEndTag() == Tag.SKIP_PAGE)
                             return;
                   } finally {
                     _jspx_th_hbj_page_2.getBodyContent().close();
                     _jspx_th_hbj_page_2.release();
    The generated code is bad and not foolproof:
    1. sap wrongly assumes that EVERY tag implements BodyTag. This is just not the case
    2. If, for whatever reasons, doStart() throws an exception, the finally block will call getBodyContent().close(), and throw an NullPointerException...
    Basically i had to write wrappers of my own, that implemented BodyTag and replace the used classes in the tld-file to point my wrapper classes.
    Because of the deficiencies in doStart() your wrapper must not ever return null upon calls to getBodyContent(), even if it has not been initialized.
    Of course, this wont get you anywhere near reading your resource bundles within a tag, but thats another story.

  • Front Row in Lion. Has anyone got it working with iTunes 10.5 yet?

    I've got it working with pics and movies by using the method in the link below, but not with the library in iTunes 10.5.
    http://www.cultofmac.com/106874/use-front-row-in-os-x-lion-video-how-to/

    Yes I know. I'm very annoyed that Apple have dropped Front Row from Lion, it removes quite a bit of functionality from my iMac. I use it a lot. I've tried Plex, but don't like it at all.

  • Has anyone got iSight working when a firewire drive is connected?

    I have tried numerous drives but they all stop iSight working. For sure I would not have bought it had I known this. It will work if I disconnect all drives. Irony is that the internal is so slow that I run off a firewire.

    I have had problems with connecting an external firewire hard drive and isight camera at the same time. I have problems copying or reading files off my hard drive when my isight camera is connected at the same time. Just the other day, I forgot to disconnect my isight camera when I hooked up my external hard drive to view some old family photos that I scanned in and saved to that hard drive months ago. I kept getting a message that the files could not be read and had an error message. I thought that I had lost all the photos or had not scanned them properly or that my hard drive was going bad. Luckily I remembered that there is a firewire problem when my isight is connected and I disconnected the camera and was able to open the files. It would be nice if Apple could address this problem. I also have problems copying files to my idisk on occassion when my isight camera is connected. It tends to be slow and sometimes the wheel spins for a very long time. Also have noticed that when I copy large number of files at one time to a CD that things seem to never work right. I have learned to copy files in smaller lots and this seems to help.
    I love my isight camera and it is so much better than my ibot camera, but wish they could fix the issues with the firewire.
    -Joan
    PowerBook G4   Mac OS X (10.4.2)  

  • Installation of EHP4 - Has anyone got this working

    Hi All;
    I know that SAP will not like to hear this, but the installation of EPH4 using Solution Manager is a frustrating exercise in futility.  I have been trying to install EHP4 for over 2 months now and it keeps failing.  I have an open HIGH ticket with SAP and they have moved me forward in the installation process due to Bugs in their tools, but once I get 1 bug resolved I quickly hit another one. SAP Support keeps bouncing me all over the place.  I feel like I am dealing with a Beta product rather then a General release solution.  Furthermore, SAP's support sense of urgency is completely different then their customer base.  I have also had our SAP account manager in to express my frustration and while sympathetic to my situation, he acknowledges there is little he can do.
    My latest issue is similar to this link:
    Re: EHP4 Error in PREPARE_JSPM_QUEUE
    Specifically, I have gotten over the ABAP installation and now I am in the JSPM portion.  The installation fails on the PREPARE_JSPM_QUEUE phase with the error:
    Here are the last few lines of our PREPARE_JSPM_QUEUE_CSZ_01.LOG file:
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.connect(AbstractToolConnector.java:729) [Thread[main,5,main]]: Connected to host vmsapdev02 on port 6250.
    Apr 1, 2010 8:56:34 PM [Warning]:   com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.discardMsg(AbstractToolConnector.java:775) [Thread[JSPM,5,main]]: Discarding message $com.sap.sdt.sltool.rapi.connector.MsgData@39402772
    Apr 1, 2010 8:56:34 PM [Info]:    com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.connect(SAPJupJSPMRapiAdapter.java:139) [Thread[main,5,main]]: JSPM was started successfully.
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:184) [Thread[main,5,main]]: Trying to log in with user J2EE_ADMIN.
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:190) [Thread[main,5,main]]: JSPM detect non deployable components login request property is set to "true".
    Apr 1, 2010 8:56:42 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:199) [Thread[main,5,main]]: JSPM successfully logged in with user J2EE_ADMIN.
    Apr 1, 2010 8:56:42 PM [Info]:    com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.connect(SAPJupJSPMRapiAdapter.java:143) [Thread[main,5,main]]: JSPM was connected successfully.
    Apr 1, 2010 8:56:42 PM [Info]: com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.createQueueFromStack(SAPJupJSPMRapiAdapter.java:287) [Thread[main,5,main]]: Starting creation of deploy queue from file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml.
    Apr 1, 2010 8:56:43 PM [Info]: com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.handleMsgClosed(AbstractToolConnector.java:560) [Thread[JSPM,5,main]]: Reporting failed commlink.
    Apr 1, 2010 8:56:45 PM [Info]:         com.sap.sdt.jspm.rapi.connector.JSPMConnector.waitForJSPMTermination(JSPMConnector.java:483) [Thread[main,5,main]]: JSPM stopped.
    Apr 1, 2010 8:56:45 PM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Apr 1, 2010 8:56:45 PM [Error]:             com.sap.sdt.jspm.unattended.RequestController.addContextInfo(RequestController.java:178) [Thread[main,5,main]]: Stack definition file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml contains no applicable SP stacks. For details see SCAN_INBOX*.LOG in current JSPM log directory.
    JSPM version is 7.01.5.1.3. Current JSPM log directory is /usr/sap/DEV/DVEBMGS00/j2ee/JSPM/log/log_2010_04_01_20_56_32.
    Apr 1, 2010 8:56:45 PM [Error]: com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.createAndLogRapiException(SAPJupJSPMRapiAdapter.java:710) [Thread[main,5,main]]: Could not create deploy queue.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been completed.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2010/04/01 20:56:24.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2010/04/01 20:56:45.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:00:21.019.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]: Phase status is error.
    Here are the last few lines in our SCAN_INBOX_01.LOG file:
    EHP4 FOR SAP ERP 6.0 / NW7.01 - EHP4 FOR ERP 6.0_NW701
    Mar 23, 2010 11:33:27 AM [Info]: Filtering delivery units from stack /usr/sap/trans/EPS/in/SMSDXML_DEV_20100310200324.828.xml.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/JSPM from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: JSPM will not patch NWDI build component sap.com/SAP_BUILDT, because it does not have any deployable content. See SAP Note 1027362 for more information.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP_BUILDT from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package stack SAP NETWEAVER,SAP ERP,EHP4 FOR SAP ERP 6.0_NW701 SAP EHP1 FOR SAP NETWEAVER 7.0,2005,EHP4 FOR ERP 6.0_NW701 (/usr/sap/trans/EPS/in/SMSDXML_DEV_20100310200324.828.xml) is rejected. Check previous warning messages.
    I don't know why we are getting these warning messages since the Kernel files (non-unicode for the ABAP portion) and Unicode for the Java stack are in the /usr/sap/trans/EPS/in subdirectory.
    SAP has been in my Solution Manager and confirms everything is setup ok.  We have a Linux Red Hat EL 5.0 64 bit Application server that has been successfully upgraded from SAP 4.7 x 110 to SAP ECC 6.0 EHP1.
    Our Database server is also Linux Red Hat EL 5.0 64 bit running Oracle 10.2.0.4.  Our system is vanillia.  We are an IT shop so we lots of knowledgable people in the company and can response to SAP requests quickly (which are slow in coming). 
    I am also wondering if this warning message is causing any problems.  SAP has confirmed that our parameter settings are correct but I wonder since I am getting this message.
    Apr 2, 2010 11:37:18 AM [Warning]: Software feature SAP ERP 6.0 : SAP
    ECC Server - 16 (08/2009) found in stack definition
    file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml is
    applicable for system SID: DEV and HOST: vmsapdev02, but the current
    system is SID: DEV and HOST: vmsapdbdev02. This software feature will
    be skipped.

    Hi NIraj;
    Thank you for the prompt reply.  In MOPZ I have selected the NON UNICODE portion of the Kernel.  Here is a portion of the XML file.  I believe this is the area that specifies the NON UNICODE Kernel upgrade.  These files are in the /usr/sap/trans/EPS/in directory.  Any other ideas?
    <software-component>
        <caption>SAP KERNEL 7.01 64-BIT</caption>
        <ppms-number>01200615320200011147</ppms-number>
        <runtime-type>OS</runtime-type>
        <name>KRNL64NUC</name>
        <version>7.01</version>
        <vendor>sap.com</vendor>
        <support-package>
         <caption>SP055 for SAP KERNEL 7.01 64-BIT</caption>
         <name>SP055</name>
         <vendor>sap.com</vendor>
         <ppms-number>01200615321100059367</ppms-number>
         <sp-level>055</sp-level>
         <patch-level>55</patch-level>
         <archives>
          <os-set os="LINUX_X64">
           <db-set db="DBINDEP">
            <archive-name patch-level="55" os="LINUX_X64" db="DBINDEP">SAPEXE_55-10005922.SAR</archive-name>
           </db-set>
           <db-set db="ORA">
            <archive-name patch-level="55" os="LINUX_X64" db="ORA">SAPEXEDB_55-10005926.SAR</archive-name>
           </db-set>
          </os-set>
         </archives>
        </support-package>
       </software-component>
       <software-component>
        <caption>SAP KERNEL 7.01 64-BIT UNICODE</caption>
        <ppms-number>01200615320200011148</ppms-number>
        <runtime-type>OS</runtime-type>
        <name>KRNL64UC</name>
        <version>7.01</version>
        <vendor>sap.com</vendor>
        <support-package>
         <caption>SP055 for SAP KERNEL 7.01 64-BIT UNICODE</caption>
         <name>SP055</name>
         <vendor>sap.com</vendor>
         <ppms-number>01200615321100059368</ppms-number>
         <sp-level>055</sp-level>
         <patch-level>55</patch-level>
         <archives>
          <os-set os="LINUX_X64">
           <db-set db="DBINDEP">
            <archive-name patch-level="55" os="LINUX_X64" db="DBINDEP">SAPEXE_55-10005984.SAR</archive-name>
           </db-set>
           <db-set db="ORA">
            <archive-name patch-level="55" os="LINUX_X64" db="ORA">SAPEXEDB_55-10005987.SAR</archive-name>
           </db-set>
          </os-set>
         </archives>
        </support-package>
       </software-component>
      </sp-feature-stack>

  • Has anyone got the Comsoft Profinet example code working??

    Hello!
    I have a cRIO Profinet card and I'm attempting to get the example code working.
    I have followed the instructions in GettingStarted_cRIO_PN_IO_Device.pdf
    I have created an empty project with just the 9023 and 9113 present, and copied the 3 items from the example project cRIO PN IO-Device (LV 2012) as per the documentation.
    When I try to compile I get the error shown attached.  I cannot view the error as the VI is password protected.
    In 5 years of working with cRIO using many different c-series modules from NI and 3rd parties I have never come across a password protected example Vi - this is very disappointing!  I don't see how it will be possible to use the card without being able to access this VI, and clearly it is impossible to use it without this VI as they are unwilling to share its functionality.
    Has anyone got this working on anything other than a 9104 (which the example uses?)  Does anyone know the password?  Is it possible to use the card without using this example code?
    I will be communicating with a Siemens PLC (acquiring a load of U16s and logging on the cRIO at 20ms intervals).
    Many thanks for any input, or any experiences of using this card.
    Aaron
    LabVIEW/RT/FPGA 2012
    NI-RIO 12.0.1
    cRIO 9023 controller and 9113 chassis with COMSOFT PN module in slot 1.
    Attachments:
    PN_error.png ‏44 KB
    PN_error2.png ‏20 KB

    Just for the record, I am using the CRIO-PN with cRIO-9081 and cRIO-9068 integrated chassis successfully.
    LabVIEW (RT/FPGA) 2013 SP1.
    I didn't use the higher level ComSoft example code directly, as the VIs use so many control/indicators that the FPGA usage is sky high. I rewrote them to pass the I/O data via DMA FIFOs.

  • Has anyone got Safari to work with Kerberos (SPNEGO) ?

    Has anyone got Safari to with using Negotiate (SPNEGO with Kerberos) when the system is not bound to ActiveDirectory or Macs OpenDirectory?
    I can load Firefox and it works fine, but Safari does not work. I keep hearing that Safari works out of the box, but its looks like its somehow tied to AD or Macs Opendirectory and its deployment of Kerberos.

    I am having the same problem and checked out the Apple Discussions for a solution.
    I too am meticulous with my addresses.
    Seeing no solution I went back to testing.
    I have tried:
    From Shrewsbury
    To Telford
    The result was a trip in the US taking 14 hours.
    Then I tried:
    From Shrewsbury UK
    To Telford UK
    This worked.
    When on the "Get Directions" screen there is a "Globe" icon by the "Space" icon. Pressing this brings up "English (US)". Press again and you get "English (UK).
    Any ideas?
    When I use the "Contacts" to get the Start and End fields the iPhone is bringing up the correct address but with "United States" at the end of the address.
    Again any ideas?
    In my Address book I never use the "Country" field as all my contacts are in the UK. I wonder if this is the problem and the iPhone is defaulting to US in the absence of no "Country"?
    Help!

  • Has ANYONE got a 'faulty' superdrive to work without replacing it?

    There are many tales of people here with dodgy sauperdrives. Now I have one in a 2 year old eMac. So before I spend money replacing the superdrive, has anyone got their's going by way of software or cleaning or dancing around their Mac chanting to the sky?
    Steve

    yep,
    there are lots of ways to do this in logic. straight off the top of my head (so it won't necessarrily be the best way)
    set your loops up in individual exs insts
    transform midi note to controller 7 with a trasnformer in environment, mapped note to midi channel.
    now when you hit the right key, it will turn the note into controller message to open the volume on the exs instrument with the right midi channel.
    you will need a 'master' note to turn on your loops in the exs inistruments. obviously this needs to be connected outside of the transform to midi channel.
    if you need to more than 16 loops, you can put a transformer before 'notes to controller 7' to split the messages by their key range. sounds complicated but is really easy, no harder in fact than programming VCR.
    you will need a master instrument to run all this from in arrange. i would have used a single channel midi instrument in environemnt new>instrument.
    my method will work but there maybe a way to set everything up in an exs instance, but i not sure how you would do that so it didn't retrigger rather than open up the volume on the part of the loop you want.
    my way will work though.

  • Has anyone got PPTP VPN to work on Lion Server?

    Has anyone got PPTP VPN to work on Lion Server?
    I had a go with the terminal commnds posted by apple support but no joy. Since then Apple has pulled the suport article - is it because it didn't work?
    I get PPTP is less secure but PPTP seems to be more reliable don't know whey they can't keep as GUI. I've got them both running on our 10.4 server and L2TP stoped allowing connections for no reason PPTP was still working L2TP started working again on its own. Plus L2TP drops my connection when I connect with a 2nd device e.g connected with my Macbook connect with my iPhone (different username) it drops my Macbook.
    Any advice getting PPTP to work on Lion Server would be appreciated
    Thanks
    Ben

    Hi,
    I have posted a bugreport on this issue to Apple. Currently (10.7.2) it is not possible to run PPTP on any Mac OS X Server when using a 10.7 Server as Directory Server.
    I have tried 'everything', but the MPPE encryption mechanism seems to be broken.
    Edit: I see now that the bugreport is filed as a duplicate to an older case, which is now closed. I hope this means they have found the problem and will release a fix in the next update.

  • My Time Capsule expired and no longer works. My printer (a HP) will now not work as it still wishes to connect through the Time Capsule. It will not allow itself be recognised through a USB connection to my Mac. Anyone got any ideas?

    My Time Capsule expired and no longer works. My printer (a HP) will now not work as it still wishes to connect through the Time Capsule. It will not allow itself be recognised through a USB connection to my Mac. Anyone got any ideas?

    You will need to install the printer on your Mac
    Open System Preferences (gear icon) on the dock
    Open Print & Fax
    Click the + (plus) button at the bottom of the printer list
    Wait for your printer to appear in the next box, then click it to highlight it
    Click Add at the lower right
    Be sure to select the correct printer when you try to print as you will see your printer listed twice. Good idea to make the printer now installed on your Mac the default printer so you do not have to choose which printer to use each time you want to print.
    You can also go into Print & Fax, select the printer associated with the Time Capsule and click the - (minus) button if you want to delete that location.

  • Has anyone got the QT stand alone installer to work?

    OK, Has anyone got the QT stand alone installer to work that has a problem getting IT6 to work also?
    You can look at my original thread and see what I've been through: http://discussions.apple.com/thread.jspa?threadID=262511&tstart=0
    and now am stuck with an old version of QT and no version of IT! Can't update iPod, can't do crap. How slow can Apple be to fixing whatever bug is in IT6?! It's obvious that alot of people are having trouble and many of us are having the exact same or similar problems. Apparently a call to support is no help.
    Mark

    I didget QT stand alone to install. I had the error -3 message. I unistalled itunes and quicktime. Then I reinstalled using my orginal ipod disc. I then was asked to upgrade to ipod 6 or something. Which I did. Still got the error -3. Then I got the QT stand alone to install by it self and every thing works great now. There was some thing stating if I wanted to "Unistall QT for windows" I said yes. There were some error associated with removing "QT for Windows" during the install but after that it works great. It took something like 20 min. for it to download when it took itunes only 7 min. to download earlier.

  • Has anyone got cn8202temp_controller.vi to work?

    Hello,
    Has anyone got cn8202temp_controller.vi to work. I got it from the Ni website and I've been unable to get it to run right. If there is anyone out there that has got it to work please tell me how you did it. It has an error when you upload the parameters for the recipe. I have enclosed the vi if you want to take a look.
    Thanks for your time,
    Attachments:
    cn8202temp_controller.vi ‏605 KB

    Hey Jordan,
    Thanks for responding. The recipe I am using is start from room temperature (20ºC), ramp up to 100 ºC over a period of 15 minutes, remain there for 10 minutes, and then ramp up to 1200ºC over a period of 110 minutes, remain for 10 minutes, then ramp down to 20ºC over a period of 280 minutes. I ran through all the string codes in the program and the only two I can't validate is Run Recipe string $0101W065.0000G2 and the cancel recipe string $0101W063.0000G0
    I called and sent emails to Omega on this issue and their response is that they don’t do third party programming. I was hoping that by posting it on here that someone may have used the program and could confirm if it works or not and if it didn’t work could possible tell me what needs to be changed. I’m really beating my head against the wall here and use help from anyone.
    Thanks again.
    Kevin   

  • Has anyone got NVrotate to work under Win98SE?

    I installed the latest driver for this card for Win98
    NVrotate is not available as an option in Win98SE
    Display properties-->settings -->GeForce FX5200
    I temporarily moved a drive with WinXP Pro onto this machine.
    NVrotate is an available option in
    Display properties-->settings -->GeForce FX5200
    and works fine.
    But for various compatibility reasons this machine has to been running Win98SE.
    Has ANYONE got NVrotate to work under Win98 ??????
    MSI FX5200  TD128
    Gigabyte GA-7VAX
    AMD 2400+
    17" Analog LCD & 18.1" Analog LCD

    I managed to get it to work, you have to install two files
    the first for the actual python script files.
    the second for the user interface.
    you might have installed the user interface, but without installing python, and that's why its not loading up the application, also make sure you install python to phone memory.
    On my N96 I installed:
    Python for S60 1.4.4
    Python script shell 1.4.4
    if you get an 'update error' when installing its because you have not un-installed all of the old python stuff, open app manager on the handset and un-install all python relating files
    one last thing, install python and the shell to the phone memory (c drive)
    Hope it helps
    Tony

Maybe you are looking for