Play for sure / subscription services support for MuVo v

When or rather can we expect a firmware update that will allow MuVo V00 to accept DMR (DRM) subscription services? It currently doesn't support these services. Message Edited by reyn3000 on -28-20062:2 PM

Just an update, transfer is still goin good, so all of you that are having those hangs and slow downs this 3 hot fixes posted in this forum under the MTP Thread seem to work for me. However, being a Regional IT Manager I know that what works for one computer doesnt always apply. I remember seeing the IMPORTANT Note just before I downloaded the firmware and I thought, naw... I dont need any updates, I do my Microsoft Updates so im cool, but the hotfixes mentioned are not CRITICAL updates so you have to manually apply them. In my opinion this is not really a Creative issue since they are depending on the files from the Play For Sure protocal and those are coming from Microsoft, so they have to kind of rely on whats out there and unfortunately for us poor *******s to update. I am wondering if they can include the hotfixes in their install? SOmething that would detect to see if the hotfix is present and if not, install? Just a thought, or at least prompt you to go get the hotfix first then install.

Similar Messages

  • HT5815 im searching a for a update there makes it possible for mac computer with OS X To play games there aren't Supported for power pc, Like Warcraft 3, Diablo 2 and those kind of old games there worked on the previous versions of the OS

    im searching a for a update there makes it possible for mac computer with OS X To play games there aren't Supported for power pc, Like Warcraft 3, Diablo 2 and those kind of old games there worked on the previous versions of the OS

    Here is a thread for you: Is there any possible way to run PPC...: Apple Support Communities

  • Trial for the subscription services for ExportPDF and PDF Pack?

    Is there a way to get a trial for the subscription services for ExportPDF and PDF Pack?

    I've moved your question to the PDF Pack forum for best answer.

  • Web Service Support for WebLogic

    Add Support for Web Services to WebLogic using IONA's XMLBus
    For anyone interested in Web services, IONA has just released a free
    technology preview of iPortal XMLBus, with support for BEA WebLogic 6.0
    patch 1. You can download it today from www.xmlbus.com, a Web site entirely
    dedicated to Web services.
    The iPortal XMLBus Technology Preview enables Java Developers to turn
    existing EJBs and Java Applications into Web services. XMLBus is 100% pure
    Java and installs seamlessly on top of the
    WebLogic. It implements the W3C v1.1 draft specifications of SOAP and WSDL.
    SOAP is the communication protocol used by Web services to traverse over
    HTTP, SNMP, and FTP. WSDL has become the standard for describing Web service
    interfaces in XML.
    XMLBus automates the process of turning Java classes into Web services,
    ensuring that Java developers do not need to learn a whole new programming
    language to turn existing applications into Web services.
    Wizards guide the developer through the identification of interfaces and
    methods the developer wants to become a Web service. The wizard deploys a
    SOAP Listener and a WSDL interface for that Java Class, as well as Java
    client proxy applications. The client proxy can easily be incorporated into
    any Java Application to invoke the corresponding methods described in the
    WSDL.
    Download a free copy of the iPortal XMLBus Technology Preview from:
    http://www.xmlbus.com/work/
    Post Questions to the XMLBus Newsgroup:
    news://inews.iona.com/iona.products.xmlbus
    For more information on SOAP or WSDL, reference: http://www.xmlbus.com/learn
    thanks
    becky
    Rebecca Dias
    Technical Product Manager
    IONA Technologies
    http://www.iona.com
    http://www.xmlbus.com
    Mailto:[email protected]

    This is fixed now. Someone had defined a Servlet for the web service in web.xml that was preventing the EJB container to kick in.
    Edited by: user572625 on Aug 25, 2011 11:54 PM

  • Data Services support for HL7 standard

    Hi everyone,
    We have a Healthcare customer who uses HL7 messages to integrate with their Healthcare applications.
    According to our investigations, this HL7 standard uses the communication protocol MLLP.
    Is this supported by Data Services?
    Thanks a lot!
    David

    Hello David
    As part SAP NL initiative, I have developed an adapter for integrating HL7 application using SAP PI 7.11. This adapter is a consulting solution and it is known as IAH (Integration Adapter for Healthcare). It can communicate HL7 messages over MLLP and has support for all HL7 V 2.X messages. The adapter is already being used by some of our local & international customers.
    Regards
    Vijendra Singh Bhanot
    Edited by: Vijendra Singh Bhanot on Jan 3, 2011 1:54 PM

  • Web Services support for collection like ArrayList

    Getting this error message:
    "<Info> Did not find property empty in java.util.ArrayList:
    java.lang.NullPointerException"
    Are collections like ArrayList supported or am I trying to do something that
    can't be done? Any suggestions?
    Thanks
    Danny

    Hi Danny,
    Betcha thought I forgot 'bout cha, huh?
    I didn't ;-)
    The short answer to your question is no; WLS 6.1 does not support using any of
    the classes in java.util.*. However, it does support Object arrays as an element
    of an Object array, which means you can have code in you service implementation
    that looks like this:
    public Object[] getNestedObjects()
         Object[] objects = new Object[2];
         objects[0] = new Object[]{
              new String("23.76"),
              new Float((float)23.76)
         // Here, WorkOrder is a JavaBean or an object
         // that implements weblogic.soap.xml.XMLizable
         WorkOrder[] workOrders = new WorkOrder[]{
                        new WorkOrder(),
                        new WorkOrder(),
                        new WorkOrder()
         objects[1] = new Object[]{
              new String("My name is"),
              new String("Slim Shady"),
              workOrders
         return objects;
    The main issue I see with doing this is again, interoperability ;-)
    If the SOAP toolkit consuming the WSDL for the web service with the above method
    cannot handle the "xsd:anyType" XML Schema data type, you're in trouble. In general,
    SOAP toolkits want to know what type an element is so they can process it correctly.
    When you use a Variant data type (in Visual Basic) or java.lang.Object (in Java),
    you are basically promoting the use of weak data typing (or late binding). From
    what I've read about SOAP (well, actually what Don Box said he had in mind), XML
    Schema and namespaces were adopted to combat this very thing- weak or no data
    typing. Personally, I agree ;-) I think strong data typing makes processing a
    SOAP request much easier and faster, for everyone. Don't get me wrong, I don't
    have anything against object casting, but SOAP parameters (and return values)
    are not objects. They are XML elements, just like the other parts of the SOAP
    message. There is no behavior, just state. This being the case, isn't it safer
    to stick with the data types (e.g. arrays, structures, primitives, etc.) defined
    in the SOAP spec and "XML Schema Part 2: Datatypes" document? Enough SOAP boxing
    (pun intended). If you are interested in the "complexTypes" object graphs (using
    developer defined classes that implement weblogic.soap.xml.XMLizable) lab results,
    I can send you a zip. The biggest difference between using JavaBeans and objects
    that implement weblogic.soap.xml.XMLizable, is that you have much more control
    over which Java objects the later gets serialized/deserialized to/from. With classes
    that implement weblogic.soap.xml.XMLizable, the SOAP processor passes you the
    actual XML stream for the SOAP parameter (which in this case, is your developer
    defined class). It (the SOAP processor) also calls your developer defined class
    to get an XML representation for it's data types. It works great with Java clients
    (using the client.jar, of course), and I'm trying it out with .NET and MS SOAP
    clients this weekend. The most interesting revelation was figuring out how wsgen
    (well, actually the WSDL processor) generates the information in the <types> element
    of the WSDL ;-) I actually even know how to code an XMLizable so that it produces
    the exact element and attribute names I want. I also figure out how to get it
    to produce an <element ...>, as opposed to a <attribute ...>, and visa versa.
    Of course, WLS 7.0 (and WebLogic Workshop) make all of this a moot point, but
    it was fun to get the SOAP/WSDL processors in WLS 6.1 to "do my bidding" for a
    short while ;-)
    Regards,
    Mike Wooten
    "Danny Ngo" <[email protected]> wrote:
    >
    Hi Mike,
    Thank you for your response. Do you know if WLS 6.1 Web Services support
    the
    return of nested object array (object that contains other object arrays).
    Thanks
    -Danny
    "Michael Wooten" <[email protected]> wrote:
    Hi Danny,
    For interoperability (with non-Java SOAP implementations)reasons, the
    Java collections
    are not supported in WLS 6.1 ;-) You should consider using an arrayin
    place of
    this.
    Regards,
    Mike Wooten
    Danny Ngo <[email protected]> wrote:
    Getting this error message:
    "<Info> Did not find property empty in java.util.ArrayList:
    java.lang.NullPointerException"
    Are collections like ArrayList supported or am I trying to do something
    that
    can't be done? Any suggestions?
    Thanks
    Danny

  • Bad customer service & support for Nokia Penang Se...

    Dear All user or top management of Nokia,
    I would express my feeling with Nokia Jalan Brawn Service Centre, I was newly brought a Nokia E72 on Dec'2009 and give to my VIP customer as gift, after one month time, he feedback the mic can't function and give back to me for getting the claim and repair, i bring to the communication shop i origin buy the phone to ask for help, this time the sales girl helpping to check, the feedback is the mic is not perform well and the advice to enable the repair be done in a short period, the better suggestion is bring to Nokia service centre. I directly bring to the Nokia center, this time the custmer service had test on the phone & agree that the phone may have the mic problem and told me to bring back the phone after repair by the next day. The outlook of the phone was showing in the good condition. Which can be prove on the job order form, the remark on the warrantee is "1 trans, bp-41(0379), batt cvr, 4 gbmmc"
    After the next day, i call up nokia to ask for the status of the phone, the feedback is yet done and ask to call on the next day.
    I do call again on the next day, this time the customer service feedback is, the phone only able to recover after two week, this is due to the system module is unfunctional. I have no choice, just only wait for two more week....
    After two weeks, i call again, is ready dissapointed, the feedback from the customer service is the Nokia having problem on sending to part.....is out of stock....and need to wait for two more weeks.
    Again & again, i call up after two week, the bad result again, there is the wrong system module was order by them, there need to wait until they call me....
    This time no time commit from them, therefore i just wait....but it seem like no feedback under a week before chinese new year, i call them, the same feedback is yet received the order from Nokia...
    I have a comment with Nikia here, it this the good care to customer buy need to do the replacement in the lastest model by take at least 1 month time.....i was very angry to told the CS, is the phone can't ready before CNY, i will reject the phone. I phone the latest model with the higher price is because is new, i believe the price had depreciate for the two month past time....is meaning less to me for buy the latest model for Nokia phone.
    Some 4pm before a day of CNY, i do received a call, ya! this time, the phone had ready for pick up....
    On 25 Feb, 2010, 5.30pm, i'm in very happy mood to collect back the phone, after checking on the phone, i get shock....the stanless still case was scatches very were....this time i had inform the customer service, but they keep on argue in very unpolite way & no replacement can make.....
    Is very disappointed.......
    Is this a Nokia correct mission....on customer care?
    Is this services give the Nokia today reputation?
    Is the Nokia top managemt know on this bad services?
    I still hope, can have the feedback from Nokia top management how i able the trace is fairness....with gave back the claim on the scatches happend after send to the "Hello' service Centre (M) Sdn. Bhd. in this two months time.... 
    Attachments:
    SKMBT_C25310022617270.pdf ‏333 KB
    IMG00114-20100226-1724.jpg ‏396 KB
    IMG00115-20100226-1725.jpg ‏474 KB

    The "top management of nokia" will not see your complaint here.
    To get a response from nokia you need to write them a letter or contact nokia care in your country.

  • Request for input about Forte support for the Eurocurrency

    The design work for Forte support for the Euro currency is underway.
    The Euro becomes legal at the start of 1999.
    It is important that Forte support for the Euro currency provides
    all the features that knowledgeable users will expect and require.
    Please email me ([email protected]) before July 31 if you know of
    features that should be supported, or if you have suggestions or
    thoughts of any kind regarding supporting the Euro currency.
    Thanks ..
    Walt Loew
    Forte Engineering
    Walt Loew [email protected]
    Forte Software Inc. 510.869.3428
    1800 Harrison St.
    Oakland CA. 94612
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Jonathan,
    Contact BEA sales, I believe that version 7.0 supports the seamless
    replacement of security providers and that several major security vendors
    have developed providers that are or will shortly be commercially available.
    Alex
    "Jonathan" <[email protected]> wrote in message
    news:[email protected]..
    First off, this may seem redundant.
    Our company is looking for security products that can be used to
    secure the Weblogic Application server. We are currently upgrading
    from 5.1 to 7.0 and left to my own devices I would use the Security
    that is built into weblogic.
    However in order to do the due diligence I need to provide other
    options i.e. get a product that can be configured to provide security
    for the Application server. An additional nice to have feature would
    be security for resources outside of Weblogic.
    My primary request is for any websites that give a comparison of
    such tools. but if anyone has experience using a security tool with
    weblogic, it would be great to hear this. If anyone has used an
    external LDAP server with Weblogic 7.0 that would be interesting also.

  • Snes emulator for mountain lion with support for usb controller dongle

    Hi,
    I recently downloaded an snes emulator online and found that it does run the super nintendo game fine though it doesn't have support for the usb dongle for the controller. By any chance does anyone know a emular plug in or emulator for mountain lion that has this support for a usb joystick.

    Thanks for the reply. Still curious if Apple did right by their customers as the support rep implied that they would. I can't confirm either because I discovered tonight that I can't upgrade to Mountain Lion yet until Mariner Software decides to make one of their products compatible with 10.8.  Starting to think I need to find an alternative to their product.

  • Airport problem with iMAC 27" and serious service support for indonesia

    Hi all,
    i can't seem to get any help from anywhere else. so i try to post it here.
    i tried to call the apple store (indonesia) which i bought this imac 27" from. got transfered 4 times and i had to explain it to them all over. in the end i got to speak to the technician and i asked whether i can get a replacement and they don't think it's the correct solution and leave me hanging here.
    the apple store is listed as an apple authorized service provider (AASP) or apple authorized distributor (AAD):
    iBox by Padang Digital Indonesia - Apple Authorised Service Provider
    Puri Imperium Office Plaza, (Belakang Menara Imperium)
    Jl. Kuningan Madya Kav. 5-6, Jakarta
    12980
    Tel: 62 21 8370-iBox (4269); 830 6763
    Fax: 62 21 830 6730
    Email: [email protected]
    Web: http://www.ibox.co.id
    i called the apple support on the apple.com (0018 03061 2009 for indonesia) today wednesday 19 may 2010, time 1:12pm indonesia local time (GMT +7) i didn't get the guy's name but i can tell he's Indian from the accent, i told him what the problem is, he told me to wait, i waited for 10 minutes and he hung up on me at 1:24pm. please check on the record, because i was told the whole conversation was recorded.
    so, let's go to the problem:
    i can't share my internet with airport built-in in my imac 27".
    I'm using ZTE usb hsdpa modem connected to the imac. (fyi, my friend is using the same exact modem and internet provider and don't have any problems with internet sharing using his macbook)
    i tried to share the internet through the airport express simply with these steps:
    1. open the system preferences, internet sharing,
    2. connection with "ZTE usb modem", and the box next to "Airport" is ticked
    3. turn on the internet sharing
    4. press start
    5. yes the firewall is off.
    and these are what i'm having right now:
    1. the airport symbol wont turn into an arrow
    2. when i open the network preferences, it says: AirPort is turned on but is not connected to a network. (color is orange not green)
    3. i searched the wireless network with my ipod touch and i found nothing
    4. if i try to "create a network" here's what it says "There was an error creating your computer-to-computer network."
    5. this are the details on the airport card:
    Software Versions:
    Menu Extra: 6.2 (620.24)
    configd plug-in: 6.2 (620.15.1)
    System Profiler: 6.0 (600.9)
    Network Preference: 6.2 (620.24)
    AirPort Utility: 5.5.1 (551.19)
    IO80211 Family: 3.1 (310.6)
    Interfaces:
    en1:
    Card Type: AirPort Extreme (0x168C, 0x8F)
    Firmware Version: Atheros 9280: 2.1.9.5
    Locale: RoW
    Country Code:
    Supported PHY Modes: 802.11 a/b/g/n
    Supported Channels: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165
    Wake On Wireless: Supported
    Status: Not Associated
    and yes, i've updated all the airport software and i stick on the 10.6.2 os.
    It seems like people who has this latest imac 27" also having problems with the airport express. and they somehow got a replacement.
    http://discussions.apple.com/thread.jspa?threadID=2261196&tstart=0&messageID=109 80828
    so, i really really appreciate if i can get help here.
    many thanks and best regards,
    irene

    If you have anything configured in System Preferences/Network/Airport then you have conflicts configured into the network. I suggest that you start from the beginning. Do not assume anything. Do not take any short cuts. Start fresh.
    Go to Sys Prefs/Sharing turn off Internet Sharing. Go to Sys Prefs/Network, highlight AirPort and press the - symbol below to remove the AirPort interface. Now press the + symbol and create a new AirPort Interface. In the new AirPort interface do not turn on AirPort. You should only select the box to show AirPort Status in the menu bar. Now press Apply.
    Go to Sys Prefs/Sharing and follow the steps 1 through 11 in my first post.
    In step 11 Sys Prefs should ask you to turn on AirPort. Turn it on. It should next ask you to start Internet Sharing. Start Internet Sharing.
    The AirPort Status in the menu bar should show AirPort is on and have an arrow pointing up. In the AirPort Status dropdown menu it should show AirPort is ON, Internet Sharing is ON and it should show the name of the Internet Sharing network that you created.

  • Poor Service Support for BB 8830

    Hi,
    I have purchased a Blackberry 8830 (So called World Phone) and had been using it with Airtel Services in Delhi, India. After approx 3 month the blackberry service stopped working. According to Airtel, the service provider there has been a compatibility issue related to 8830, the dual system handset, which has been in the knowledge of RIM and is under resolution (> 2 months now.). There is absolutely no problem with their network.
    So far no solution has been provided by either Airtel or RIM. I have lost count of the number of calls made to the helpline. Every time they are as helpless and clueless as the last time and they promise a call back within 24 hrs, which has never happened.
    When the hardware and the network both have been by RIM, why the service has not been provided?
    Does it mean RIM has supplied some junk handsets in the market which are useless and an absolute waste of money for the customer?
    Doesn't that amount to cheating by RIM? I believe so and would be happy if RIM roves me wrong.
    I have lost all the hopes from them and now consider the money spent on this handset as lost to some pickpocket.
    Sharing this with this forum to save others from getting cheated, as I had been.
    Hope someone is listening. 
    Madhur Mehrotra

    Greetings, and welcome to the BlackBerry.com Support Forums.
    It appears to me that you received perfectly correct techinical support, advising you to ge the BlackBerry Data plan on your mobile provider account.
    The fact that you don't like that answer, does not mean that is poor or not helpful.
    The need for a BlackBerry Data Plan on your device is mentioned quite frequently, at least on this website and carrier websites that I see. Perhpas you did not do your research thoroughly enough.
    Anyway, now you know your answer. Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Service Support for Note 3 International version N900/N9000, Can it be activated on Verizon Network?

    i have the international version for the Note 3 N900/N9000 Model and i want to know if it can be activated on Verizon

        Thanks so much for asking, houstondue!
    It will not work on our network.
    You can always check http://bit.ly/QwJKVF as well.
    TamaraH_VZW
    Follow us on Twitter @VZWSupport

  • OSX Server DHCP Service - Support for tftp-server or bootp-server entries

    We have a bunch of IP phones that get their initial setup from DHCP. On a Linux box, we can add the entries:
    option tftp-server-name
    or
    option boot-server
    We do this to tell the phones where to download their settings/firmware from. Does OSX DHCP support this? If so, what entries do I have to put in NetInfo/config/dhcp to make this work??
    Thanks!

    Personally I never got that dirty and fiddled aroung os x's bootpd but as you can read in its man page:
    Regardless of whether bootpd knows the type of the option or not, you can always specify the DHCP option using the data
    property list type e.g.:
    <string>dhcpoption128</string>
    <data>
    AAqV1Tzo
    </data>
    that could be possible.
    see man bootpd
    -Ralph

  • TS1717 I foolishly downloaded the latest version of iTunes and now it won't run.  I get a message stating that MSVCR.dll is missing and an error message saying error 7 (Windows error 126).  Click on the support link for iPod + iTunes - no support for iTun

    Why won't the latest version of iTunes run?  I've downloaded it twice.  Come to that, why isn't iTunes an option in the product list on this site?  Apple did make that, didn't they?

    Hey Jim Tracy!
    Here is an article that will help you resolve this issue with your iTunes:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • No support for fuji x, no support for dp merrills, no nikon d7100 ( probably to early)

    I am really wondering if Apple will end develop aperture in the future. Adobe is so much faster and recently also capture one has overtaken aperture in terms of raw support.
    a kingdom for a good support of foveon files.

    Tell Apple directly - Apple is not listening here - the feedback form is a better way (http://www.apple.com/feedback/aperture.html).
    And in this User to User forum we are supposed to avoid speculations and rumors, so we cannot discuss this here:  Apple Support Communities Terms of Use

Maybe you are looking for