Resource of transmission by proxy error in WSRP Portlet - invalid soap message.

Hello

We strive to use portlet WebCenter Portlan (11.1.1.7).

In a simple application with jsr-286 Portlet on WSRP, we are facing the problem to send embedder resource binary (as picture) in the method of serveResource, using OutputStream of ResourceResponse.

If the resources are simple text (javascript file) - successfully transmitted.


Example:

View.jsp

<img src="<portlet:resourceURL id="image"/>"/>

Portlet1.Java

    @Override
    public void serveResource(ResourceRequest request, ResourceResponse response)
                                        throws PortletException, IOException {
        String resourceID = request.getResourceID();
        System.out.println("Serving resources, resourceId = " + resourceID);

        InputStream is = Portlet1.class.getClassLoader().getResourceAsStream("test.png");
        System.out.println("inputStream = " + is);
        ByteArrayOutputStream buffer = new ByteArrayOutputStream();
        int nRead;
        byte[] data = new byte[16384];
        while ((nRead = is.read(data, 0, data.length)) != -1) {
                        buffer.write(data, 0, nRead);
        }
        OutputStream outStream = response.getPortletOutputStream();
        outStream.write(buffer.toByteArray());      
        outStream.flush();        
        System.out.println("end of serveResource");
    }

When open portal page located portlet, not loaded image. And exception in the server log is:

Serving resources, ResourceID = image
inputStream = java.io.BufferedInputStream@3dd981
end of serveResource
< PortletResourceServlet > < _process > transmission error proxy resources.
oracle.portlet.client.container.PortletRemoteException: oracle.portlet.wsrp.WSRPRemoteException: java.rmi.RemoteException: envelope parsing error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]; nested exception is:
javax.xml.soap.SOAPException: parse envelope error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]
at oracle.portlet.client.techimpl.wsrp.WSRPBaseTerminalPipe.processException(WSRPBaseTerminalPipe.java:119)
at oracle.portlet.client.techimpl.wsrp.WSRPResourceOperationPipe.execute(WSRPResourceOperationPipe.java:309)
at oracle.portlet.client.techimpl.wsrp.WSRPResourceOperationPipe.pre(WSRPResourceOperationPipe.java:55)
at oracle.portlet.client.service.pipeline.PipeContext.internalExecute2(PipeContext.java:650)
to oracle.portlet.client.service.pipeline.PipeContext.access$ 000 (PipeContext.java:48)
to oracle.portlet.client.service.pipeline.PipeContext$ 1.run(PipeContext.java:498)
at java.security.AccessController.doPrivileged (Native Method)
at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
to oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ ActionExecutorWrapper.execute (AbstractSubjectSecurity.java:242)
to oracle.security.jps.internal.jaas.CascadeActionExecutor$ SubjectPrivilegedExceptionAction.run (CascadeActionExecutor.java:83)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
at weblogic.security.Security.runAs(Security.java:61)
at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
to oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ ActionExecutorWrapper.execute (AbstractSubjectSecurity.java:242)
at oracle.security.jps.internal.jaas.AbstractSubjectSecurity.executeAs(AbstractSubjectSecurity.java:196)
at oracle.portlet.client.service.pipeline.PipeContext.internalExecute(PipeContext.java:502)
at oracle.portlet.client.service.pipeline.PipeContextRunnable.run(PipeContextRunnable.java:23)
to java.util.concurrent.Executors$ RunnableAdapter.call (Executors.java:441)
to java.util.concurrent.FutureTask$ Sync.innerRun (FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
to oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$ Worker.runTask (ModifiedThreadPoolExecutor.java:391)


to oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$ Worker.run (ModifiedThreadPoolExecutor.java:416)
at java.lang.Thread.run(Thread.java:662)
Caused by: oracle.portlet.wsrp.WSRPRemoteException: java.rmi.RemoteException: envelope parsing error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]; nested exception is:
javax.xml.soap.SOAPException: parse envelope error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]
at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeJaxbToSoap.getResource(WSRP_v2_Markup_PortTypeJaxbToSoap.java:333)
at oracle.portlet.wsrp.v2.ServerToWSRPv2.getResource(ServerToWSRPv2.java:6146)
at oracle.portlet.client.connection.wsrp.ActivityServerWrapper.getResource(ActivityServerWrapper.java:236)
at oracle.portlet.client.techimpl.wsrp.WSRPResourceOperationPipe.execute(WSRPResourceOperationPipe.java:141)
... 24 more
Caused by: java.rmi.RemoteException: envelope parsing error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]; nested exception is:
javax.xml.soap.SOAPException: parse envelope error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]
at oracle.portlet.wsrp.v2.soap.runtime.WSRP_v2_Markup_Binding_SOAP_Stub.getResource(WSRP_v2_Markup_Binding_SOAP_Stub.java:567)
at oracle.portlet.wsrp.v2.WSRP_v2_Markup_PortTypeJaxbToSoap.getResource(WSRP_v2_Markup_PortTypeJaxbToSoap.java:229)
... more than 27
Caused by: javax.xml.soap.SOAPException: parse envelope error: probably because of an invalid SOAP message. : illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]
at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.createEnvelope(AbstractSOAPImplementation.java:137)
at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:95)
at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:64)
at oracle.j2ee.ws.saaj.soap.MessageImpl.getSOAPBody (MessageImpl.java:1586)
at oracle.j2ee.ws.client.StubBase._preHandlingHook(StubBase.java:887)
at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:275)
at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:148)
at oracle.portlet.wsrp.v2.soap.runtime.WSRP_v2_Markup_Binding_SOAP_Stub.getResource(WSRP_v2_Markup_Binding_SOAP_Stub.java:507)
... 28 more
Caused by: com.ctc.wstx.exc.WstxUnexpectedCharException: illegal character (CTRL-CHAR, code 26))
[row, col {source unknown}]: [3.1]
at com.ctc.wstx.sr.StreamScanner.throwInvalidSpace(StreamScanner.java:639)
at com.ctc.wstx.sr.BasicStreamReader.readTextSecondary(BasicStreamReader.java:4624)
at com.ctc.wstx.sr.BasicStreamReader.finishToken(BasicStreamReader.java:3661)
at com.ctc.wstx.sr.BasicStreamReader.safeFinishToken(BasicStreamReader.java:3615)
at com.ctc.wstx.sr.BasicStreamReader.getText(BasicStreamReader.java:845)
at oracle.j2ee.ws.saaj.util.ResettableXMLStreamReader.getText(ResettableXMLStreamReader.java:153)
at oracle.j2ee.ws.saaj.soap.StaxHandler.staxParse(StaxHandler.java:124)
at oracle.j2ee.ws.saaj.soap.StaxHandler.staxParse(StaxHandler.java:66)
at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.getStaXParsedEnvelope(AbstractSOAPImplementation.java:207)
at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.createEnvelope(AbstractSOAPImplementation.java:58)
... 35 more

What I am doing wrong?

Solved: required to set the correct content for the response type.

response.setContentType("image/png");

Tags: Fusion Middleware

Similar Questions

  • I get a 502 proxy error when I try to access facebook

    When I try to log on to facebook, I get a 502 proxy error that said: there was an invalid response with an upstream server.  Error reading from remote server.  Sometimes it leaves me on my page but doesn't let me do anything else.  This has happened once before and I was able to go to McDonalds WiFi but not my own aerial map.  I called my ISP and they said it was something they had to do to set up with a change in facebook could have done.  12 hours later, the problem has been resolved. It happened again tonight, but support at my ISP said it wasn't them and it is a problem of Microsoft.  What should I do?

    Hello

    Welcome to the Microsoft Community and thanks for posting the question. I see that you are unable to access facebook due to a mistake. Let me help you with the issue.

    1. do you use Internet Explorer to access facebook?

    2. don't you make changes to the computer before the show?

    To resolve this issue, let us try these methods:

    Method 1.

    I suggest you follow the steps in this link: http://answers.microsoft.com/en-us/ie/forum/ie8-windows_other/how-do-i-fix-proxy-error-502/017093f4-cb27-4751-af25-b13315532b8c

    Method 2.

    If you use Internet Explorer to connect to facebook and then follow the steps in this article and then try to connect to facebook.

    Can't access some Web sites in Internet Explorer: http://support.microsoft.com/kb/967897

    Warning: him reset Internet Explorer settings feature might reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings.

    I hope the step preceding helps. If you need further assistance on this particular issue or any other related issue Windows let us know and we will be happy to help you.

    Thank you.

  • With the help of screens LCD producr / consumer in WebLogic WSRP portlet does not work

    I look at the use of displays LCD asynchronously "push" data to Flash in WebLogic portlets components.  I've set up a test with a destination of producer/consumer of LCD screens - the Flash component is the consumer and the producer is implemented in a java Servlet.  The test code is essentially a copy of the script data push in samples of LCD screens.  The test is run in 'local' portlets and portlets that are intended to be consumed by other portals using WSRP.
    When I run the test by using 'local' portlets (i.e., hosted on the same server as the portal and accessible Portal through the portal on this same server) everything works fine.  When I run my servlet of producers, consumers get the asynchronous push.
    However, when the Flash component is a portlet consumed remotely in another portal via WSRP, push does not work.  I have run the servlet, I see local customers, get the message, but the WSRP portlets never gets the message.  I have to do something different to enable LCDs to push to a remotely consumed WSRP portlet data?

    Hi StevePamp,

    To expose to consumer WSRP portlet, add the following instead of the portlet-preferences of the portlet.xml file section. This setting enabled queries SWF files be sent by proxy if the consumer according to the WSRP specification server.

         channel_uri     /messagebroker/amfpolling     true 
    

    The documentation is available here:

    http://help.Adobe.com/en_US/LiveCycleDataServicesES/3.1/developing/WSC 3ff6d0ea77859461172e0811f00f7045b - 7f2bUpdate.html

    I would like to know if it works for you?

    Thank you

    Rohit

  • Proxy sends the AUTHORITY rather than SOAP

    I'm trying to implement the SOAP over SSL communication between an AIR application and a remote server by using basic HTTP authentication. I realized that this is possible to do it via the Web service proxy. I was unable, however, to convince the proxy to talk SOAP, and AUTHORITY. Documentation on the services-config settings. XML has been a bit light and so it's hard to say how the problem can be solved. I compiled the code with Flex 3 Beta 3 and Flex 3.0.0 with the same results.

    After the instantiation of a WebService and configure it to use the proxy (useProxy = true), loadWSDL() causes an AMF message to send to the SOAP server as a kind of a ping. The SOAP server, of course, impossible to analyze it and returns a SOAP fault. WebService, expected AMF in response pours and produces an error, without loading the WSDL file.

    Here is the code used to load the WSDL file.

    var ws:WebService =
    new WebService ('destination.cpiapi.https',
    "https://192.168.1.123:8080/api/cpiapi.php");
    ws.useProxy = true;
    ws.loadWSDL ();

    Here are my services - config.Xml. I'm guessing that there is a problem of configuration somewhere here tells the proxy to talk about the AUTHORITY instead of SOAP. Note that there are references of passage to HTTP and HTTPS in this listing... using SSL was not a problem, so I went to HTTP, so I could sniff the messages without changing my BOM. Ignore this.


    <? XML version = "1.0" encoding = "UTF-8"? >
    <>services-config
    < services >
    < id = "service.cpiapi service"
    Class = "Flex.Messaging.services.http.SOAPProxyAdapter"
    messageTypes = "flex.messaging.messages.HTTPMessage, flex.messaging.messages.SOAPMessage" > "
    < id = "destination.cpiapi.https destination" >
    <>channels
    < ref = "channel.https" / channel >
    < / channels >
    Properties of <>
    < wsdl > http://192.168.1.123:8080 / cpiapi.wsdl < /wsdl & gt;
    < SOAP > http://1921.68.1.123:8080/api/cpiapi.php < /soap & gt;
    < / properties >
    < security >
    < ref = "security.authBasic security-constraint" / > "
    < / security >
    < / destination >
    < / service >
    < / services >
    <>channels
    < id = 'channel-definition channel.https'
    Class = "MX. Messaging.Channels.HTTPChannel">
    < endpoint
    "URI =' http://192.168.1.123:8080/api/cpiapi.php '
    Class = "Flex.Messaging.Endpoints.HTTPEndpoint"
    / >
    < / channel-definition >
    < / channels >
    < security >
    < id = "security.authBasic security-constraint" >
    Basic < auth-method > < / auth-method >
    < / security constraint >
    < / security >
    < / services-config >


    After compiling (SEO services-config. ("XML with the amxmlc flag '-services = services - config.xml") and the execution of the code, call loadWSDL() causes the following message to send to the endpointURI.


    [HTTP Headers deleted]

    "< amfx worm = '3' xmlns =" http://www.macromedia.com/2005/amfx "> "
    < body >
    < object type = "flex.messaging.messages.CommandMessage" >
    features of <>
    body < String > < / string >
    clientId < string > < / string >
    correlationId < string > < / string >
    destination < string > < / string >
    headers < string > < / string >
    messageId < string > < / string >
    operation of < String > < / string >
    < string > timestamp < / string >
    timeToLive < string > < / string >
    < / characters >
    [ ... ]
    < body / > < / amfx >

    As expected, the server responds with an error code SOAP and an exception is thrown when an attempt is made to decode the fault as the authority for the financial markets.


    [MessagingError message = 'invalid AMFX package. [Content must begin with a < amfx > node ']
    at mx.messaging.channels.amfx::AMFXDecoder$/decodePacket() [E:\dev\flex_3_beta3\sdk\framework s\projects\rpc\src\mx\messaging\channels\amfx\AMFXDecoder.as:155]
    at mx.messaging.channels.amfx::AMFXDecoder/decode() [E:\dev\flex_3_beta3\sdk\frameworks\proje cts\rpc\src\mx\messaging\channels\amfx\AMFXDecoder.as:97]
    at mx.messaging.channels::HTTPChannel/decodePacket() [E:\dev\flex_3_beta3\sdk\frameworks\proj ects\rpc\src\mx\messaging\channels\HTTPChannel.as:545]
    at mx.messaging.channels::HTTPChannel/pingCompleteHandler() [E:\dev\flex_3_beta3\sdk\framewor ks\projects\rpc\src\mx\messaging\channels\HTTPChannel.as:557]
    to ChannelRequestLoader / callEventCallback () [E:\dev\flex_3_beta3\sdk\frameworks\projects\rpc\ src\mx\messaging\channels\HTTPChannel.as:1164]
    to ChannelRequestLoader / completeHandler ([E:\dev\flex_3_beta3\sdk\frameworks\projects\rpc\sr c\mx\messaging\channels\HTTPChannel.as:1200])
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()




    So, my question is, why the proxy talking AMF? When I set useProxy = false, no the AMF message is sent, and SOAP communication goes very well until I have ever setCredentials(user,pass) on the WebService (whith throws a fault, saying me that I need useProxy). Y at - it a config within the services-config. XML which tell HTTPChannel not to send a ping from the AMF?

    Thanks for the reply. I thought incorrectly that the proxy was an integrated/transparent entity in the AIR motor. I put endpoint URI must be the webservice, not the URI of a sort of proxy of the AMF.

    My original goal was to be able to define authentication HTTP headers, as in "Authentication: Basic...". I'd be a bad engineer if I set up a proxy just so that I could use AbstractWebService.set [Remote] Credentials (). My first attempt to do not use a proxy has been to:

    var ws:WebService = new WebService();
    ws.useProxy = false;
    WS.wsdl = «...» » ;
    ws.endpointURI = «...» » ;
    var header: URLRequestHeader =
    New URLRequestHeader ("authentication", "Basic...");
    ws.httpHeaders = header;

    However, the header was ignored. The documentation available for me is not a lot to tell me that if httpHeaders:Object wanted a URLRequestHeader or only a string or only an object of the name pair: value... None of them seem to make a difference. Is the httpHeaders parameter used only in the useProxy = true parameter?

    Thanks again for the help. Any help most to push me in the right direction toward making communication HTTP authenticated SOAP would be greatly appreciated.

  • I installed MSSQL 2005 express Server mgmt studio on my xp machine. but when I open it, giving a small error window, but there is no message in it. Only the OK and the exclamation point is on this window

    I installed MSSQL 2005 express Server mgmt studio on my xp machine. but when I open it, giving a small error window, but there is no message in it. Only the OK and the exclamation point is on this window

    Hello Mohan,

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited on the MSDN forums. Please ask your question in the following forum.

    The SQL Server tools general forum

  • A blue screen (Stop error) has been reported. The message contains the error details.

    Hello Hello.
    can someone help me why this error is coming.
    I use a laptop lenovo.
    Error details:
    product-windows stytem, operating
    ID-1003,
    source-system error,
    version - 5.2.
    sysmbolicname-ER_KRNLCRASH_LOG,
    error code %1, %2 parameter %3, parameter3 %4 parameter 4 %5 2 parameter1

    A blue screen (Stop error) has been reported. The message contains the error details. An event with event ID 1001 might also appear in the event log. This matching event displays information about the specific error that occurred.

    Concerning

    Chandra Murali

    .net developer,

    HYD.

    Hi Murali,

    ·         What is the random question?

    Try the following.

    Method 1: Check for memory questions

    Microsoft Online Crash Analysis - windiag

    Method 2: Updated with the latest chipset and other computer device driver updates. Log in the Web site of the manufacturer to do the same thing.

  • Error 1327 Invalid drive: message E\?

    During the attempt to re - install my printer PSC to my HP Pavilion 305 w with Windows XP, I got the error 1327. Invalid drive: Message E. What can I do?  Thank you.

    Hi CarlaBrowning,
     
    Here's a similar post on this issue. Check the answer given by "Shawn - Support Engineer" and follow the steps proposed by him to solve this problem.
     

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the windows below support article.

    How to back up and restore the registry in Windows

  • Error 6 Handle is invalid

    OK, this has me completely baffled.  A client brings me a laptop and simply told me that the internet does not work.  Yes, I can help with that.  Internet on this laptop is via a card of Kyocera KPC680 airtime wireless and came with Quicklink Mobile software.

    1. uninstalled software, drivers, everything associated with the card and this particular connection.  After you have everything reinstalled, the result is the same.  Error 6: Handle is invalid

    2 found information online indicating that a registry error may be the cause of errors with this type of connection.  With this information, I have CCleaner and do a record check and correct.  Still in train, error 6: Handle is invalid.

    3. after that I got to thinking, maybe Valentine's.  We will try the card in another computer and see if it works.  And in the other computer connects and works very well.  The question therefore with the computer... somewhere.

    4. After talking with the customer a little they tell me the problem started when he installed Norton.  OK, uninstall all Symantec and Norton.  Crossed and made sure it was all gone, including all registry entries.  Still the same error 6: Handle is invalid.

    5. scoured internet for answers and found mention of rarepair.exe, a file which has been shown to work to fix this exact problem in Windows XP and in some cases, Windows Vista.  A little more research links to the same thread of the forum with the same download and the same steps.  Download the file, the scanner on another computer virus and it's free.  Now I think I've tried all the rest, so what can it hurt.  Run the file and it passes through it.  It uninstalls, restarts, relocations and after him affecting everything back up.  Error 6: Handle is invalid

    6 tried to reset tcp/ip stack as suggested by a friend tech... always the same 6 error: Handle is invalid

    I am at a loss.  I tried almost everything I can think and find (or gets suggested by technicians colleagues) and none of it worked.  The only thing I can think of right now is updated the firmware on the card, but if that was the issue, it wouldn't have problems on other computers?

    Someone at - it any other suggestions?

    Hi RKCompServices,

    1. is the airtime wireless card detected in Device Manager?
    2. when exactly you receive the error message?

    First check if the air card is detected by windows in Device Manager.

    1. Open Device Manager by clicking the Start button, click Control Panel, clicking system and Maintenance, and then clicking Device Manager. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    If the air card is detected in the Device Manager, then go to the link below and check if there is an update available for the aerial map download and install, check if it works.

    http://www.Kyocera-Wireless.com/KPC680-PC-card/firmware.htm

    Use the link below to download the Norton removal tool to completely remove Norton of the computer.
    Download and run the Norton removal tool
    http://Service1.Symantec.com/support/tsgeninfo.nsf/docid/2005033108162039

    I hope this helps!

    Halima S - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Error 0 x 80090009: invalid flags specified, when I try to delete documents, photos, etc. by right click; Impossible to remove; Vista Home Premium

    I'm unable to delete documents, photos, etc. of my files by the usual method of mouse right click and selecting delete. The message "error 0 x 80090009: Invalid Flags specified" appears and click Try Again does not help. I emptied the Recycle Bin to make sure that it was not complete. I have Vista Home Premium.

    Thank you. I have gone through articles. They were somewhat useful.  It seems that the trash does not accept the delete, but I can work around it by removing permanently without going through the trash using the click, move, delete approach.

  • "Error 1327. Driver invalid: J:\ »

    When I try to install a program, the error message "Error 1327. Driver invalid: J:\"just stop the installation program.

    There is no J drive on the computer.

    Hi John,.

    Thanks for the reply.

    I would like to know if you have followed the remaining steps other than the boot such as suggested in the previous post.

    Otherwise, follow them and let us know if the problem persists.

    Feel free to contact us for any question related to Windows .

  • Error downloading: digest of invalid signature for main manifest file assigns System.exit unauthorized calls!

    Hello fellow sufferers!

    I am trying to download my first application at BB appworld. While trying to download the file * .bar, I get this error:

    Digest of invalid signature for main manifest file assigns System.exit unauthorized calls!

    What does this errormessage?

    It's my MANIFESTO. MF file:

    Archive-manifest-Version: 1.1
    Archive-created-by: BlackBerry Tablet OS Elf BAR Packager 1.3.1

    Package-Type: application
    The author of the package: -.
    Package name: de.helex.clipmanlite
    Package version: 1.0.2.0
    Package-Architecture: armle-v7
    Package-author-certificate hash: _QCY8j3bSpt-67mhJLED-4xZooXxA7vZBMu2MbHI97SYlh5aoRxaHi44Ie-WMfh9-AGPG2YnwlW7X-AJ-A7xPQ
    Package-author-Id: gYAAgEPQ7F7MvQXnpyTXcW_b9KQ
    Package-Id: gYABgFYDI7fyWoGVx88_tVwB_Ic
    Package-Version-Id: gYACgHvOOTEXtanI-HRmZlA82u8

    Application name: ClipManLite
    Application Description: Clipboard Manager
    Application version: 1.0.2.0
    Request-requires-system: Tablet OS/1.0.7.0
    ID of the application: gYADgFZI5L0DEfspLgVvaOJ8kK0
    Application ID-Version: gYAEgIravTIRSld3gfNygimA3qI

    Name of the entry Point: clipmanlite
    Entry point: QML_IMPORT_PATH = app/native/import QT_PLUGIN_PATH = native/app/plugins LD_LIBRARY_PATH = lib/native-app app/native/clipmanlite - blackberry - platformpluginpath ./app/native/lib/platforms platform
    Entry-Point-Type: Qnx/Elf
    Entry-Point-icon: native/icon.png
    Entry-Point-Splash-Screen: native/splashscreen.png
    Entry-Point-focus: auto
    Entry-Point-System-stocks: run_native

    Archive-asset-name: native/clipmanlite
    Archive-asset-SHA-512-Digest: EgIFzXisCdbgWHASq7sSPYjSDWRzzl77_hw-TYnopqUjV9JDbRORwzCruReZOG2iq3SQv-Yi50NcD7XPHqz_Jw
    Archive-active-Type: Qnx/Elf

    Archive-asset-name: native/icon.png
    Archive-asset-SHA-512-Digest: MFqIlfKgqTrhI3yZkGZyv0l1YUubJblUMc6mhcZuhJfktqX5x-NwfWL7m-McGoKUMjgCTbFBSW1e3voCcZoBGg

    Archive-asset-name: native/splashscreen.png
    Archive-asset-SHA-512-Digest: CNzXgezPb8oKHCJ_4Zqk2_Fb1D6tkMVGEn3mhPQFRD7REdRG0ZnELLdu0gkM1pVvyObc0bH2ouv84_QwJ7kuLg

    Archive-asset-name: native/lib/libQtCore.so.4
    Archive-asset-SHA-512-Digest: 9gnZ149YG3kPs8ZFbHoZ6kFrL5dj4yW40urXd-uZPDrif0zYMzI29TUsp794U4GBiQUXaKKlbZOWUqIZlEHI9A

    Archive-asset-name: native/lib/libQtGui.so.4
    Archive-asset-SHA-512-Digest: EgYpcFf7xItFiqQ_PDm8FFVFu5vdbIrg4-h2d3sB-3FfPuAlnZasR_UQ45yNxzZoIwowtdaNVstIvVZXd7j1AA

    Archive-asset-name: native/lib/libQtOpenGL.so.4
    Archive-asset-SHA-512-Digest: is9HkVzh6mFpVs0N7LkYCH1Aps3pt-Q20XHP37jLnLPnoME4kl3hl9sCkCU1XCm-PchfoX51GxjMS9wBkSuMgA

    Archive-asset-name: native/lib/libQtNetwork.so.4
    Archive-asset-SHA-512-Digest: pP6tPwXFGmFQnYTuHn80aFV7xh8pG4y6wOWIIvGGlp4UXl570Gq5W3lbOuCGtCQKyPwPLc7bVOPuK3Ur8hf6SA

    Archive-asset-name: native/lib/libQtDeclarative.so.4
    Archive-asset-SHA-512-Digest: W2wS_9_9Cqqqio2w6251fhFnxnQm4ZY2COFm5xQQVCQwcMCvly2KmGxVruZO2yc_WN65MGeEOvH4cAAt1rOznQ

    Archive-asset-name: native/lib/libQtSql.so.4
    Archive-asset-SHA-512-Digest: 7H8cJrn5yhG3p4K3G4oYO8XWr_D_AZcLD5T9Zfn6mc8lUiyJ4o6mXouXmFC9imoMeUmq4KsTVM2AdhZStXA7gQ

    Archive-asset-name: native/lib/libQtSvg.so.4
    Archive-asset-SHA-512-Digest: dJk9FYrRJGqPeaEG17LWTKC_ogV6Few2BzK4t-WlcXUg0MJxinKp5jigsCHzFm6SJiFJLHDj3jRS16bTV12qgQ

    Archive-asset-name: native/lib/libQtScript.so.4
    Archive-asset-SHA-512-Digest: 809rAuYFWIOxeJuNJcL63URoMKXz6NKrmKOfZZWDjPUVqTJkxL7tBr_joHZR-EVY1mSJ8wBbh64iB6YdbqTmUg

    Archive-asset-name: native/lib/libQtXmlPatterns.so.4
    Archive-asset-SHA-512-Digest: zVw6F43U2TKa3dbYosygRliRlhdNisb-sdBmzh6AgTyh9GlVCkLLBie781GpQLA-uOyKpDOoT5B6N8h4ulaCBw

    Archive-asset-name: native/lib/platforms/libblackberry.so
    Archive-asset-SHA-512-Digest: uEdFgiXdWMo3MV5szE5vn2EcVXxubMZl4e71PT4z614ONV2ZqcFKzf6CFGzV9mwQGlWKm5Jrra71I2fzASnurw

    Archive-asset-name: native/blackberry - tablet.xml
    Archive-asset-SHA-512-Digest: mzIshm0x0oBMW7T-SlYg5ywvgFSeeHSyx53kkvzaf - WQWDtkbxqqXDldjCQrvYv631_2Q6OCAiYOmZRoslsYg

    Any ideas what could cause this error?

    First I thought maybe it's because the same mistake: what to do if your Package ID was rejected by BlackBerry App World

    But the creation of a new element of product does not help with this problem.

    It is a native application of qml Qt. It does not store the files, need to no write access and uses only simple, free of components created 1.0 QtQuick with no additives. So, it should be the best portable application out of my small collection.

    Unfortunately I have no real device here since I, like many of you, to present one of my tablet at BB App World Applications, first to get a.

    Google was not my friend on this topic, so I hope someone has this kind of error message and could tell me what could bring it. Any kind of advice are welcome.

    Best regards

    HELEx (Ambassador of Qt)

    FYI, a new simpler command allows to sign the 1 step:

    BlackBerry-sign - storepass .bar

    P12 both RDK of passwords must be the same, but this measure will apply to both the two signatures. It should have the same results as the command that you run.

    Kind regards

  • After effects error: current Crash. Last recorded message has been

    Witam nie moge otworzyc after effects poniewaz drodze blad After Effects error: current Crash. Last logged message was: 2080 > < GPUManager > < 2 > Sniffer result Code: 3 po kliknieciu drodze komunikat ze ok program after effects przestal dzialac, mam zainstalowana updated najnowsza. Windows 7. Prosze o pomoc

    You have Service Pack 1 installed Windows 7? If this is not the case, do.

  • Handle HttpRequest and RESPONSE in the WSRP Portlets

    Hi all

    I have deployed an application ADF of fusion as a WSRP webcenter Portal portlet.
    In my portlet application code I want to perform certain manipulations (like open a file in the browser) file using the ADF table components.
    I used Http sevlet request and response but portlet throws a next exception.

    java.lang.ClassCastException: org.apache.myfaces.trinidadinternal.config.dispatch.DispatchResourceResponse cannot be cast to javax.servlet.http.HttpServletResponse

    Anyone has an idea on how to handle the http request and response in the WSRP portlets.

    Hello

    Portlets use HttpServletRequest and HttpServletResponse.

    Use instead of them: PortletRequest & PortletResponse

    Kind regards.

  • OUT will not install because Error 1324, path has invalid character?

    OUT will not install because Error 1324, path has invalid character?

    Seems to be a problem bit common (per google search) for Adobe and Microsoft programs, but nothing on OUT...

    Everything I tried (Google had suggestions) did not work.

    I suspect that the Setup program tries to install an invalid path but I can't find it in the registry or understand why the error.  The program was previously installed and functional, but after having some problems, I have tried to re - install and find myself here!

    Any help is greatly appreciated.

    Pavilllion HP dv6700 Laptop

    Intel Core2Duo T5450

    Vista 32 bit

    Solved!

    It seems previous version could not be uninstalled because of the invalid path {somehow over time windows had reassigned drive letters such as the former location of installation on external hard drive F: (as in the registry), was now pointing to the DVD drive f: and I guess generated Error 1324, path has incorrect character}.

    Used Revo Uninstaller to erase all traces of the old installation and 'voila', new facility OUT proceeded successfully.

    Hope this helps others with this error code.

  • WSRP Portlets question 10.2 WLP

    Hello

    I am consuming asp .net remote portlets in the WLP 10.2 environment. During our load test, I noticed that definition desktop is refreshed whenever I change tabs in my WSRP portlets.

    I noticed in each query sent by the consumer, there is an element of context portlet sent and the producer sends the same response back. With the help of interceptor JDBC, I observed that this sql call


    prepareStatement netJDBCConnection30 (UPDATE PF_PROXY_PORTLET_INSTANCE SET
    PORTLET_HANDLE =?, PORTLET_STATE_CHANGE =?, PORTLET_STATE =? WHERE
    PORTLET_INSTANCE_ID =? )

    I don't know if the consumer considers the response of the producer as the change and updates the table of pf_proxy_portlet-instance causing performance.

    Is there an API I can use to modify the < portletContext > items.

    Thank you

    Hello

    To answer your questions:

    (a) I would suggest that you contact Oracle support and number #9857740.

    (b) the producer probably shouldn't send the portletContext with portletHandle in response unless something has changed (just to save on network traffic, if nothing else), but it is not against the WSRP specification, so it is allowed.

    (c) the stuff of caching control-tree is complex and there is an interaction between storing an instance of 'new' portlet which is not really new and the cache tree control. See answer to question (a).

    (2) Unfortunately, the portletContext is not editable in WLP WSRP interceptor on a response context, so not.

    (3) No, WSRP interceptors are a feature of consumer only WLP. However, in the WLP producers, it has an option to use XML transformations to modify outgoing SOAP messages. Maybe your producer has a similar option. If you can eliminate the portletContext starting from the SOAP message out if the portletHandle was the portletHandle even the consumer sent on demand, you should not see the consumer WLP storing the information in the database for each call.

    Kevin

Maybe you are looking for

  • New PC 64 bit Win 8.1 and TB "blocks" tirelessly, esp during the suppression of post.

    TB works well when the new computer has been implemented, now 3-4 weeks later, it crashes constantly, especially when deleting mail or try to move it to another folder. Take the circular "Gizmo" to clear after each deletion. Have restarted the comput

  • CD - DVD player gives me an error code 39. It wil work not at all.

    Raeder CD-DVD does not work. I did every thing posssibel and all I get is error code 39. What I have to do to get it corected.

  • R217TU: Driver problem

    Hey... I have a laptop HP 14 R217TU running Windows 7 64 bit... A device driver is not working properly... It's "Intel engine reliable performance of interface"... (attach a photo) I tried the driver that came with the laptop... Also tried the driver

  • Can what HARD drive I use in Satellite L40 - 14N

    Hello the HARD drive has packed on my laptop and needs to be replaced.Any idea what we can replace it with? The current a watch as abandoned.It is 160 GB and the model number is MK1237GSX (HDD2D62) Thanks for your help

  • Qosmio G30-155 Vista and cannot install XP

    Hello I have G30/155 laptop with pre-installed Vista and I want to install XP on the second HD (D :).How can I do? The stop to start installation process.When I put the installation CD, the installation does not start!The media are OK and CD/DVD driv