CRS .lsnr file tags

I have a 10.1.0.3 install of CRS which has my node registered, and an instance of the DB installed. when trying to start the listener, I was getting an error that pointed to needing to register a listener. I created a .lsnr.cap file using something I found, as I can't find any real docs on this. It will register just fine, but when trying to start the listener (srvctl start nodeapps -n oraclelap) it gives the following error...
CRS-1006: No more members to consider
CRS-0215: Could not start resource ora.oraclelap.LISTENER_ORACLELAP.lsnr.
Does anybody know what this is implying, or where some good docs on the .lsnr file syntax can be found?
Thanks,
Scott

It seems to me that you have registered your database with an Invalid value/ flags.
Can you post the comand you used to do the add.
Also check your VIP configurations with these Metalink documents
Note.296878.1 Oracle 10g VIP (Virtual IP) changes in Oracle 10g 10.1.0.4
Note 298891.1 - Configuring Linux for the Oracle 10g VIP

Similar Messages

  • How to include a file as variable in %@ include file tag.

    Hi,
    I have a interesting problem here, how can I include a file in <%@ include file tag. where the include file path is a variable. I am trying to implement the following statement.
    <@ include file="<%=headerLogic_template %>">
    where headeLogic_template is a variable which contains the actual path of the include file.
    Thanx,
    Ramana.
    email:[email protected]

    Please note that you can not write anything else between the quotes nor for page specification or parameters.
    BAD EXAMPLE!!
    <% for (int i = 0; i < 20; i++) { %>
    <jsp:include page="included.jsp" flush="false">
      <jsp:param name="apa" value="prestring_<%=i%>"/>
    </jsp:include>
    <% }BAD EXAMPLE!!

  • In Web Logic Server Due to HTML file tag the action of struts is not called

    Hi All
    I have a problem as under:-
    There is a HTML page which contains several fields including a file input tag of HTML and i write enctype = "multipart/form-data" in the form tag
    I am calling a struts Action from this form, then it is not reaching to that action of struts.
    If I remove this file tag and enctype = "multipart/form-data" then it reaches to the struts action.
    I am facing this problem in Weblogic server 8.1 but i can easily deploy this same code on Tomcat 5.0
    Please help me out from this problem..
    Thanks...
    Nitin Saxena

    My installation has a DefaultWebApp directory under mydomain/applications,
              try moving everything down there. (I'm on 6.1 but I think 6.0 is the same)
              Eliot Stock
              eliot [ at ] carbonfive [ dot ] com
              http://carbonfive.com
              "Ram" <[email protected]> wrote in message
              news:3bc71641$[email protected]..
              >
              > Hi,
              >
              > I am trying to deploy a simple servlet in WebLogic Server.
              > I have done the following steps.
              >
              > 1) Compiled the MyWorld.Java Servlet Successfully in c:test\ Directory..
              >
              > 2) Created WEB-INF/Classes Directory in the home Directory of
              WebApplication Directory..
              > C:\bea\wlserver6.0\config\mydomain\applications\
              > 3) Copied the Class file into the WebApplication Directory i.e
              >
              > C:\bea\wlserver6.0\config\mydomain\applications\WEB-INF/Classes
              >
              > 4) Executed in the Browser using following URL:
              > http://127.0.0.1:7001/MyWorld
              >
              > But, I am getting this error:
              >
              > Error 404--Not Found
              >
              > Please let me know if the above procedure is wrong, then what are the
              exact steps
              > involved in Deploying a servlet in WebLogic Server.
              >
              > Thanks,
              > Ram.
              >
              

  • How to get the path of input type="file" tag

    -- im using <input type="file"> tag to get an input file from a local host, it returns only the filename but not the complete path of the filename,,,
    -- i need to know on how to get the compelete path /directory of the filename using <input type="file"> tag , or is there any other way to get an input file from a local host aside from <input type="file"> tag?
    thanks

    http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/input_file.asp?frame=true
    When a file is uploaded, the file name is also submitted. The path of the file is available only to the machine within the Local Machine security zone. The value property returns only the file name to machines outside the Local Machine security zone. See About URL Security Zones for more information on security zones.
    i need to know on how to get the compelete path /directory of the filename
    using <input type="file"> tag You can't. Its a security thing.
    is there any other way to get an input file from a local host aside from <input type="file"> tag?No. Not using just html.
    You could always go into activex components, but thats different again.
    Cheers,
    evnafets

  • Support for file tag in XSLT to create dynamic pages  - Gallery type 'Flash'

    Based on my understanding, when you export, LR Web engine looks for transformer.xslt by default if the gallery type is HTML. It allows to use <file name="outputfilename.html"> tag in this transformer.xslt to create new files.<br /><br />But to my knowledge I don't see the above defaults working if the gallerytype is Flash. Why? I don't understand why LR is restricting the Flash based galleries from creating dynamic output files via XSLT.<br /><br />I tried setting xmlTransformer file name to transformer.xslt in galleryInfo.lrweb and leaving xmlPath to blank but this doesn't seem to work. If I give some dummy XML name, it creates the xml in that name, but ignores creating new files I mentioned in the <file> tag in xslt.<br /><br />Can someone please explain if there are any alternates or if possibly fixed in the next release ?

    Are you the one who commented out the code you're looking for ?//String desc = StringFactory.getString(attributes.getValue("desc"));You just have to modify you AttributeObject class to hold a new field : String description. And then, it's up to you to create a new constructor or a new setter method.
    Btw, this is not a Swing related question.

  • XML File Tags Validation Using Oracle.

    Dear Forum Members,
    I have a doubt regarding XML File Tags Validation.
    First I will explain My Requirement.
    1. I have to generate an XML File in a Predefined Format.
    2. User will add some data in the elements, or he may copy the same elements and change to some data like
    <Emp><Empno>10</Empno></Emp>
    The above tag will be generated by the application.
    User will copy the same and change to
    <Emp><Empno>20</Empno></Emp>.
    Now he want to Upload the Changed XML File to the Database table. This is done by parsing the XML File.
    The Creation and Parsing section is over. But before Parsing I want to check for the Validation of the XML Tag. i.e. whether the tag he has copied <Emp><Empno>10</Empno></Emp> is chaned by mistake to
    <Emp><Empno>10</Empno></Emps> or some other Mistakes.
    What I have to Do..
    Regards
    Madhu K

    I still think that my previous response is valid:
    If you e.g. include (concat) your DTD in your XML it will be validated against it!
    See e.g.:
    michaels>  select xmltype (xml_dtd || your_xml) your_validated_xml
      from (select '<SSDDATA>
                     <KEY><![CDATA[6707]]></KEY>
                     <FINISHED><![CDATA[This is a Finished data ]]></FINISHED>
                     <DEFAULT></DEFAULT>
                     <MIN></MIN>
                     <MAX></MAX>
                     <UNIT></UNIT>
                     <FORMULA></FORMULA>
                     <FORMULA></FORMULA>
                     <FORMULA-DESC></FORMULA-DESC>
                     <ADVANCED-FORMULA></ADVANCED-FORMULA>
                     <INTERNAL-ADAPT-DESC></INTERNAL-ADAPT-DESC>
                     <DATA-DESC-REPORT></DATA-DESC-REPORT>
                     <REV-DESC></REV-DESC>
                    </SSDDATA>' your_xml,
                   '<?xml version="1.0"?>
                    <!DOCTYPE SSDDATA [
                      <!ELEMENT SSDDATA (KEY,FINISHED,DEFAULT,MIN,MAX,UNIT,(FORMULA)+,FORMULA-DESC,ADVANCED-FORMULA,INTERNAL-ADAPT-DESC,DATA-DESC-REPORT,REV-DESC)>
                      <!ATTLIST SSDDATA xmlns CDATA #FIXED "">
                      <!ELEMENT KEY (#PCDATA)>
                      <!ATTLIST KEY xmlns CDATA #FIXED "">
                      <!ELEMENT FINISHED (#PCDATA)>
                      <!ATTLIST FINISHED xmlns CDATA #FIXED "">
                      <!ELEMENT DEFAULT EMPTY>
                      <!ATTLIST DEFAULT xmlns CDATA #FIXED "">
                      <!ELEMENT MIN EMPTY>
                      <!ATTLIST MIN xmlns CDATA #FIXED "">
                      <!ELEMENT MAX EMPTY>
                      <!ATTLIST MAX xmlns CDATA #FIXED "">
                      <!ELEMENT UNIT EMPTY>
                      <!ATTLIST UNIT xmlns CDATA #FIXED "">
                      <!ELEMENT FORMULA EMPTY>
                      <!ATTLIST FORMULA xmlns CDATA #FIXED "">
                      <!ELEMENT FORMULA-DESC EMPTY>
                      <!ATTLIST FORMULA-DESC xmlns CDATA #FIXED "">
                      <!ELEMENT ADVANCED-FORMULA EMPTY>
                      <!ATTLIST ADVANCED-FORMULA xmlns CDATA #FIXED "">
                      <!ELEMENT INTERNAL-ADAPT-DESC EMPTY>
                      <!ATTLIST INTERNAL-ADAPT-DESC xmlns CDATA #FIXED "">
                      <!ELEMENT DATA-DESC-REPORT EMPTY>
                      <!ATTLIST DATA-DESC-REPORT xmlns CDATA #FIXED "">
                      <!ELEMENT REV-DESC EMPTY>
                      <!ATTLIST REV-DESC xmlns CDATA #FIXED "">
                    ]>' xml_dtd
              from dual)
    YOUR_VALIDATED_XML                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
    <?xml version="1.0"?>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                    <!DOCTYPE SSDDATA [                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                      <!ELEMENT SSDDATA (KEY,FINISHED,DEFAULT,MIN,MAX,UNIT,(FORMULA)+,FORMULA-DESC,ADVANCED-FORMULA,INTERNAL-ADAPT-DESC,DATA-DESC-REPORT,REV-DESC)>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                      <!ATTLIST SSDDATA xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ELEMENT KEY (#PCDATA)>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ATTLIST KEY xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ELEMENT FINISHED (#PCDATA)>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                      <!ATTLIST FINISHED xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                      <!ELEMENT DEFAULT EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ATTLIST DEFAULT xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ELEMENT MIN EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ATTLIST MIN xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ELEMENT MAX EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ATTLIST MAX xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ELEMENT UNIT EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                      <!ATTLIST UNIT xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                      <!ELEMENT FORMULA EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ATTLIST FORMULA xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
                      <!ELEMENT FORMULA-DESC EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                      <!ATTLIST FORMULA-DESC xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                      <!ELEMENT ADVANCED-FORMULA EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                      <!ATTLIST ADVANCED-FORMULA xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                      <!ELEMENT INTERNAL-ADAPT-DESC EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ATTLIST INTERNAL-ADAPT-DESC xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                      <!ELEMENT DATA-DESC-REPORT EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                      <!ATTLIST DATA-DESC-REPORT xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                      <!ELEMENT REV-DESC EMPTY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                      <!ATTLIST REV-DESC xmlns CDATA #FIXED "">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                    ]><SSDDATA>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                     <KEY><![CDATA[6707]]></KEY>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                     <FINISHED><![CDATA[This is a Finished data ]]></FINISHED>                                                                                                                                                                                                                                                                            

  • Urgent... how to open particular folder by using file tag

    Hi,
    I want to select a particular folder using file browsing option in html. why i want this is : i have to update the resumes located in a particular folder. so every time i am opening that folder which is a subfolder.
    ex: c:\dir1\dir2\dir3\Resumes
    Eveevry time , i have to go to C -> dir1->dir2-->dir3 then Reusmes
    what i need is when i click the browsing button, i want to get the Resumes folder directly. Is there any option to do that one by setting value to file tag.
    thanks in advance
    my mail id [email protected]

    Hi venkatanarayanareddy (if that is your real name),
    You say you want to use file browsing option in html, which makes me guess this functionality is through a web page. Can you give us a bit more information about how this works as it's not abundantly clear how it relates to Java (JSP?).
    On another note (and I woke in customarily pedantic mood this morning), there's no need to post your e-mail address since [in the name of sharing the knowledge and not keeping answers to questions secret between the questioner and respondant] you will find responses posted here in the forum.
    Chris.

  • Check IN a file from local user machine using Input file tag

    Hi
    We have created a webapplication using Oracle UCM. We have designed certain forms and want to give users an input field to upload images to content server.
    I included a input type file tag in my form and on submit redirected to a JSPX.
    I included on JSPX following tag when the form is submitted as follows
    <wcm:idcService service="CHECKIN_NEW_FORM" var="fileUpload">
    <wcm:idcParameter name="doFileCopy" value="1"/>
    <wcm:idcParameter name="dDocName" value="Test_Aakash"/>
    <wcm:idcParameter name="dDocTitle" value="Test_Aakash"/>
    <wcm:idcParameter name="dDocType" value="Document"/>
    <wcm:idcParameter name="dSecurityGroup" value="Public"/>
    <wcm:idcParameter name="dDocAuthor" value="anonymous"/>
    *<wcm:idcParameter name="primaryFile" value="C:/test.txt"/>*
    </wcm:idcService>
    I was hoping to pass primary path that a client will specify will allow the file to check in to the UCM server.But, to my dismay the tag expects that primary file be the path of file present on the Server and not on client machine accessing the webapplication.
    How can I check in file from client local machine to UCM server. I found default IdcService=CHECKIN_NEW_FORM through web-application allows one to select primary file from his local machine. But, this not the case when i do the same using the tag above. Please help how can i achieve the desired result.
    Thanks,
    Aakash
    Edited by: 856575 on Jul 19, 2011 12:31 AM
    Edited by: 856575 on Jul 19, 2011 12:32 AM

    Hi
    We have created a webapplication using Oracle UCM. We have designed certain forms and want to give users an input field to upload images to content server.
    I included a input type file tag in my form and on submit redirected to a JSPX.
    I included on JSPX following tag when the form is submitted as follows
    <wcm:idcService service="CHECKIN_NEW_FORM" var="fileUpload">
    <wcm:idcParameter name="doFileCopy" value="1"/>
    <wcm:idcParameter name="dDocName" value="Test_Aakash"/>
    <wcm:idcParameter name="dDocTitle" value="Test_Aakash"/>
    <wcm:idcParameter name="dDocType" value="Document"/>
    <wcm:idcParameter name="dSecurityGroup" value="Public"/>
    <wcm:idcParameter name="dDocAuthor" value="anonymous"/>
    *<wcm:idcParameter name="primaryFile" value="C:/test.txt"/>*
    </wcm:idcService>
    I was hoping to pass primary path that a client will specify will allow the file to check in to the UCM server.But, to my dismay the tag expects that primary file be the path of file present on the Server and not on client machine accessing the webapplication.
    How can I check in file from client local machine to UCM server. I found default IdcService=CHECKIN_NEW_FORM through web-application allows one to select primary file from his local machine. But, this not the case when i do the same using the tag above. Please help how can i achieve the desired result.
    Thanks,
    Aakash
    Edited by: 856575 on Jul 19, 2011 12:31 AM
    Edited by: 856575 on Jul 19, 2011 12:32 AM

  • In Web.xml  welcome file tag not works

    Hi All ,
    I am developing simple web application using spring framework
    when i am try to add welcome file tag in web.xml with respective welcome page path but it not works.
    but when use jsp page without to having any property it works.
    what the problem with me
    Thanks

    Hi Frank
    Thank you for your reply.
    This is how I registered the session filter in web.xml
    <filter>
    <filter-name>SessionFilter</filter-name>
    <filter-class>com.avery.view.filter.SessionFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>SessionFilter</filter-name>
    <url-pattern>/faces/*.jsf</url-pattern>
    </filter-mapping>
    I'll try to use phaselisenter as you suggested.
    Also, one more thing please, in the session filter, I have something like this.
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws IOException, ServletException {
    System.out.println("JF--- Calling the Filter");
    if (request instanceof HttpServletRequest) {
    HttpServletRequest httpRequest = (HttpServletRequest)request;
    HttpServletResponse httpResponse = (HttpServletResponse)response;
    HttpSession session = httpRequest.getSession();
    String url = httpRequest.getPathTranslated();
    String path = httpRequest.getContextPath() + httpRequest.getServletPath();
    if (httpRequest.getRequestURI().equals(path+"/Login")) {
    System.out.println(" the request path is" + httpRequest.getRequestURI().toString());
    session.setAttribute("WELCOME", Boolean.TRUE);
    chain.doFilter(request, response);
    else if (session.getAttribute("WELCOME") == null){
    httpResponse.sendRedirect(path+"/Login");
    else {
    chain.doFilter(request, response);
    else {
    chain.doFilter(request, response);
    Do you think it looks right ?
    thanks
    Edited by: Lang on Apr 13, 2012 1:41 AM

  • Where can I find multimedia files tags when browsing under Finder?

    Hello everyone.
    I'm a newbie in the Macworld so I'm visiting these forums looking for help.
    I created several mpeg2-videofiles on Windows XP SP2, Then I added some tags via file explorer (in the contextual menu, properties then summary). When I copied these files on my new Imac I can watch them without any problem: video, audio, sync, everything's fine. Only problem is I cannot retrieve the files tags in Finder. Is there any setting to set, maybe?
    Thanks
    - Fabio

    Okay...I have some more information and perhaps we are getting closer.  On the 250GB, first I went into that disk and used Disk Utilty to re-format it once using Mac OS Extended (Journaled) then a second time, zeroing it out. I did a screen shot to review if needed, and both times it looked perfect...249GB available.  Then I went into the Time Machine preferences to get ready to backup again, and it had not excluded the other external 120GB with iTunes so I excluded it. I may has previously, never noticed in that screen that it takes a bit of time for it to calculate the information to save.  I may have just clicked on it quickly without reviewing it first.  Today I did, and gave it time to calculate.  At one point the actual 250GB itself, showed up and I excluded it too like the 120GB.  After it finished, the calculations are still it wrong - claiming it has a 200GB backup when the iMac either contains 150GB (based on when I do Get Info) on it or from OmniDisk which calculated about 100GB.  I have not allowed Time Machine to do a backup yet, until this discrepancy can be clear.
    One thing that I thought I had seen or reviewed previous on the Time Machine settings was my home folder - I could be wrong but wanted to mention that.  Another little tidbit to ponder an well is that I have a files of icons that I use for the Hard Disks, and a few folders where I Get Info on the Icon and on the destination and just cut and paste.  I did that today to the 250GB after zeroing, but while I was in the Time Machine settings the change was deleted and neither the manufactures icon was there nor mine, and it has the default blue-green one the software uses.  I know, because my sister's is that way on her system-unchanged.
    Feedback?

  • Missing file tags in Explorer

    Hello Forum!
    It seems that since I upgraded to 8.1 I can't view the file tags in Windows Explorer (column "Tags"), neither I see the information in the properties of the file in the details tab.
    However, when I open the file (for instance a *.docx) I'm able to see that information.
    On a machine running Windows 8 RTM I am able to see the tags.
    Any clue whats going on?
    Thanks,
    Patrick
    http://www.syliance.com | http://www.systemcenterrocks.com

    Hi,
    Did you mean that you can't find other file's tag in Windows 8.1 Exporer but *.docx file ok?
    Have you test these file that can't find tag in Windows 8.1 on other system, such as Windows 7 , Windows 8? What about the result?
    I made a test on my test environment, some file doesn't have tag indeed, while .docx file ok.
    If some type file on your computer had the problem, you can told us what the type it is, then we can made a test for you.
    Roger Lu
    TechNet Community Support

  • Html File tag

    hi guys,
    I just want to ask how will you change some things on the pop up window, just like the file types, when you click the browse button when using the file tag?
    Can that be change?... Is that javascript?
    Please help me out...
    Tnx!!!

    I'm not sure what you mean by the English button. First (and hopefully obviously) the button function is the same regardless. Second, it's not set on the server side, so if I were to hit the same page, I would see it in English. Like I said, there are only 2 places where the name could be coming from: either based on the language setting in the OS or the preferences in the browser. Actually, if the browser is just a "Japanese" version, it might just be hard coded in the browser. And you can't manipulate the button via HTML.

  • WebService File tag?

    I'm writing a parser for our site XML so we can analyze our data and I had some questions about the <File> tag contained with the <Track> tag.
    I can't find any documentation on this tag, except that it exists.
    <Track>
    <File>
    <Name />
    <Path />
    <Size />
    <Hash />
    <Handle />
    <Shared />
    </File>
    </Track>
    1. What is the difference between a Track and its file?
    2. What does the <Name> define? One example is: <File#1639302810:"wireless_podcast.mov":protected>
    3. What is the <Hash>? Is it the checksum for the file itself as stored on Apple's servers?
    4. What is the <Path> and can it be used to access the file directly?
    5. What does the <Shared> entry mean? Can a file not be shared?
    6. Can a <Track> have multiple <File> tags and what would that mean?
    Thanks,
    Jason
    Message was edited by: Jason Buckner
    Message was edited by: Jason Buckner

    I am going to attempt to answer your question. Standard disclaimers apply…I do not work for Apple (though hope springs eternal) and so I do not speak ex cathedra…I only say what I "think" is the case.
    1. What is the difference between a Track and its file?
    A "track" is an abstraction in iTunes U (and also likely in the iTunes Store generally speaking). A track always wraps "content", and that content might be an actual file hosted on Apple's servers…or it might not. Consider, for example, what happens when you setup an RSS feed group in iTunes U. In that case, Apple does not actually host your content…you do…so there is no "file" for Apple to reference (the actual content file is on your own RSS server, not anywhere at Apple). But Apple still presents a "track" to the user of iTunes U. So for Apple hosted content, a "track" abstracts a file hosted on Apple's servers…but for content hosted on your own RSS servers, a "track" abstracts a link back to your school.
    2. What does the <Name> define? One example is: <File#1639302810:"wireless_podcast.mov":protected>
    I believe that a "file number" plus a "path" (see below) is a complete specification for finding a track's referenced content when that content is hosted at Apple. The other stuff is likely metadata that Apple uses when setting up any itmss: session when an iTunes U user gets content.
    3. What is the <Hash>? Is it the checksum for the file itself as stored on Apple's servers?
    I am not sure, but I doubt it's a checksum. More likely it's a mechanism Apple uses to quickly identify the actual location of a hosted content file based on its associated track metadata. Were I to hazard a guess, I'd say the hash is stored in the file element so-as-to make finding the actual content file as fast as possible within iTunes once the track is clicked. For example, it might be returned with any associated itmss: links.
    4. What is the <Path> and can it be used to access the file directly?
    Those of us who host content at Apple share the same pool of storage. The pool is likely structured as a large wide tree of directories. The path serves to find the actual location of a file within Apple's pool. I'm positive Apple can use this path, but it serves as only a curiosity to us.
    5. What does the <Shared> entry mean? Can a file not be shared?
    This indicates whether Apple can share a file because you uploaded it. In effect, it says whether Apple hosts the content or not. When you create an RSS feed group, content is not implicitly shared by Apple (because the content is on your server)…and you will see that the "shared" element is "false" in such cases. Different things in iTunes U are shared…for example course/banner images are shared because they are uploaded to Apple. Even sites that do not have the hosting option do upload images to Apple, so they will see that their images are "shared".
    6. Can a <Track> have multiple <File> tags and what would that mean?
    The mapping between a track and its content is one-to-one so far as I know. I do not believe there is any immediate need to change that. I could foresee an instance in which a track might contain multiple instances of the same content (in different resolutions…say perhaps an HD video, SD video, iPhone/iPod touch video) and that the target for the track would depend on the client running iTunes (iPhone versus computer, say). But that's just thinking out loud.

  • System Logs & File Tags - logic board replacement

    Hi,
    I do have some queries for the logic board replacement on macbook pro running Yosemite:
    If logic board is replaced -
    1) Does the system log files available in console [Finder -> Applications -> Utilities -> Console] gets deleted or they will still be showing up from the date prior to the replacement of the logic board?
    2) If I've created file tags before LB replacement, will they still show up after the replacement?
    Any insight into the above will be of immense help.
    Thanks.

    It would need to be done by Apple Service. They should have the equipment to do this. Your serial number can be found under the battery and on you box your MacBook came in.

  • HT204382 Got a 75MB video file tagged ".flv"  Won't open with Quicktime. What do I need?

    Got a 75MB video file tagged ".flv"  Won't open with Quicktime. What do I need?

    Download vlc player. It plays most formats of video and audio.
    Ryan

Maybe you are looking for

  • How do I get the startup page with tabs like "tools" etc.?

    == Issue == I have another kind of problem with Firefox == Description == I have re-installed Firefox but how can I get a normal startup page with a normal toolbar (tabs like "Tools", slot for writing web address etc.)? == Firefox version == 3.6.6 ==

  • How to reformat all JSFF files in a project

    I am working with a huge project, with multiple jsff files. All these JSFF files are formatted using JDeveloper default Reformat function. At the moment, I have created an external Java Application to read and modify all JSFF files under this project

  • Is there any function module to lock t024 table

    is there lock object for t024 table?otherwise any fm for locking t024 table?

  • 3d constraints - shape layer materials, missing front

    Hi, Im a newbie to 3d in PS CS6 I have some text converted to a shape layer and then converted to New 3d Extrusion. I have all sides for materials instead of the front. The front seems to have broken into Boundary contraints, so was wondering is it p

  • Transferring from Tiger to Leopard across 2 macs: need same username?

    Hi, I just got a new (well second hand) Macbook running Leopard to replace my iBook G4 running Tiger. The Macbook's main admin account is named, simply enough, "Admin" (short username and home directory 'admin' lowercase). The iBook's main admin acco