Weblogic 6.0sp2, problems useing new XML Registry

I'm trying to configure a parser other than the Built-In Parser, but WLS seems
to still us its default.
I follow the documentation at http://edocs.bea.com/wls/docs60/xml/xml_admin.html#1055027,
and use xerces 1.4.3, also creating a new server that is targeted.
I have attached a java file that I set as a startup class, targeted to myserver.
It shows the classname of saxparsers.
I allways get the following printout:
parserFactory: weblogic.xml.jaxp.RegistrySAXParserFactory
saxParser: weblogic.xml.jaxp.RegistrySAXParser
parser: weblogic.xml.jaxp.RegistryParser
But if I run the program from the command prompt, with xerces in the classpath
I get the following:
parserFactory: org.apache.xerces.jaxp.SAXParserFactoryImpl
saxParser: org.apache.xerces.jaxp.SAXParserImpl
parser: org.xml.sax.helpers.XMLReaderAdapter
Anyone now anything about this, seems like a bug?
-perotto
The parser
[PrintParserInfo.java]

hi,
try keeping the xerces.jar file before the weblogic.jar in the classpath of the
server script...
cuz' weblogic.jar file includes weblogic xerces parser..
but weblogic does not support all the features that xerces 1.4.3 version support.and
they(BEA) does not recommend to use other versions...
hope it will help you..
Vijay
"Per Otto Christensen" <[email protected]> wrote:
>
>
>
I'm trying to configure a parser other than the Built-In Parser, but
WLS seems
to still us its default.
I follow the documentation at http://edocs.bea.com/wls/docs60/xml/xml_admin.html#1055027,
and use xerces 1.4.3, also creating a new server that is targeted.
I have attached a java file that I set as a startup class, targeted to
myserver.
It shows the classname of saxparsers.
I allways get the following printout:
parserFactory: weblogic.xml.jaxp.RegistrySAXParserFactory
saxParser: weblogic.xml.jaxp.RegistrySAXParser
parser: weblogic.xml.jaxp.RegistryParser
But if I run the program from the command prompt, with xerces in the
classpath
I get the following:
parserFactory: org.apache.xerces.jaxp.SAXParserFactoryImpl
saxParser: org.apache.xerces.jaxp.SAXParserImpl
parser: org.xml.sax.helpers.XMLReaderAdapter
Anyone now anything about this, seems like a bug?
-perotto
The parser

Similar Messages

  • Problems using java.xml.xpath - How to get values from DTMNodeList?

    Sorry for the waffle in the subject title, but I was unsure what to call it. I hope this thread is in the correct forum.
    I'm having problems using xpath to parse some data from an XML file. I am able to create an expression which obtains the elements I wish to retreive, but I'm unsure on how to go about getting their values. So far I have..
    public int getTerms(int PMID)
              String uri = "http://www.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=pubmed&id="
                           + PMID + "&retmode=xml";
              // Create an XPath object with the XPathFactory class
              XPathFactory factory = XPathFactory.newInstance();
              XPath xPath = factory.newXPath();
              // Define an InputSource for the XML article
              InputSource inputSource = new InputSource(uri);
              // Create the expression
              String expression = "/PubmedArticleSet/PubmedArticle/MedlineCitation/MeshHeadingList/MeshHeading/DescriptorName";
              // Use this expression to obtain a NodeSet of all the MeSH Headings for the article
              try
                   DTMNodeList nodes = (DTMNodeList) xPath.evaluate(expression,
                         inputSource, XPathConstants.NODESET);
                   int length = nodes.getLength();
                   String[] terms = new String[length];
                   // Test mesh terms are being stored.
                    *for (int i=0; i<length; i++)*
    *                    System.out.println(i + ": " + nodes.item(i).getNodeValue());*
                                                    return nodes.getLength();
              catch (XPathExpressionException e2)
              { System.out.println("Article with PMID " + PMID + " has no associated MeSH terms");}
              // return a default
              return 0;
         } The part in bold is the problematic code. I wish to retreive the values of each of the nodes I have taken into my DTMNodeList using a for loop to iterate through each node, and use the getNodeValue() method from the Node class which should return a string. However, the values I retreive are NULL. In the test document I use, the elements do have values.
    Here is a snippet of the XML file I am reading in:
    <MeshHeadingList>
      <MeshHeading>
      <DescriptorName MajorTopicYN="N">Binding Sites</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Chromatium</DescriptorName>
      <QualifierName MajorTopicYN="Y">enzymology</QualifierName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="Y">Cytochrome c Group</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Electron Spin Resonance Spectroscopy</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Flavins</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Heme</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Hydrogen-Ion Concentration</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Iron</DescriptorName>
      <QualifierName MajorTopicYN="N">analysis</QualifierName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Magnetics</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Oxidation-Reduction</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Protein Binding</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Protein Conformation</DescriptorName>
      </MeshHeading>
    - <MeshHeading>
      <DescriptorName MajorTopicYN="N">Temperature</DescriptorName>
      </MeshHeading>
      </MeshHeadingList>Any help would be appreciated.. thanks :-)

    Answered my own question....
    The element value is actually the child of the node I am current at, so instead of doing:
    i + ": " + nodes.item(i).getNodeValue()); I should have really done:
    i + ": " + nodes.item(i).getChildNode().getNodeValue());

  • Problem using NEW webcam...

    OS win98SE.
    Have successfully installed my new webcam Vista Plus Model: VF0090. I now have a problem using it!
    As per instuctions, I go to WebCam Centre and press 'capture'. I then get a message along the bottom of the screen saying 'this device is not available, it may be used by another resource'.
    I'm completely at a loss as to what the problem could be.
    Any one out there who could help?
    Regards
    Sue

    Got the same problem (1), in addition to the installer freezing (2).
    (1) There seems to be a problem with the software - the driver is OK. I used it to record still pictures and movies with MS Photoeditor, Irfanview, WinTVCap and YahooMessenger.
    I played around for hours at no avail.
    ---> Creative - fix that problem in both Cam Detector and WebCam Center!!!
    (2) The Setup freezes, then when you kill it it comes up with a DOS window complaining about not enough resources (?!?!?!).
    Work-around:
    a - Run Demo.exe from the CD;
    b - it asks for a *.dbd: look for "your region".dbd, e.g. europe.dbd
    c - continue and it will install ...
    However, do not know if the install process is correct, because of problem (1). My guess is that it is, and that the problems (1) and (2) are independent.
    Again:
    ---> Creative - fix that problem in with the setup!!!
    e.g., use a setup which is less "cool" but which is working.
    Regards, Hans

  • Configure a new XML Registry...

    Hi all,
    I made the configuration followed document instruction(http://edocs.bea.com/wlp/docs40/deploygd/refdmain.htm#1120486),
    when I processed 10 step, that is :
    On the portal XML registry page, click the Targets tab. Then move your server
    from the Available to the Chosen list.
    I got a exception message, that is &#8221;Distributed Management&#8221;, please
    find the attachment details:
    BTW, I happened to the same problem in the different computer.
    In addition, I have to edit config.xml file by hand&#65292;I haven&#8217;t met
    other problem currently, I only want to clarify why the above abnormity appeared?
    Wish can get your help, thanks in advance.
    [att1.html]

    These queues are automatically created by OIM during installation. You can verify this by loggin into WLS admin console and going to
    Home >Services > Messaging >JMS Modules >OIM_JMS_MODULE >Summary of Resources

  • Problems using mathml XML Schema in XMLDB

    I have successfully loaded the hierarchy of XML Schema definition documents for the current 'mathml' by adjusting the relative paths in all include and import statements, and by forcing the load to overcome cyclic dependency issues.
    However when I try to create a table using the XMLTYPE or register another schema which is dependent on mathml I receive the following error:
    ERROR at line 1:
    ORA-31079: unable to resolve reference to group "Content-expr.class"
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 37
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 61
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 126
    ORA-06512: at line 14
    Having tried loading into both 9iR2 and 10GR2 databases and pasting the document containing the 'Content-expr.class' into the parent document (i.e. removing the include) I have come to the conclusion that there is a problem with the schema definition.
    However being new to XML I do not know what ths issue is as the file containing the definition (math.xsd) is included well before the references in the parent document.
    Here is the group definition corresponding to the offending reference:
    <xs:group name="Content-expr.class">
    <xs:choice>
    <xs:group ref="ContExpr.class"/>
    <xs:group ref="PresExpr.class"/>
    </xs:choice>
    </xs:group>
    I am also unable to trace which reference is causing the problem as there are several.
    Does anyone have any suggestions as to what could be causing this issue, or how I can obtain further diagnostics?
    Any help much appreciated.
    Robert Honeyman
    *********** New info ***************
    OK. I have tried further to register the schema, and have the following additional information.
    I determined that I thought my problem was cyclic dependencies being resolved ONLY by virtue of the parent file mathml2.xsd. I therefore pasted all the files together in include order so that this was no longer an issue. I then performed the following actions:
    1. I tried to register into Oracle 9iR2 database (9.2.0.4) and received the following error:
    ERROR at line 1:
    ORA-31151: Cyclic definition encountered for group: "Content-expr.class"
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 0
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 131
    ORA-06512: at line 14
    2. I then tried registering the schema into an Oracle 10G Release 2 database as well, and received the following error:
    ORA-31084: error while creating table "MEDLINE"."math729_TAB" for element
    "math"
    ORA-01792: maximum number of columns in a table or view is 1000
    ORA-02310: exceeded maximum number of allowable columns in table
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 37
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 61
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 126
    ORA-06512: at line 14
    My conclusions are as follows:
    1. 9iR2 (the version I was using at least 9.2.0.4) can't handle cyclic dependencies at all, or at least not complex ones.
    2. Neither 9iR2 or 10gR2 can handle cyclic dependencies (or other dependent definitions managed purely by virtue of a parent file with multiple include statements)
    3. 10gR2 can handle cyclic dependencies when they are all defined in the same file or resolved by an explicit include regardless of complexity.
    4. 10gR2 cannot handle highly complex XML Schema definitions due its limit of 1000 columns per table.
    Does anyone have any comments on these conclusions?
    I don't even want to handle Mathml, just another schema definition that imports it. I may try to make my own adjustments.
    Message was edited by:
    rhoneyman
    null

    Thanks, I found the relevant sections in the XML DB 10GR2 documentation (chapter 3 I think). As far as I can tell my options are to either use one of the following:
    - top-down technique creating tables for sub elements in the schema definition
    - bottom-up technique collapsing some of the lower elements into CLOBs (I guess this is semi-structured storage)
    The problem with Mathml is that it seems quite complex, with only one global schema element and many nested elements, hence only one table is created by XMLDB and it logically follows that we run out of columns.
    To get it to work is likely to involve a fair amount of manual schema modification, which incurs a maintenance overhead for me.
    It would be good if Oracle could provide a way of simplifying this maintenance of complex schemas to get them to be registered. I guess this would be increasing the number of columns alllowed for a table or offering some other parametric option for DBMS_XMLSCHEMA.REGISTER_SCHEMA that allowed a threshold and either a top-down or bottom-up approach to be taken automatically.
    For the time being I am using a simplified schema that does not depend on Mathml for my storage needs.

  • Problem using new editor

    Hi people! I hava a strange issue in my machine. I'm currently using SapGUI 710 patch level 7 in my PC. I'm trying to use the new editor, but when I set it and try to open any source codes in SE38 or in SE80 (source codes editor in general) the SapGUI freezes and the only way to get off this, is endind SapLogon with a right click on tray of windows.
    Anyone already seen this? If I use the new editor in other machine with the same SapGUI and same server, its works fine...this problem is specific to my machine...
    Thanks a lot!

    Hi Jack
    I encountered the same problem last week in upgrading from 710 Patch 5 to 710 Patch 9. Uninstalling and applying a previous patch to the last one you installed will fail also. Incidentally prior to installing Patch 9, I was happily editing source code in the new editor.
    This is how I managed to resolve it:
    Had a look around the net and found information on SAPSWEEP.EXE (created by SAP themselves). Used SAPSWEEP.EXE from the setup folder of SAP GUI 640 - this will remove Registry entries and files if you tell it too. I cleared everything at first. If you use this, pull the network cable on the machine in question just in case. It detected a SAP GUI setup I had copied to my Temp folder in case I lost network access, and did think about removing that however I stopped the program running at that point. So it may (I don't know as I did not want it to check the Network drives) delete install instances if you are not careful.
    I then removed the following folders (due to the failed uninstall earlier):
    C:\Program Files\SAP
    C:\Program Files\Common\SAP Shared
    C:\Documents and Settings\<my userid>\SapWorkDir
    C;\Documents and Settings\<my userid>\Local Settings\Temp (all files removed)
    Rebooted laptop.
    Re-installed SAP GUI 710 Patch 0. Editing code worked at this point.
    Re-installed SAP GUI 710 Patch 9 and still able to edit the code.
    I believe my problem came about after a possible corruption involving LIBRFC32.DLL, but I then also lost network connectivity and the ability to acquire a DHCP delivered IP Address. I understand that in 710 the RFC methods have been enhanced, plus MS recompiled the LIBRFC32.DLL using Visual Studio 2005 (rather than .NET 2003).
    I have not upgraded to Patch 10 (corporately we are evaluating Patch 9 for release).
    Hope that helps to get you back editing again!
    Nick

  • Problems using new embedding method

    My embedded Quicktime movies don't always play correctly! The problem I am having is when I load the page - rather than playing the movie at the correct dimensions of 640x376 (16 pixels taller than the .mov for the controller), I get just the quicktime controller centered in my "theater" without a picture, as if it's been squashed. See if this happens for you as well at the link below. If it plays fine try reloading a few times, for me it goes back and forth between working and not working.
    Here's a sample page with the problem I'm having:
    http://www.ghostlightdigital.com/portfolio/prototype/train/low/
    I've followed the instructions for "External JavaScript Solution Two" found in the doccument at http://developer.apple.com/internet/ieembedprep.html but am still seeing problems in my website. I have many videos on this website at varying qualities, but I stick to basic HTML with some javascript (the latter I am no good at).
    Here is the movie file that should play in my page:
    http://www.ghostlightdigital.com/portfolio/prototype/train/low/prototype-train-l ow.mov
    Here's the code I've included in that page where the movie should play:
    <script language="JavaScript" type="text/javascript">
    QT_WriteOBJECT('prototype-train-low.mov', '640', '376', '',
    "autoplay", "true",
    "align", "middle");
    </script>
    Here's the code included in the <HEAD> tag of the page:
    <script src="http://www.ghostlightdigital.com/portfolio/includefiles/ghostlight-quickti me.js" language="JavaScript" type="text/javascript"></script>
    Here's the external Javascript file (unmodified since I downloaded it, except re-named):
    http://www.ghostlightdigital.com/portfolio/includefiles/ghostlight-quicktime.js
    Phew, okay! I've looked around these discussions and haven't found a solution. The same problem happens on my G5 using the same OSX and Safari. Can anyone tell me what I'm doing wrong? Thanks for helping!
    -James
    G5   Mac OS X (10.3.8)   Safari 1.3.2 (v312.6)

    The page loads just fine and both the low and high versions show a 640X360 video (plus the QT controller). Safari 2.0.4 and Tiger 4.7.
    The page source code is correct. Your link to the "download" should include text that asks the visitors to right-click (Control-click) and choose to "save linked file". As it works now most visitors will only have you movie open in a new window if they just click the direct link. Only QT Pro users can save from this new window.

  • Problems using new nano during workouts

    I bought my new nano for more capacity than my 1st gen, which still works fine. But the touch screen does not work as well for me as the clickwheel did. The best location for the nano is clipped to my waistband, and I can operate the clickwheel by feel, to change volume or skip or repeat selections, which I do frequently during long workouts. But the touchscreen goes to sleep, and in any case I can't find the controls without taking off the new nano and looking at the screen. Sweaty clothes rubbing over it also actuate the touchscreen menus sometimes. So I've given up on using it and have gone back to using my old nano. Too bad, Apple presents the new nano as a workout tool but it certainly doesn't work that way for me. I'll try to figure out some way to get rid of it and get a slightly older refurb-ed nano with a clickwheel.

    I'm sitting at my computer right now with my 6th Generation Nano (Product Red) and my Ultimate Ears headphones and that adapter. I'm able to skip to the next song, return to the start of that song, pause, hear voiceover, raise the volume, lower the volume, ...Works like a champ and I've never had a problem with sweat getting into the switches when I used it with my 3rd Generation Shuffle OR with my 6th Generation Nano.
    I do suggest you use Google and find a plastic docking plug for the Nano when you use it while working out. It says that about the adapter because that is what it was developed for. It will work just fine with the Etymotic.

  • Problem using JSTL XML tags.

    My xml tag is giving problems. All other tags (core/sql and EL) are working fine. Even a very simple code like :
    <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <!-- parse an XML document -->
    <x:parse var="simple">
    <a>
    <b>
    <c>C </c>
    </b>
    <d>
    <e> E </e>
    </d>
    </a>
    </x:parse>
    <!-- display using XPath expressions -->
    <x:out select="$simple//e"/>
    gives error as :
    javax.servlet.ServletException: Cannot inherit from final class
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:867)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:800)
         org.apache.jsp.jsp.xml.first_jsp._jspService(first_jsp.java:65)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    Pls. help!

    Works with no problems for me. (same exact code posted into a JSP)
    Running on Tomcat 5, Java1.4
    What server are you running, and version of java?
    Is there anything else on the page? Are you extending a class somehow?
    Do you have any extra libraries in the web-inf/lib directory that might be conflicting?

  • Xslproceesor problem and new xml parser.

    I'm curious how I can use javascript in xsl. I can use user defined script with xsl which provided by Microsoft. but I'm not sure with oracle. I heard that it's possible to use that. so I wanna know that.
    I need exact example to use this.
    This is an example for msxsl. if anybody know this to use with oracle. please let me know.
    and I need new xmlparserv2_2029, where can I get it? thanks. please let me know.
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
              xmlns:msxsl="http://www-microsoft-com/XSL/Transform/"
              xmlns:user="urn:my-scripts"
    version="1.0">
    <msxsl:script language="JAVAScript" implements-prefix="user">
    </msxsl:script>

    Thanks for the pointers! I hadn't encountered lazy-DOM before. It sounds like an interesting idea, although I think its goal is quite different from PAX. I found the following quote in a description of it on the Xerces website: "This shortens the time it takes to parse an XML file and create a DOM tree at the expense of requiring more memory during parsing and traversing the document." So it takes even more memory than a standard DOM parser.
    I'll definitely check out the xml.org discussion list. I've been looking for a good place to get feedback, and this board seemed like a likely candidate.
    Peter

  • Problem using new ABAP editor in GUI 7.20

    Hi Guys,
    I need some help. I am running SAP GUI 7.20 on Windows 7 professional.
    When I open the new ABAP editor from SE38 it does not open the mouse pointer keeps rotating for ever.
    I tried changing the setting to ABAP Editor old. It did work this time, I could open the ABAP editor.
    I also tried uninstalling and re installing the SAP GUI,but the problem persists.
    Please suggest if anyone has a solution for this.
    Thanks
    Ramya

    Hi
    check OSS Note 1456628 This may be helpful  [Click here|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1456628]
    4.1.1.1 Fixed a CrossThreadException due to the change of the mouse cursor in the repair background worker. Fix an KeyNotFoundException in the construction of the tree in the edit form.
    also did you try Installing MSXML 4.0 software as mentioned by Suresh Dareddy
    [Ref Post|http://forums.sdn.sap.com/profile.jspa?userID=3753798]
    Regards,
    koolspy.

  • NSS326 Problems Using New SFTP Features

    Is anyone else having issues using the new SFTP feature that was released in the 1.2 firmware?  We are running firmware 1.3.  When we try to connect to the NSS326 via SFTP, the only user that can login is "admin" and they get placed directly into the root of the device.  We want to use the SFTP feature to backup Communications Manager (which requires SFTP) but being dumped into the "root" does not appear to give us access to the vast disk space on the unit, so the backup fails.  Is there a way to configure the SFTP options, because the administration GUI only specifies FTPS (Explicit)?  Thanks.

    On my NSS326, I have a single RAID-6 volume and it's mounted under /share/MD0_DATA.  Each shared folder is containted in that directory (i.e. Web), but is also symlinked to /share, so my Web content is available under /share/Web.   If you create a new "backups" shared folder, for example, it should be available under /share/backups.  You could try specifying that destination directory for your SFTP backups.

  • Problems using new version with many sites including facebook...how do I uninstall it NOW

    Can't access a multi-list site for my business as a real estate agent...totally screwed up my chats on facebook...I want to uninstall this new version

    -> [[Uninstalling Firefox]] - Uninstall your current Firefox
    * REMOVE USER DATA AND SETTINGS
    * Restart your system
    -> Download latest Firefox version from one of these links using some other Web Browser:
    * http://www.mozilla.com/en-US/firefox/new/
    * http://www.mozilla.com/en-US/firefox/central/
    * http://www.mozilla.com/en-US/firefox/fx/
    * http://www.mozilla.com/en-US/firefox/all.html
    -> [[Installing Firefox]]
    Check and tell if its working.

  • Problem using new modem with TC

    Hello all.  I successfully set up a new AT&T DSL modem today which is working good when connected to my iMac.  But when I connected it to the WAN on the TC things weren't working like before.  Using AirPort Utility, I did a factory reset and while going through the setup routine, I got a message that I never saw with the old modem:
    So I hit continue
    Then update.  After finishing and closing AirPort Utility, the iMac complained:
    And of course I can't go online using TC.  Any advice?

    The message was right .. you should have put the TC in bridge mode.. you have smashed the setup by using double NAT and something is also using your address..
    Shut down everything.. reboot in order.. modem.. TC.. computers. 2min gap for everything.
    That should get rid of the IP conflict.. then do the setup again. This time follow the instruction to bridge the TC.

  • Problems using new apple earbuds

    I have just purchased and iPhone 5 and I'm unable to adjust the music volumes, play, pause, etc on the new apple EarPods.
    Any help would be much appreciated!!

    Yes. The only thing that won't work are the volume buttons.
    http://support.apple.com/kb/HT3310

Maybe you are looking for

  • Hyperion Essbase Error: 1002097 Unable to load database [PlanType1]

    Hello, I am running Hyperion Essbase 9.2.0.3 version. This has happened 3 times now since last 2 weeks. I had to restore the APP folder from previous backup. The message that i see is Error: 1002097 Unable to load database [PlanType1] I have searched

  • Need to activate batch mangement in material master

    Hi MM  Experts, Need your all help in the below issue We need to select batch management for the material code but system will not allow selecting in material master, as per SAP note 30656; we removed complete stock from the same plant  but some prev

  • Blocking Invoice

    Hi All I see in the website: http://help.sap.com/saphelp_47x200/helpdata/en/a8/b99539452b11d189430000e829fbbd/frameset.htm. I understand all in this web. but I want to try on the system. I already created PO with quantity 222 pc  (price: 200 USD), Go

  • Forefront Endpoint Protection for AV

    Hi everyone, Happy New Year! Since Microsoft will stop shipping Anti-Virus updates to the MS Security Essentials consumer product for XP when support ceases in April this year, does that mean our customers will no longer be receiving MS FEP anti-Viru

  • PSE 8 panorama doesn't work

    Hi, I'm trialling PSE 8 and I'm getting "Error 1 Unable to create window - os error [1400] line 364 var w = new window" when I try to create a photomerge panorama. It does this with as few as 2 photos. PSE 5 works but the photo is a bit of a mess if