Invocation problem

Hi all

I'm trying to implement MediaPlayer invocation in my application, but faced the following problem. Here is the code:

Invocation {
    id: mediaPlayerInvocation

    query: InvokeQuery {
        invokeTargetId: "sys.mediaplayer.previewer"
        mimeType:       "video/mp4"
        uri:            "file:///accounts/1000/shared/downloads/video.mp4"
        invokeActionId: "bb.action.OPEN"
    }

    onArmed: {
        console.debug("ARMED");
    }
}

However, I always get the following when you start the application error message:

Warning: InvocationWrapper::onQueryFinished: no matching result from Menu Service for query
   mimeType="video/mp4"
   uri=QUrl("file:///accounts/1000/shared/downloads/video.mp4")
   data= ""
   metadata= QMap()
   perimeter= 0
   action= "bb.action.OPEN"
   target= "sys.mediaplayer.previewer"
   invokerIncluded= false
Warning: InvocationPrivate::onQueryResolved: no result matching query, no armed signal sent.

and therefore does not all subsequent calls to mediaPlayerInvocation.trigger ("bb.action.OPEN") - literally nothing happens.

I tried to omit mimeType, specify a different URL (URL http:// netwok even), but I always get the error "no matching result from Service Menu" as above. I am that running on Z10 OS version 10.2.0.1743. I would be grateful for any suggestion.

Thanks in advance for your help.

Yes, that's exactly what happened to my application too. When BB10.2 came all my related calls (browser, remember, etc.) has stopped working, EXCEPT BBWorld, which always worked well.

I have no sideloaded 10.2.1 so I don't know if they already corrected invocations, but BlackBerry says that they are working. Although 10.2.1 includes a fix it will be some time before it takes place around the world and in the meantime we all had to rewrite our invocations for our applications would continue to operate.

You might want to mark this topic as resolved since he has basically one duplicate of several others.

oleg_derevenetz wrote:

What is interesting, Invocation of BB world still operates in QML. OK, I'll try to do that through C++.

greenmr wrote:

Old news.

Tags: BlackBerry Developers

Similar Questions

  • Web service invocation problem

    Hello
    I have a problem when the .net web service consumption. This web service expects xmlobject that I create using < cfxml > tags. I used < cfinvoke > and CreateObject without success.
    First of all, I am getting following error message: java.lang.IllegalArgumentException: argument type mismatch
    When I update several times (15 or almost) I get following error message: java.lang.IllegalArgumentException: java.lang.ClassCastException@1645559. I don't know where is the problem.

    Thank you
    Mark

    Just realized we have been stolen around for nothing. There is still no universal standard for the passage of XML as arguments to the Web service methods. ColdFusion has its own, as do .NET and Java.

    The single currency among all web services is SOAP. Therefore, a universal way to pass XML from any client to a web service on any platform, is like a SOAP document.

    In your case, you want to make a SOAP document that includes your XML file. You could then move it to the web service using . I googled and found an fully developed for example in houseOfFusion.

  • Problem of invocation in gold 10.2

    Hello

    This is my first post here.

    I would like to know of Invocation problem in gold 10.2

    the invocation always tire/weapons on before even I select one item in the list target invoke and he always print this message in the console:

    InvocationWrapper:nInvokeFinished: action = "bb.action.SHARE", target = "sys.invokeTargetSelection".

    This is what eventually trigger this behavior? in the previous OS version even in Beta 10.2 this job very well, but it breaks all of a sudden in gold 10.2.

    the code I use is to combine the invokeclient and the invoketarget from the example of cascades.

    the sample still works well in gold 10.2, but in my application, combining the two example, always pulls/weapons before ever I selects the item in the list of targets of appeal.

    Update:

    After playing with the example again, I understand that the sys.invokeTargetSelection was always too, but the difference is after selecting the target my application don't do anything, just return to the front page. And I still don't understand how do it works like in the previous version of the OS.

    Thanks before. Sorry for my poor English, as I have not a native speaker.

    I think it's my mistake. After so many trials and errors several days to solve the problem, I found that I added this line of code in the childCardDone slot:

    m_invokeManager-> closeChildCard();

    I think I have add this line of code, because in the previous version of the OS (I don't remember which version of OS exactly) if I call my card in my application while the app is off work without any response to the closure of the card of the child.

    I always wondered why in the previous version, this application works fine with this code.

    in any case, thanks for the help. It is now resolved

  • Problem query invocation 10.1

    I have this code that worked very well in QML on 10.0 but now 10.1 it causes an error this query is a read-only property.

    {Of invocation

    ID: invokeReview

    query: {InvokeQuery}

    MIME type: ' application/x-bb-appworld.

    URI: "appworld://content/9081".

    }

    },

    No idea why this is now a problem and how to set the query in QML.

    I never quite understood how anyone got this works before, because I always got the error of the ReadOnly property.

    Essentially the InvokeQuery object exists already and is assigned to the property of the query, if you want to simply modify its content.

    Either question {mimeType: "...} "} (without the colon or InvokeQuery), or simply assign to individual fields directly, as in query.mimeType: «...» "and query.uri: «...» ».

  • The context of invocation. Simple text sharing problem

    Hello

    I would like to have an option of sharing simple text on my request. To do this, I use this code in my. QML file:

    ActionItem {
         attachedObjects: [
              Invocation {
                   id: invoke
                   query: InvokeQuery {
                        id: invokeQuery
                        mimeType: "text/plain"
                        data: "This is a text text"
                   }
              }
         ]
    
         title: qsTr("Share")
         imageSource: "asset:///images/share.png"
         ActionBar.placement: ActionBarPlacement.OnBar
         onTriggered: {
              invoke.trigger("bb.action.SHARE")
         }
    }
    

    With the above text, I can see the hardcoded text appear in all applications that I can share for (bold line), however, if I use the following line to change the text dynamically to the current item of the list instead I get nothing. No text is common to all:

    data: ListItemData.description
    

    Do you have someone was able to share a dynamic text?

    Thank you

    Well, I managed to find a solution, but I had to use C++ instead of QML. You have here, just in case some of you have the same problem:

    void MyApp::share(QString name, QString surname, QString age)
    {
         printf("Share invoked");
    
         m_pInvocation = Invocation::create(
              InvokeQuery::create()
               .parent(this)
               .mimeType("text/plain")
               .data(name.toUtf8() + surname.toUtf8() + age.toUtf8()));
          QObject::connect(m_pInvocation, SIGNAL(armed()),
            this, SLOT(onArmed()));
          QObject::connect(m_pInvocation, SIGNAL(finished()),
            m_pInvocation, SLOT(deleteLater()));
    }
    
    // Declare the following method as SLOT on your .hpp file
    void MyApp::onArmed() {
        m_pInvocation->trigger("bb.action.SHARE");
    }
    
  • Invocation framework icon problem

    Hello

    I have this problem, I created a group data model to store the possible news of the APP to invoke to share an image.

    I fill out the model of data without problem, include the .label, .name and the icon of each target.

    But when I try to use the icon with the url provided by the application target and my app then says it cannot be found.

    IM receiving this url for foursquare

    "/ apps/com.foursquare.blackberry.gYABgBY3zYaCRi7CDRw5ChZRJ18/public/native/icon.png".

    This is the error log:

    Aug 09 00:17:16.274 com.example.Camculator.testDev__Camculatorfdc2d092.9199832 default 9000 WARNING Image not found: "/ apps/com.foursquare.blackberry.gYABgBY3zYaCRi7CDRw5ChZRJ18/public/native/icon.png".

    And it's happening with all the other objectives inoked, bbm, whatsapp etc.

    What could be the problem?

    Thank you

    OK I found it

    I tried with my Z10 and the icon were broadcast, but in the dev is not alpha!

    So I checked the dev alpha os version is 10.1.0.1483 and the z10 is 10.0.10.690

    The previous version of the os when you try to find a file outside of your app directories you must add "file://" to get there. I knew that, but he never saw the double colon I was trying by "file://", my bad

    If the code would be like this

    QString direc = "file://"+target.icon().toString(); Add the file://

    Entry QVariantMap;
    entry ['imageSource'] = Director; Insert int the entry for the groupdatamodel information

    m_model-> insert (input); Insert the entry int the datamodel

    Director will take this Valley foursquare

    'file:///apps/com.foursquare.blackberry.gYABgBY3zYaCRi7CDRw5ChZRJ18/public/native/icon.png '.

    then read it in my list in qml item

    {To ListView
    ID: model
    dataModel: model

    listItemComponents:]
    {ListItemComponent}
    {StandardListItem}
    Title: ListItemData.label
    imageSource: ListItemData.imageSource
    }}]} ...

    attachedObjects:]

    {GroupDataModel}
    ID: model
    objectName: "modelo".
    }

    'file:///apps/com.foursquare.blackberry.gYABgBY3zYaCRi7CDRw5ChZRJ18/public/native/icon.png '.

    This work!

    Thank you

  • Invocation StartMaxl problem

    We spend 11.1.2.1 to 11.1.2.3.500 and have a problem with the call to StartMaxl.  I have several scripts that call Maxl who formerly just essmsh.  Documentation and blogs, I changed that to call the script StartMaxl of place, \\my-server\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient\bin\StartMaxl.cmd.  The script calls correctly Maxl, but at the end of the Maxl script it does not correctly returns me the rest of my file script beats.  She finished just the program.  I have several scripts where we invoke maxl, do something, come out and then go and do other things.  This does not work in our upgraded environment.  Is there a change Maxl operation where now you can continue is no longer in your program?  Is there an environmental configuration that we miss them?  I guess others have scripts that call multiple mxl files.

    I could get help from the Oracle Support on that.  They suggested using a command to call before the location of the startmaxl.  This did the trick and is probably the equivalent of your/c.

    So, the following correctly run the maxl script but close our of you fighting:

    \\My-server\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient\bin\StartMaxl.cmd mymaxlscript.mxl

    However the following will run the maxl script, then continue on your script primary bat:

    Call \\my-server\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient\bin\StartMaxl.cmd mymaxlscript.mxl

  • Configuration problems - DRS. invocation not complete

    Ciao a tutti, dopo aver added I datastore (MON), ho fatto a check global e mi sono aware di quest' error:

    Invocation of DRS do not complete

    My non riesco a find any information, it cluster e nuovo e no, sono macchine virtuali configure, I parametri del DRS sono quelli di default ed ho tried a n e replace the configurazione.

    Grazie

    Sicuro non trovi nulla Giro if? Hai tried soluzioni come questa?

    http://www.nerdthinking.com/2013/DRS-invocation-not-completed-a-proven-fix/

    Ciao,.

    Luca.

  • invocation popupFetchListener problem

    Hi all
    When I call af:showPopupBehavior from within toolbar, sometimes that the listener does not work, it works when I do tableSelectionListener, is there any problem with popupFetchListener? !!

    Have you tried to set contentDelivery property of popup to lazyUncached?

    Jean Lou

  • C in XCODE build problems with VISAS / NOR

    Hello

    I'm developing a C program to connect with my oscilloscope Tektronix. I inherited this project from a friend (who is currently in the secret), so I can't talk to him on this subject.

    On my system: I'm running OS X 10.8.4, development in XCODE 4.6.3. Initially, I had problems with NI-VISA 5.3, and they are repeated when I upgraded to 5.4 (I thought the upgrade would solve the problem).

    It's also a position of the cross. I posted on the forum of developers to Apple without success (https://discussions.apple.com/message/22681139#22681139). If my problem is solved it there first, I'll post the solution here as well. I don't take sides.

    In fact, my problem is that my program will not be built because of a linker issue. I use the functions of the NI-VISA 5.4 for OS package X 10.8. However, the linker can't find the correct functions for my system:

    Undefined symbols for x86_64 architecture:

    "_viClose", referenced from:

    _setupVI in oscilloscope.o

    _getData in oscilloscope.o

    _closeInstr in oscilloscope.o

    "_viOpen", referenced from:

    _setupVI in oscilloscope.o

    "_viOpenDefaultRM", referenced from:

    _setupVI in oscilloscope.o

    "_viRead", referenced from:

    _setupVI in oscilloscope.o

    _getData in oscilloscope.o

    "_viStatusDesc", referenced from:

    _setupVI in oscilloscope.o

    _getData in oscilloscope.o

    "_viWrite", referenced from:

    _setupVI in oscilloscope.o

    _getData in oscilloscope.o

    LD: symbol not found for architecture x86_64

    Clang: error: the linker command failed with exit code 1 (use - v see invocation)

    This is all pretty basic VISA functions. I struggled in just, including the appropriate header file

    #include

    did not work. When I went to the detailed shape, it worked:

    #include "/ Library/Frameworks/VISA.framework/Versions/A/Headers/visa.h".

    However, then the problem began to occur that I have now - links in the object editor cannot find the code for the functions of the VISA. I tried to change build architctures x86_64 for only x 86, without success. I am currently building in i386 x 86. I also tried (to the title of the Phases of construction-> link binary with libraries) to link the VISA.framework to the project, but this simply gives the error of the linker 'not found VISA framework '. I also tried option-clean.

    I feel I am missing something very obvious. I'm still operating under the notion that either NI-VISA has not been installed in the correct location, or that my configuration settings are incorrect.

    Does anyone have any idea to lend? I searched through various forums for help for almost 2 days now, with nothing doesn't.

    resolved cross wire https://discussions.apple.com/message/22682742#22682742

    copied settings from: Instruments/NI-VISA/Examples/C/ExamplesProject.pbproj National

    done with:

    I ended up using the final settings:

    Architectures

    Architecture: $NATIVE_ARCH_ACTUAL

    Build the Active Architecture only: No.

    Valid architectures: i386, x86_64

    Search paths

    Unframed search paths

    No library search path

    Build Phases

    Link binary with libraries: VISA.framework

    I think it's now/Library/Frameworks in the search paths, what was causing my problems when you try to link binary.

    Thanks to xnav and Frank (had the idea of original law, which I tried but just the wrong way).

  • Problem installing WebWorks / Simulator / push SDK

    Hello

    I tried to install WebWorks / Simulator / SDK to push, but these software use InstallAnywhere as an installer. I have problems after the installer because it stops 3/4 of the download. It goes to 100%, but not the load bar full.

    I still have the error of

    "Fata Application error".

    This request has unexpectedly

    Invocation of this java application has caused an InvocationTargetException. This application will now exit. (LAX)

    "

    I have tried everything I learned from looking around Google and so make me add these following:

    -J' added to my value to C:\Program Files\Java\jdk1.8.0_73 environment variable JAVA_HOME

    -Currently I have this in my WAY: C:\ProgramData\Oracle\Java\javapath, but I changed it to C:\Program Files\Java\jre1.8.0_73\bin. I exchange these values whenever it fails to ensure that one of them works.

    -Command line, I used nameofinstaller.exe LAX_VM "C:\Program Files\Java\jdk1.8.0_73\bin\java.exe"

    Can someone help me install this software without having this problem.

    Recent versions of Java 1.8 broke these installers.  To work around the problem, you can install Java 1.7 and use it to install (change accordingly, JAVA_HOME and PATH environment variables).

  • Attach the file to your e-mail via mailto + invocation framework

    I am tryng to attach a file to an e-mail message using the mailto syntax.

    The email app is opened by the framework of the call

    MailSubject = "Test"
    MailBody = "Hello!";
    
    // create handler invocation
    navigator_invoke_invocation_t *invoke = NULL;
    navigator_invoke_invocation_create(&invoke);
    
    // setting the browser as target
    navigator_invoke_invocation_set_target(invoke, "sys.pim.uib.email.hybridcomposer");
    
    // set invocation action
    navigator_invoke_invocation_set_action(invoke , "bb.action.OPEN, bb.action.SENDEMAIL");
    
    // Setting URI
    navigator_invoke_invocation_set_uri(invoke , ("mailto:[email protected][email protected]&subject=" + MailSubject + "&body=" + MailBody + "&attachment=" + "file:///accounts/1000/shared/print/file").toAscii().data() );
    
    // invoke the target
    navigator_invoke_invocation_send(invoke);
    
    // clean up resources
    navigator_invoke_invocation_destroy(invoke);
    

    I tried to delete file:/// and put / alone but doesn't either.
    The file is located in the shared folder and I know is the only way to attach a file to an email.

    https://developer.BlackBerry.com/native/documentation/core/email.html

    There are a few examples, but none of them have pre-compiled field such cc + object + body + attachments together.

    Can someone help me?

    Thank you

    I went from Json to QVariantMap and no, it works without problem. Here is the code:

        bb::system::InvokeManager InvokeManager;
        bb::system::InvokeRequest InvokeRequest;
    
        QVariantMap EmailData;
        QVariantMap EmailDataWrapper;
    
        EmailData["to"] = "[email protected]";
        EmailData["cc"] = "[email protected]";
        EmailData["subject"] = "MailSubject";
        EmailData["body"] = "MailBody";
        EmailData["attachment"] =  "/accounts/1000/shared/print/file";
    
        EmailDataWrapper["data"] = EmailData;
    
        InvokeRequest.setTarget("sys.pim.uib.email.hybridcomposer");
        InvokeRequest.setAction("bb.action.COMPOSE");
        InvokeRequest.setMimeType("message/rfc822");
        InvokeRequest.setData(bb::PpsObject::encode(EmailDataWrapper , &bool_result) );
    
        InvokeManager.invoke(InvokeRequest);
    
  • Cannot open picture with Invocation

    Hello world

    I want to call the invocation to open the image:

    {Of invocation
    ID: invokeOpen
    query {}
    MIME type: "image/png".
    invokeActionId: "bb.action.VIEW".
    invokeTargetId: "sys.pictures.card.previewer".
    onQueryChanged: {}
    invokeOpen.query.updateQuery)
    }
    }
    onArmed: {}
    If (invokeOpen.query.uri! = "") {}
    Trigger ("BB.action.View");
    }
    }
    }

    In logic:

    invokeOpen.query.uri="file:///accounts/1000/shared/photos/facebook-20140313-102335.png ';
    invokeOpen.query.updateQuery ();

    I also added a lbbsystem to the pro file and assign "shared files permission." But do not work.

    Please help me solve this problem.

    Thank you very much

    Newspapers:

    by default the InvocationWrapper 9000:nQueryFinished: no match
    result from Menu Service to query
    mimeType = "image/png".
    URI="f...:///AC... TS/1..0/SH... Ed/ph... os/fa... 35.png ".
    «"data ="»
    Metadata = QMAP)
    perimeter = 0
    action = "bb.action.VIEW".
    target = "sys.pictures.card.previewer".
    invokerIncluded = false

    Use InvokeManager in C++, I just tried with the exact settings to same as yours and it works.

  • Unbound invocation open the target application selection worksheet.

    Hello

    I'm looking to create an invocation to share a link, but also a picture. I want to open a worksheet that contains apps to draw in order to share an item.

    Q_INVOKABLE void DataItemModel::shareImageUrl() const
    {
     bb::system::InvokeManager manager;
     bb::system::InvokeRequest request;
     request.setAction("bb.action.SHARE");
     request.setMimeType("text/plain");
     request.setData( this->getShareUrl().toUtf8() );
     manager.invoke(request);
    }
    
    Q_INVOKABLE void DataItemModel::shareImage() const
    {
        QString dir = QDir::tempPath() + "/image.jpeg";
        QFile file(dir);        // Saving the image to the file system because the invocation requires it. My images are    downloaded and kept in memory only
        if (file.open(QIODevice::WriteOnly))
        {
            file.write(m_image->getRawImageData());
        }
    
        bb::system::InvokeManager manager;
        bb::system::InvokeRequest request;
    
        request.setAction("bb.action.SHARE");
        request.setMimeType("image/jpeg");
        request.setUri("file://" + dir);
    
        manager.invoke(request);
    }
    

    Here's how I call from QML

                  //Inside a ListView...
                 listItemComponents: [
                     ListItemComponent {
                         type: "item"
                         DataItem {
                             contextActions: [
                                 ActionSet {
                                     ActionItem {
                                         title: qsTr("Share image url")
                                         onTriggered: {
                                             ListItemData.shareImageUrl();
                                         }
                                     }
                                     ActionItem {
                                         title: qsTr("Share image")
                                         onTriggered: {
                                             ListItemData.shareImage();
                                         }
                                     }
                                 }
                           ]
                     ]
    

    In both cases, it only starts the BBM application.

    Since it is a unrelated call, I would expect sheet of selection of the app to show where I could choose NFC Bluetooth, messaging, Facebook, etc. and the plethora of other applications that support sharing.

    To aggravate something like it for a sharing URL works from QML (I wasn't able to share an Image this way via QML however). He opened a sheet with a list of applications in the choice. It is totally confusing, because it seems to be the exact thing I've done in C++.

                                   InvokeActionItem {
                                        query {
                                            mimeType: "text/plain"
                                            invokeActionId: "bb.action.SHARE"
                                        }
                                        onTriggered: {
                                            data = ListItemData.shareUrl
                                        }
                                    }
    

    How would open the worksheet selection app using the framework of the call?

    I had this problem as well a couple of weeks and solved it. When you call and independent, the system will select a logon request. You is better to use a call related, but do not specify a target.

    QString path = QDir::current().absoluteFilePath("shared/photos/avatar.jpg");
    m_pInvocation = Invocation::create(InvokeQuery::create().parent(this).mimeType("image/png").uri(QUrl::fromLocalFile(path)));
    
    m_pInvocation.trigger("bb.action.SHARE");
    
  • Removal of Documents after the Invocation is complete.

    Hi again!

    I need to show all kinds of Documents, since it would takes years to develop a full office suite, I thought it would be great to do just the same thing I do on Android and rely solely on existing applications to manage this problem. Unfortunately, I have to create the file on the SD card, because Connector.open("file:///Store/home/user/") always up a filesystem 1003 error, and I have my first choice which was invocation.setData (someContentToDisplay) and invocation.setType (someMimeType) will open DocsToGo, who will say in turn that the file is not found. "

    Now, all this isn't so bad, if I could just delete the file that has been written on the SD card immediately after that DocsToGo is closed or loses the focus, or better yet, after DocsToGo loaded the file in the memory RAM.

    My current implementation looks like this, the funny is that no exception is thrown, the deleted file is not:

    Doc DocumentEntity is DatabaseHandler.getInstance () .getDecisionDocument (docId);.
    Path String = "file:///SDCard/mobdec/";
    FileConnection fc = (FileConnection) Connector.open (path, Connector.READ_WRITE);
    If (! fc.exists ()) {}
    FC.mkdir ();
    }
    FC. Close();
    String filename = path + doc.getTitle ();
    FC = (FileConnection) Connector.open (filename, Connector.READ_WRITE);
    If (! fc.exists ()) {}
    FC. Create();
    }
    DataOutputStream back = fc.openDataOutputStream ();
    back. Write (doc.getContent ());
    back. Flush();
    back. Close();

    Create the call request.
    Invocation of the invocation = new Invocation (filename);
    invocation.setAction (ContentHandler.ACTION_OPEN);
    invocation.setResponseRequired (false);
    Use the registry to make the call.
    The Registry = Registry.getRegistry ("net.mobiledecision.client.blackberry.MobileDecisionScreen");
    Registry.Invoke (invocation);

    While (invocation.getStatus ()! = Invocation.OK & invocation.getStatus ()! = Invocation.ERROR & invocation.getStatus ()! = Invocation.CANCELLED) {}
    synchronized (THIS) {}
    Wait (50);
    }
    }

    FC. Delete();
    FC. Close();

    Thank you!

    It is not a concept of a 'House' in BBOS directory.

    Regarding your problem, you will not like the options that I will propose:

    (a) have a thread looking for active applications.  If DocsToGo is not active, you can delete the file

    (b) use a FileSystemJournalListener a DMoniteur activity against your file.  When it is closed, delete it.

    Sorry, I can't think of something better.

Maybe you are looking for

  • Why are my upload and decent download speeds but the webpages load slowly (&gt; 5 sec for a google image search)

    My internet speed seems fine. http://www.Speedtest.net/result/2476407148.PNGBut I get the loading time huge to standard Web pages as images, and who's who more than 5 seconds. I have already restarted firefox and it uninstalled/reinstalled. The same

  • Spectrum of HP x 360-13-4003dx: external monitor goes regularly goes black

    Hello I have a HDMI connection on my external monitor and regularly during normal use, the external monitor will be black flick two or three times and then be ok again for a while.  It stays black ranging from 5 to 20 seconds, with the screen saying

  • Windows 7 drivers for hp envy 17-j020ss

    Hello, I have a HP Envy 17 j020ss ( http://www8.hp.com/es/es/products/laptops/product-detail.html?oid=5403323#! tab features = ), but they install Windows 8. Tomorrow I'll be downgrade from Windows 7, but I need the drivers for Windows 7. Can someone

  • PCI Device and SM BUS controller

    Mr President, I am looking for PCI devices and BUS SM Controller.I have treid upgrade my PC, but it doen't work. It shows me to install from the Internet. ID of MODEL - HP COMPAQ NOTEBOOK 15-s004TX PROCESSOR-INTEL i3 PART NO. - J8B59PA OS-WIN 8 64-BI

  • I get a bluescreen IRQL_NOT_LESS_OR_EQUAL

    all of a sudden when I play a game my laptop goes to blue screen, and often bluescreen IRQL_NOT_LESS_OR_EQUAL DMP files: https://onedrive.live.com/redir?resid=BE1B402968E2EC4A%21640 help please