Servlet problem

UploadServlet.java:11: package org.apache.commons.fileupload does not exist
Import org.apache.commons.fileupload.FileItem;
^
UploadServlet.java:12: package org.apache.commons.fileupload does not exist
Import org.apache.commons.fileupload.FileUploadException;
^
UploadServlet.java:13: package org.apache.commons.fileupload.disk does not exist

Import org.apache.commons.fileupload.disk.DiskFileItemFactory;
^
UploadServlet.java:14: package org.apache.commons.fileupload.servlet does not ex
ist
Import org.apache.commons.fileupload.servlet.ServletFileUpload;
^
UploadServlet.java:15: package org.apache.commons.io.output does not exist
Org.apache.commons.io.output import. *;
^
UploadServlet.java:34: cannot find symbol
symbol: variable ServletFileUpload
location: UploadServlet class
isMultipart = ServletFileUpload.isMultipartContent (request);
^
UploadServlet.java:48: cannot find symbol
symbol: DiskFileItemFactory, class
location: UploadServlet class
Plant DiskFileItemFactory = new DiskFileItemFactory();
^
UploadServlet.java:48: cannot find symbol
symbol: DiskFileItemFactory, class
location: UploadServlet class
Plant DiskFileItemFactory = new DiskFileItemFactory();
^
UploadServlet.java:55: cannot find symbol
symbol: class ServletFileUpload
location: UploadServlet class
Download servletFileUpload = new ServletFileUpload (factory);
^
UploadServlet.java:55: cannot find symbol
symbol: class ServletFileUpload
location: UploadServlet class
Download servletFileUpload = new ServletFileUpload (factory);
^
UploadServlet.java:73: cannot find symbol
symbol: FileItem, class
location: UploadServlet class
FileItem fi = (FileItem) i.next ();
^
UploadServlet.java:73: cannot find symbol
symbol: FileItem, class
location: UploadServlet class
FileItem fi = (FileItem) i.next ();
^
12 errors

East - BlackBerry Java or standard Java?

If this code is not intended to be a BlackBerry Java phone, then you are in the wrong forum.

Tags: BlackBerry Developers

Similar Questions

  • To access the servlet code causing problems AM...

    Hello
    I use 11gr1p1 and stack of the ADF. I have an ImageServlet and in it, I created an AM root to access the VO to read the image using the VO.
    Everything works fine but anyway it messes with the framework and my beginning of LOVs gives below error when I click on the LOV icon.

    java.lang.ClassCastException: oracle.jbo.uicli.binding.JUCtrlActionDef cannot be cast to oracle.adfinternal.view.faces.model.binding.FacesCtrlActionDef

    To locate what is causing the problem, I commented lines where I create an AM and return directly to the servlet. Then I did a mistake.

    Any ideas?

    The servlet code
    -----------
              if( request.getParameter( "ImageId" ) != null )
              {
                   String contentType = "image/jpeg; charset=UTF-8";
                   response.setContentType( contentType );
                   oracle.jbo.domain.Number imageId = null;
    
                   try
                   {
                        imageId = new oracle.jbo.domain.Number( request.getParameter( "ImageId" ) );
                   }
                   catch( Exception e )
                   {
    
                        return;
                   }
    
    
                   OutputStream os = response.getOutputStream();
                   String amDef = "com.zzz.model.mdm.am.MDMMainService";
                   String config = "ConfigurationServiceLocal";
                   String viewObject = "OperaImagesRev";
                   String imageAttributeName = "BfileLocator";
                   String viewObjectBindParamName = "pBlobId";
    
    
                   if( imageId != null )
                   {
                       ApplicationModule am = Configuration.createRootApplicationModule( amDef, config );
                        
                        try
                        {
                             
                             ViewObject vo = am.findViewObject( viewObject );
    
                             vo.setNamedWhereClauseParam( viewObjectBindParamName, imageId );
                             vo.executeQuery();
                             if( vo.getEstimatedRowCount() > 0 )
                             {
                                  Row row = vo.first();
                                  oracle.jbo.domain.BFileDomain image =
                                                             ( oracle.jbo.domain.BFileDomain )row.getAttribute( imageAttributeName );
                                  image.openFile();
                                  InputStream is = image.getInputStream();
    
                                  byte[] buffer = new byte[10 * 1024];
                                  int nread;
                                  while( ( nread = is.read( buffer ) ) > 0 )
                                       os.write( buffer, 0, nread );
    
                                  os.close();
                                  image.closeFile();
    
                             }
                        }
                        catch( Exception e )
                        {
                             //e.printStackTrace();
                        }
                        finally
                        { if (am != null)
                            Configuration.releaseRootApplicationModule( am, false );
                        }
                   }

    I ran in the same issue.
    Creating an application root module breaks the link whole layer, when done outside the context of limited application. I mean there a servlet or the e-mail application itself.
    In my case, I launched a planner to start all batch tasks now and then. Because the task has no application module I create a new one, that breaks the user interface.

    Good news for you is that you can solve your problem in the servlet image if you change your web.xml file so that the servlet image goes through the filter adfBindings.
    Just add a filter mapping

    
      adfBindings
      ImageServlet
      FORWARD
      REQUEST
      
    

    to your web.xml file and your servlet is working again.

    My case I still looking for a valid solution :-(

    Timo

  • Servlet getRealPath("/") problem

    Hello experts!

    I use Jdeveloper 11.1.2.3.0

    I have a backing bean

    When using

                    ServletContext servletCtx = (ServletContext)ctx.getExternalContext().getContext();
                    String imageDirPath = servletCtx.getRealPath("/");
    

    WebLogic on Linux I get:

    / Home/Diego. JDeveloper/system11.1.2.3.39.62.76.1/o.J2EE/Drs/LUBAL_SIAT_APP/SILATWEBNEWWebApp.War/Recursos/img/guias/001-0000241378159523182.png

    WebLogic on Windows I get:

    C:\Users\Administrador\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\o.j2ee\drs\LUBAL_SIAT_APP\SILATWEBNEWWebApp.war\/Recursos/IMG/guias/001-0000101378160241894.PNG

    With linux, it works perfectly, with the windows one is what is the error?

    I used

    String rutaLocal = "";
    if(File.separator.equals("/")){
            rutaLocal = File.separator+"recursos" + File.separator + "img" + File.separator + "guias" + File.separator + cidGuiaFull + timePath + "." + ext;
    }else{
            rutaLocal = "recursos" + File.separator + "img" + File.separator + "guias" + File.separator + cidGuiaFull + timePath + "." + ext;
    }
    

    WebLogic Ubuntu 12.04 LTS as expected OK

    / Home/Diego. JDeveloper/system11.1.2.3.39.62.76.1/o.J2EE/Drs/LUBAL_SIAT_APP/SILATWEBNEWWebApp.War/Recursos/img/guias/001-0000241378247242829.png

    WebLogic Windows Server 2008: OK

    C:\Users\Administrador\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\o.j2ee\drs\LUBAL_SIAT_APP\SILATWEBNEWWebApp.war\recursos\img\guias\001-0000111378246810308.jpg

    Different file separator, but it works!

  • Problem with the installation and activation of Autodesk Autocad 2011

    I'm having a problem with the Autodesk Autocad 2011 activation. After I download and install the software, there should I active and a window opens to activation. The problem is the window is empty and I tried closing and reopending the program. I tried to uninstall and reinstall the program several times and get the same result. I checked the site Autodesk solutions and tried what they suggested, but without success. Help, please.

    Thank you

    Matt

    Hello

    You can activate AutoCAD, through activation and the recording interface, you can activate your product 24 hours a day, seven days a week, through the Internet or by e-mail. Or the other option takes only a few steps to complete and requires your product serial number and registration information.

    http://images.Autodesk.com/ADSK/files/autocad_2011_faq_us.PDF

    Also try the suggestion in the given below link and check if this is useful to solve the problem.

    http://USA.Autodesk.com/ADSK/servlet/PS/DL/Item?siteID=123112&ID=10244471&LinkId=9240617

    http://USA.Autodesk.com/ADSK/servlet/PS/DL/Item?siteID=123112&ID=10243884&LinkId=9240617

    If this does not help, you must contact the support of AutoCAD to help you activate the product.

    http://USA.Autodesk.com/ADSK/servlet/PS/index?siteid=123112&ID=2714854&LinkId=9240617

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Display form OptiPlex GX620 desktop problem

    I have an Optiplex GX620 Desktop FF computer which was given to our Church for the office. I have recently installed 4 GB of RAM and a 80GB HDD SATA white. I have connected to a TV high definition with a PC connection.

    When I turn on the computer, two things happen:

    (1) the TV on the PC channel screen remains empty.

    (2) the computer will beep twice and 1-2-3 lights on the front is green.

    This could be a problem with the graphics/display in the computer card and what can I do to solve this problem?

    The add in video card with LFH connector can have Dual VGA. A dell cable would also a 1 and a 2 on it to indicate what monitor is 1 vs 2.

    Or remove the riser and pull out the card. Blue plastic parts are the locking tabs.

    Dell G9438 DMS-59/LFH-59 to Dual VGA Splitter extender cable

    http://www.txcesssurplus.com/servlet/the-10187/Dell-G9438-DMS-DSH-59-fdsh-LFH-DSH-59-to/detail

  • Signature of QML app problem

    Hello

    Hi, I'm signing my application, but the blackberry-signer-check errors in declarations.

    I have read many topics on the forum, but I have not found a solution to my problem.

    This is my files:

    BlackBerry - tablet.xml:

    
    http://www.qnx.com/schemas/application/1.0">
    com.dwart.Study-Cards
    Study-Cards
    Study-Cards
    1.0.0
    Learn language faster
    dwart
    
      none
      false
      false
      landscape
    
    dwart.com
    run_native
    
    access_shared
    
    
    
    
    
    
    
    
        -platform
        blackberry
        dwart
        gYAAgHnFdvHsS830QUqF8qLsMTE
        run_native
    
        icon.png
        splashscreen.png
    
    

    StudyCards.pro:

    TARGET = StudyCards
    # Add more folders to ship with the application, here
    folder_01.source = qml/StudyCards
    folder_01.target = qml
    DEPLOYMENTFOLDERS = folder_01
    
    QMAKE_LFLAGS += '-Wl,-rpath,\'./app/native/lib\' '
    
    package.target = $${TARGET}.bar
    package.depends = $$TARGET
    package.commands = blackberry-nativepackager \
       -package $${TARGET}.bar -arg -platform -arg blackberry \
       -debugToken ./debugToken.bar \
       -arg -platformpluginpath -arg ./app/native/lib/platforms \
       -arg -pluginpath -arg ./app/native/lib/plugins \
       blackberry-tablet.xml $$TARGET \
       -e icon.png icon.png \
       -e splashscreen.png splashscreen.png \
    -e qml qml \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtCore.so.4 lib/libQtCore.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtGui.so.4 lib/libQtGui.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtOpenGL.so.4 lib/libQtOpenGL.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtNetwork.so.4 lib/libQtNetwork.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtDeclarative.so.4 lib/libQtDeclarative.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSql.so.4 lib/libQtSql.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSvg.so.4 lib/libQtSvg.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtScript.so.4 lib/libQtScript.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtXmlPatterns.so.4 lib/libQtXmlPatterns.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/sqldrivers/libqsqlite.so lib/plugins/sqldrivers/libqsqlite.so \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/platforms/libblackberry.so lib/platforms/libblackberry.so
    QMAKE_EXTRA_TARGETS += package
    
    SOURCES += main.cpp
    
    # Please do not modify the following two lines. Required for deployment.
    include(qmlapplicationviewer/qmlapplicationviewer.pri)
    qtcAddDeployment()
    
    OTHER_FILES += blackberry-tablet.xml
    

    I do *.bar file:

    /home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/bin/qmake
    
    make
    
    make Study-Cards.bar
    

    Results:

    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o main.o main.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o qmlapplicationviewer.o qmlapplicationviewer/qmlapplicationviewer.cpp
    /home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/bin/moc -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -D__QNXNTO__ qmlapplicationviewer/qmlapplicationviewer.h -o moc_qmlapplicationviewer.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o moc_qmlapplicationviewer.o moc_qmlapplicationviewer.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -Wl,-rpath-link,/opt/bbndk2/target/qnx6/armle-v7/lib -Wl,-rpath-link,/opt/bbndk2/target/qnx6/armle-v7/usr/lib -Wl,-rpath,'./app/native/lib' -Wl,-O1 -o Study-Cards main.o qmlapplicationviewer.o moc_qmlapplicationviewer.o    -L/opt/bbndk2/target/qnx6/armle-v7/lib -L/opt/bbndk2/target/qnx6/armle-v7/usr/lib -L/home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/lib -lQtDeclarative -L/home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/lib -L/opt/bbndk2/target/qnx6/armle-v7/lib -L/opt/bbndk2/target/qnx6/armle-v7/usr/lib -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtNetwork -lsocket -lQtGui -lQtCore -lm 
    
    blackberry-nativepackager -package Study-Cards.bar -arg -platform -arg blackberry -debugToken ./debugToken.bar -arg -platformpluginpath -arg ./app/native/lib/platforms -arg -pluginpath -arg ./app/native/lib/plugins blackberry-tablet.xml Study-Cards -e icon.png icon.png -e splashscreen.png splashscreen.png -e qml qml -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtCore.so.4 lib/libQtCore.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtGui.so.4 lib/libQtGui.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtOpenGL.so.4 lib/libQtOpenGL.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtNetwork.so.4 lib/libQtNetwork.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtDeclarative.so.4 lib/libQtDeclarative.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSql.so.4 lib/libQtSql.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSvg.so.4 lib/libQtSvg.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtScript.so.4 lib/libQtScript.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtXmlPatterns.so.4 lib/libQtXmlPatterns.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/sqldrivers/libqsqlite.so lib/plugins/sqldrivers/libqsqlite.so -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/platforms/libblackberry.so lib/platforms/libblackberry.so
    Info: Package created: Study-Cards.bar
    

    In the bar of the file look like this:

    /META-INF
        MANIFEST.MF
    /native
        /lib
            /platforms
                libblackberry.so
            /plugins
                /sqldrivers
                    libqsqlite.so
            libQtCore.so.4
            libQtDe....
            ....
        /qml
            /StudyCards
                card.png
                lisc.png
                main.qml
            /imports
                /Qt
                    ...
                /com
                    ...
        Study-Cards
        blackberry-tablet.xml
        icon.png
        splashscreen.png
    

    I try to sing:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -keystore /home/dwart/.rim/author.p12 -storepass myPass ./Study-Cards.bar author
    

    results:

    Info: Bar signed.
    

    It's added to my file for files META_INF bar: AUTHOR. THIS and the AUTHOR. SF

    next step:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -cskpass myCSKpass -keystore /home/dwart/.rim/author.p12 -storepass myStorePass ./Study-Cards.bar RDK
    

    results:

    Developer Certificate TBS =
    30 81 b7 a0 03 02 01 02 02 04 4f 38 2f a6 30 0c
    06 08 2a 86 48 ce 3d 04 03 04 05 00 30 10 31 0e
    30 0c 06 03 55 04 03 13 05 64 77 61 72 74 30 1e
    17 0d 31 32 30 32 31 32 32 31 33 31 31 38 5a 17
    0d 33 32 30 32 30 37 32 31 33 31 31 38 5a 30 10
    31 0e 30 0c 06 03 55 04 03 13 05 64 77 61 72 74
    30 58 30 10 06 07 2a 86 48 ce 3d 02 01 06 05 2b
    81 04 00 23 03 44 00 03 00 6d 4d b3 f4 07 75 ba
    da 3d 5b b4 7c a8 4f 7d 90 01 0f 26 3d e9 e5 54
    07 40 64 b4 0b 11 70 f9 35 ca 5b 1e 9f 68 27 c9
    92 ab d3 a6 ec 4c 2e 20 40 d2 18 88 04 73 82 3d
    c4 84 b8 bb b2 66 e9 ab 37 dd
    Developer Certificate TBS Digest =
    0c 92 56 7d 1f 7d 88 a2 98 7e ea 60 01 e5 93 7d
    22 09 96 7c 68 c4 e8 be 2a d4 38 ee f2 84 06 3c
    a9 00 78 f6 63 6d b7 4c 3e 76 88 a6 ba 79 a6 12
    f0 8a fd 38 50 d9 4d b9 be 2e 6f d0 38 78 64 75
    Developer Certificate TBS Encoded Digest =
    44 4a 4a 57 66 52 39 39 69 4b 4b 59 66 75 70 67
    41 65 57 54 66 53 49 4a 6c 6e 78 6f 78 4f 69 2d
    4b 74 51 34 37 76 4b 45 42 6a 79 70 41 48 6a 32
    59 32 32 33 54 44 35 32 69 4b 61 36 65 61 59 53
    38 49 72 39 4f 46 44 5a 54 62 6d 2d 4c 6d 5f 51
    4f 48 68 6b 64 51
    Requesting signature from server...
    Reading CSK file...
    Properties of CSK file := [
    Version = 2
    Encoded Salt =
    2f 6d 35 46 4e 49 4f 58 55 53 45 3d
    Encoded and Encrypted PrivateKey =
    4f 46 53 49 5a 75 4a 51 73 70 62 6c 62 37 71 5a
    63 4b 78 37 61 48 39 5a 4e 65 45 6f 73 79 61 7a
    33 4c 63 39 4f 58 72 73 35 6b 5a 76 54 67 62 62
    59 33 4b 41 4b 48 74 36 38 73 70 38 70 2f 4d 2b
    70 45 5a 56 75 59 5a 53 6f 6a 76 42 38 49 70 59
    4e 43 6f 6a 6b 64 49 2f
    Salt =
    fe 6e 45 34 83 97 51 21
    Digest =
    3c 1e 47 62 fc ce 0b 13 35 25 70 56 ac d1 1a eb
    77 0e 9a 21 7e 8a 11 52 06 64 d2 79 da 4e 09 88
    97 96 c1 01 ec 53 f2 7a 6a 3e 75 70 6a f3 1f 51
    e2 28 1a 1a e8 c7 85 f7 d7 7a 98 05 b7 f6 bf 75
    Signature =
    30 81 88 02 42 01 06 b1 0c e3 2d fd f3 01 f7 5f
    14 a6 ef b4 4b a0 5c 2b a6 b3 ef aa 1d 25 ed 46
    62 8b 06 fe 35 eb 10 80 e8 b9 0a 8e a0 7b 6a ef
    c9 28 c9 53 85 89 66 26 1e 7f d8 67 0f ef e4 58
    86 6b ca 4e b8 57 6a 02 42 01 27 e4 29 2a 9f ee
    2b ad 59 48 77 ff 39 87 98 5a 9c ae 2d ac 72 93
    d1 33 fc 7f 4e 6a 87 ab 88 46 af 59 22 65 c6 6f
    81 f8 ef 3c da 79 c4 74 36 c1 35 c1 b0 21 d5 1d
    e3 1b 3e 72 24 47 bf c1 1a 19 fc
    Flat Signature =
    01 06 b1 0c e3 2d fd f3 01 f7 5f 14 a6 ef b4 4b
    a0 5c 2b a6 b3 ef aa 1d 25 ed 46 62 8b 06 fe 35
    eb 10 80 e8 b9 0a 8e a0 7b 6a ef c9 28 c9 53 85
    89 66 26 1e 7f d8 67 0f ef e4 58 86 6b ca 4e b8
    57 6a 01 27 e4 29 2a 9f ee 2b ad 59 48 77 ff 39
    87 98 5a 9c ae 2d ac 72 93 d1 33 fc 7f 4e 6a 87
    ab 88 46 af 59 22 65 c6 6f 81 f8 ef 3c da 79 c4
    74 36 c1 35 c1 b0 21 d5 1d e3 1b 3e 72 24 47 bf
    c1 1a 19 fc
    Properties of request := [
    Version = 1
    Command = Signature Request
    SignerID = RDK
    ClientID = 3903770746
    MF =
    51 58 4a 6a 61 47 6c 32 5a 53 31 4e 59 57 35 70
    5a 6d 56 7a 64 43 31 57 5a 58 4a 7a 61 57 39 75
    4f 69 41 78 4c 6a 45 4e 43 6b 46 79 59 32 68 70
    64 6d 55 74 51 33 4a 6c 59 58 52 6c 5a 43 31 43
    65 54 6f 67 51 6d 78 68 59 32 74 43 5a 58 4a 79
    65 53 42 55 59 57 4a 73 5a 58 51 67 54 31 4d 67
    52 57 78 6d 49 45 4a 42 55 69 42 51 59 57 4e 72
    ..........
    4f 52 66 38 75 2f 59 48 69 54 32 38 30 42 54 4d
    76 72 2b 30 50 30 70 61 56 49 54 4b 6d 6a 51 35
    49 6a 41 67 34 32 43 48 33 4d 59 56 44 73 30 7a
    4e 66 47 66 57 75 52 72 4a 70 31 6b 54 43 55 3d
    Connecting to URL http://www.rim.net/Websigner/servlet/RDK-Waterloo
    Sending properties to server...
    Properties of response := [
    Version = 1
    Response = Signature Response
    Confirm = Signing server ID RDK signed code file from client ID 3903770746.
    Error = null
    ]
    Encoded Package-Author-Id =
    67 59 41 41 67 48 6e 46 64 76 48 73 53 38 33 30
    51 55 71 46 38 71 4c 73 4d 54 45
    Encoded Package-Id =
    67 59 41 42 67 47 4a 65 7a 68 55 79 4a 6d 6a 47
    5f 37 76 57 34 48 4a 71 57 32 6b
    Encoded Package-Version-Id =
    67 59 41 43 67 46 6c 63 4b 6e 4e 64 65 46 79 4d
    6a 66 56 31 50 78 4c 32 6e 6e 73
    Encoded Application-Id =
    67 59 41 44 67 43 34 6f 48 63 59 47 78 77 32 6d
    41 50 32 68 4f 75 63 67 46 76 49
    Encoded Application-Version-Id =
    67 59 41 45 67 44 46 55 35 62 57 6a 37 71 5f 49
    67 6f 65 37 55 4e 57 41 35 51 45
    Encoded Signature =
    41 65 4a 71 6c 55 56 68 67 68 46 7a 49 34 46 51
    69 33 73 35 35 59 30 43 38 62 30 43 4e 43 31 38
    39 2f 70 69 49 41 44 34 4a 4d 6c 62 49 46 39 50
    53 4b 32 66 33 79 41 58 6c 5a 75 46 4b 79 58 42
    2f 50 72 39 6b 37 63 49 61 56 45 34 4d 69 42 52
    31 61 55 49 32 33 57 39 41 55 39 72 38 30 6f 47
    56 34 48 6b 55 61 54 76 6e 74 4a 36 67 42 31 33
    72 79 69 55 41 78 67 45 62 6e 35 62 62 71 48 4b
    74 76 34 59 64 58 6a 71 4f 78 55 5a 37 2b 43 33
    48 2b 45 4c 75 62 48 63 49 6b 2b 79 36 45 52 33
    62 69 55 37 35 54 52 68 37 47 72 62 44 6c 65 4a
    Decoded Signature =
    01 e2 6a 95 45 61 82 11 73 23 81 50 8b 7b 39 e5
    8d 02 f1 bd 02 34 2d 7c f7 fa 62 20 00 f8 24 c9
    5b 20 5f 4f 48 ad 9f df 20 17 95 9b 85 2b 25 c1
    fc fa fd 93 b7 08 69 51 38 32 20 51 d5 a5 08 db
    75 bd 01 4f 6b f3 4a 06 57 81 e4 51 a4 ef 9e d2
    7a 80 1d 77 af 28 94 03 18 04 6e 7e 5b 6e a1 ca
    b6 fe 18 75 78 ea 3b 15 19 ef e0 b7 1f e1 0b b9
    b1 dc 22 4f b2 e8 44 77 6e 25 3b e5 34 61 ec 6a
    db 0e 57 89
    ASN.1 Signature =
    30 81 88 02 42 01 e2 6a 95 45 61 82 11 73 23 81
    50 8b 7b 39 e5 8d 02 f1 bd 02 34 2d 7c f7 fa 62
    20 00 f8 24 c9 5b 20 5f 4f 48 ad 9f df 20 17 95
    9b 85 2b 25 c1 fc fa fd 93 b7 08 69 51 38 32 20
    51 d5 a5 08 db 75 bd 02 42 01 4f 6b f3 4a 06 57
    81 e4 51 a4 ef 9e d2 7a 80 1d 77 af 28 94 03 18
    04 6e 7e 5b 6e a1 ca b6 fe 18 75 78 ea 3b 15 19
    ef e0 b7 1f e1 0b b9 b1 dc 22 4f b2 e8 44 77 6e
    25 3b e5 34 61 ec 6a db 0e 57 89
     Updating: META-INF/MANIFEST.MF
       Adding: META-INF/RDK.SF
       Adding: META-INF/RDK.EC
      Signing: native/Study-Cards
      Signing: native/icon.png
      Signing: native/splashscreen.png
      Signing: native/qml/imports/Qt/labs/components.1.1/CheckableGroup.qml
      Signing: native/qml/imports/Qt/labs/components.1.1/Checkable.qml
      Signing: native/qml/imports/Qt/labs/components.1.1/CheckableGroup.js
      Signing: native/qml/imports/Qt/labs/components.1.1/qmldir
      Signing: native/qml/imports/Qt/labs/components.1.1/libqtcomponentsplugin_1_1.so
      Signing: native/qml/imports/Qt/labs/components/native/Dialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/Label.qml
      Signing: native/qml/imports/Qt/labs/components/native/SectionScroller.qml
      Signing: native/qml/imports/Qt/labs/components/native/BusyIndicator.qml
      Signing: native/qml/imports/Qt/labs/components/native/ButtonRow.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextSelectionHandle.qml
      Signing: native/qml/imports/Qt/labs/components/native/QueryDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/Page.qml
      Signing: native/qml/imports/Qt/labs/components/native/ContextMenu.qml
      Signing: native/qml/imports/Qt/labs/components/native/PageStackWindow.qml
      Signing: native/qml/imports/Qt/labs/components/native/StatusBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/ListItemText.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/RadioButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/Switch.qml
      Signing: native/qml/imports/Qt/labs/components/native/ApplicationWindow.qml
      Signing: native/qml/imports/Qt/labs/components/native/RectUtils.js
      Signing: native/qml/imports/Qt/labs/components/native/ScrollBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/SelectionListItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/libsymbianplugin_1_1.so
      Signing: native/qml/imports/Qt/labs/components/native/PageStack.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/Popup.qml
      Signing: native/qml/imports/Qt/labs/components/native/Button.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextField.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuContent.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextArea.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabGroup.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/ButtonGroup.js
      Signing: native/qml/imports/Qt/labs/components/native/ProgressBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextTouchController.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextMagnifier.qml
      Signing: native/qml/imports/Qt/labs/components/native/Slider.qml
      Signing: native/qml/imports/Qt/labs/components/native/PageStack.js
      Signing: native/qml/imports/Qt/labs/components/native/Window.qml
      Signing: native/qml/imports/Qt/labs/components/native/SelectionDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/Fader.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolBarLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/AppManager.js
      Signing: native/qml/imports/Qt/labs/components/native/qmldir
      Signing: native/qml/imports/Qt/labs/components/native/ButtonColumn.qml
      Signing: native/qml/imports/Qt/labs/components/native/CommonDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolTip.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabBarLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/CheckBox.qml
      Signing: native/qml/imports/Qt/labs/components/native/ListItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/SectionScroller.js
      Signing: native/qml/imports/Qt/labs/components/native/ScrollDecorator.qml
      Signing: native/qml/imports/Qt/labs/components/native/Menu.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextContextMenu.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabGroup.js
      Signing: native/qml/imports/Qt/labs/components/native/ListHeading.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/libsymbianextrasplugin_1_1.so
      Signing: native/qml/imports/com/nokia/extras.1.1/TimePickerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/DatePickerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/RatingIndicator.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerColumn.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerIndexHelper.js
      Signing: native/qml/imports/com/nokia/extras.1.1/qmldir
      Signing: native/qml/imports/com/nokia/extras.1.1/SearchBox.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/Constants.js
      Signing: native/qml/imports/com/nokia/extras.1.1/Tumbler.js
      Signing: native/qml/imports/com/nokia/extras.1.1/InfoBanner.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/Tumbler.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerTemplate.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Dialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Label.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SectionScroller.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/BusyIndicator.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonRow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextSelectionHandle.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/QueryDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Page.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ContextMenu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStackWindow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/StatusBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListItemText.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/RadioButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Switch.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ApplicationWindow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/RectUtils.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ScrollBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SelectionListItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/libsymbianplugin_1_1.so
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStack.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Popup.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Button.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextField.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuContent.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextArea.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabGroup.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonGroup.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ProgressBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextTouchController.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextMagnifier.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Slider.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStack.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/Window.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SelectionDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Fader.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolBarLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/AppManager.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/qmldir
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonColumn.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/CommonDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolTip.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabBarLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/CheckBox.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SectionScroller.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ScrollDecorator.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Menu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextContextMenu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabGroup.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListHeading.qml
      Signing: native/qml/StudyCards/card.png
      Signing: native/qml/StudyCards/main.qml
      Signing: native/qml/StudyCards/lisc.png
      Signing: native/lib/libQtCore.so.4
      Signing: native/lib/libQtGui.so.4
      Signing: native/lib/libQtOpenGL.so.4
      Signing: native/lib/libQtNetwork.so.4
      Signing: native/lib/libQtDeclarative.so.4
      Signing: native/lib/libQtSql.so.4
      Signing: native/lib/libQtSvg.so.4
      Signing: native/lib/libQtScript.so.4
      Signing: native/lib/libQtXmlPatterns.so.4
      Signing: native/lib/plugins/sqldrivers/libqsqlite.so
      Signing: native/lib/platforms/libblackberry.so
      Signing: native/blackberry-tablet.xml
    Info: Bar signed.
    

    I think that everything is OK, but:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -verify Study-Cards.bar
    

    results:

    Error: Invalid signature file digest for Manifest main attributes
    

    Someone knows how to solve?

    PS Sorry for the long post and my English

    OK, I change the order of:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -cskpass myCSKpass -keystore /home/dwart/.rim/author.p12 -storepass myStorePass ./Study-Cards.bar RDK
    
    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -keystore /home/dwart/.rim/author.p12 -storepass myPass ./Study-Cards.bar author
    

    Now it's work

    Info: Bar verified.
    

    Thank you much for the help

  • Problem signing my COD file

    I signed up for the signature code and received 3 *.csi of BB files. I followed all the instructions and saved each CSI file according to the instruction. Each of the 3 files has been saved successfully.

    I'm using RIM BlackBerry JDE 4.6.0 and JDK1.6.0.

    I have windows vista installed as an operating system.

    I have also NetBeans 6.5.0.

    Now in my C:\Program Research In Motion\BlackBerry JDE 4.6.0\bin he following files

    1 sigtool.db

    2 sigtool.csk

    Now when I go through SigningTool or JDE to sign my COD file then it shows some files require signature. Now when I click on request or to revoke , and then it displays "Cannot request signatures until this application has been registered with sign all necessary authorities."

    Accoding to all the post I have searched on BB forums, you need all these things for the signature, I have and still I am facing the problem. I have even sent to BB Dev Support but still no answer, sound very very slow in response.

    Can someone please help me on this...

    Thanks for any help in advance!

    The lines in sigtool.db of signing authorities three default of RIM should look like this:

    RBB=123456789http\://www.rim.net/Websigner/servlet/BBAppsRRT=555555555http\://www.rim.net/Websigner/servlet/RuntimeRCR=987654321http\://www.rim.net/Websigner/servlet/CryptoRIM
    

    The 123456789, 555555555 and 987654321 are the customer ID under which you are registered with the appropriate signing authorities. Usually, you have the same ID of client for signing authorities three above the RIM.

    If you well to activate your. Files CSI (sent by RIM) correctly (your private-public key pair contained in the sigtool.csk has been correctly generated and the public key has been saved with the RIM in the process), then you should be able to manually recreate the sigtool.db. Find an e-mail with the. CSI files and customer ID finds the names of the clips. CSI files. The files are named as follows: customer-RRT -.csi. Then recreate the sigtool.db using the above model and your client code.

  • Problem with the post OFFICE when using HttpsConnection

    Hello community,

    my scenario:

    I have a piece of code that runs on a BB and a Servlet located on a Tomcat 6.0.18. The code on the BB uses POST to send data. When you use with HTTP POST, everything works like a charm, but I have trouble with the POST and HTTPS.

    It seems that the data is not transferred from BB on the server. The use of the debugger I discovered that the data is written to the output stream (side), but when the servlet calls getParameter() only null is returned.

    To ensure a correct installation, I tried a GET with HTTPS which works very well.

    The given code example is on the side of the unit

    connection = Connector.open(url);
    
    HttpsConnection https = (HttpsConnection)connection;
    
    https.setRequestMethod(HttpsConnection.POST);
    
    https.setRequestProperty(HEADER_CONTENTTYPE, CONTENTTYPE_FORMDATA);
    
    https.setRequestProperty(HEADER_CONTENTTYPE, String.valueOf(length));
    
    out = https.openOutputStream();out.write(PostMessage.getBytes());
    
    in = https.openInputStream();
    
    ResponseMessage = new byte[(int)https.getLength()];
    
    in.read(ResponseMessage);
    
    out.close();in.close();https.close();
    

    Any help is very appreciated!

    Thanks in advance.

    PS:

    Simulator: 8300

    MDS: 4.1.4

    JDE: 4.5.0

    Eclipse: Version: 3.4.1
    Build id: M20080911-1700

    Dear community,

    I managed to solve the problem by myself. Its a classic copy & paste error.

    Lets take a look at:

    https.setRequestProperty(HEADER_CONTENTTYPE, CONTENTTYPE_FORMDATA);
    
    https.setRequestProperty(HEADER_CONTENTTYPE, String.valueOf(length));
    

    As you can see I used two times HEADER_CONTENTTYPE. Its not so bad, but to indicate the length of a post, you need to use HEADER_CONTENTLENGTH:-D.

    I have to take a break...

    You can consider the issue as resolved.

  • Client VPN connectivity problems

    I use the cisco VPN client to connect to our network, located behind a 515E. The client is authenticated and gets an ip address but cannot ping or connect with one of the hosts. The connection is to a network of customers that is also behind a 515E. I have successfully connected using the same policy to other places and have had no problem. What confuses me, is that we have used to have a Netscreen firewall before and he had a netscreen vpn client which connected since their network with a problem. Is that something they need for their firewall so that we can get through the traffic?

    Try to turn on NAT - T on your pix, by setting up:

    ISAKMP nat-traversal 20

    and configure the client vpn accordingly:

    http://www.Cisco.com/warp/public/471/cvpn_3k_nat.html#conf_client

    I think these discussions are useful:

    http://Forum.Cisco.com/eForum/servlet/NetProf?page=NetProf&Forum=virtual%20Private%20Networks&topic=General&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1dd7dda4

    http://Forum.Cisco.com/eForum/servlet/NetProf?page=NetProf&Forum=virtual%20Private%20Networks&topic=General&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1dd7fe80

  • Another problem in the BLOB view

    Hi all

    I have a problem in the image display on the screen. Here's my situation: I have an Oracle table, consists of string, CLOB and BLOB. I also have a web application using JSP and Servlet. My Blackberry application will access the servlet to get the data in my table. Returns an XML file, not a file JSP, servlet, then my Blackberry application will read this file, it displays on the screen. I use not BrowserField.

    My problem is... How can I display the image?

    I have tried to convert byteArray BLOB, and then again to convert to a string, inserting it into my XML. In my Blackberry app, get the string and convert it to byteArray and then use

    Bitmap.createBitmapFromBytes to get the Bitmap image. But it gives me nothing.

    Can someone help me?

    Thank you much in advance.

    Kind regards

    Novan Ananda

    I offer two General options:

    1 generate and send an image url to the XML format. Request per second to get the bytes of the images to the server. Server can presave the image in a temp folder or get the blob of the DB directly.

    2 send the image data as xml encoded in base64. Decode the device and view EncodedImage.

    I prefer the method if you send pictures not only in response. Can see the context for your asynchronous image download information.

    Thank you

    Eugen

  • VPN problem persists

    Hi, I implemented a project some time back which went something like this: a Headquarters site where a PIX515E is installed with a public static IP on its external interface. Three remote sites, each with connecting to the internet through 837 routers ADSL with a dynamic public IP address. I configured the firewall and routers for EzVPN (router is configured in client mode) and the VPN tunnel rises and it works fine. Of course, when there is no interesting traffic through the tunnel and the idle timer on the PIX expires, the tunnel down. It is also very good. The problem is once the tunnel breaks down, it is again automatically when interesting traffic passes through the router (which is assumed). I use the console and ran the debugging on one of the routers and noticed that once the tunnel descends and the router tries to bring it up again, it gives the message:

    "Key pair for this"XXX. " XX. XX. Mask XX/XX"already exists." Then, when I give the command "clear crypto isakmp his ', the tunnel rises immediately. I already posted this question before (link:http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1dd6e4b2). Maybe she has something to do with the Dead Peer Detection on the PIX and the router system. In any case, I have configured the following command on the router and PIX:

    ISAKMP crypto keepalive 2 10

    but still it does not solve the problem. The router's IOS version 12.3 (2) XC2 and the PIX OS version 6.3 a (3). Also im attaching the PIX and router config for this post. What else can be done to solve the problem?

    I replied to your last message.

    As I said, you must at least 12.3.7 so that it works correctly.

    "You must at least 12.3 (7) T for Dead Peer Detection work and send KeepAlive interval you want.

    ISAKMP crypto keepalive [interval] [dry til counted dead] periodical

    for example,.

    "isakmp crypto 15 5 keepalive periodicals.

    the key word is "periodic" is not available until 12.3.7 or later.

    ISAKMP crypto keepalive 2 10

    without periodic does nothing, you need periodic KeepAlive.

    ISAKMP crypto keepalive 2 10 periodicals

    will maintain the tunnel and head of network device know if/when it falls. It should be applied to the router and the PIX in your situation.

    I worked through this issue before with IOS EzVPN (12.3 (11) T) to PIX (6.3 (3)) and IOS EzVPN hub VPN3000 (4.1) of the basic VPN

    also... http://www.Cisco.com/en/us/products/SW/iosswrel/ps5207/products_feature_guide09186a00801ee19a.html

  • Synchronization problems Blackberry Bold 9700 with Bluetooth of Windows 7 drivers Sony Vaio SZ series

    I have recently upgraded to Windows 7 with a clean reinstall on my laptop Sony VAIO VGN-SZ470N. Full specifications can be seen here: http://www.sonystyle.com/webapp/wcs/stores/servlet/ProductDisplay?catalogId=10551&storeId=10151&langId=-1&kw=vgn-sz470n/c&lp=8198552921665095013&productId=8198552921665095013#footNotes

    My goal: to sync my new Blackberry Bold 9700 wireless via bluetooth using the built-in radio. Many people have had problems with this and the forums are littered with solutions that have worked for others, but I'm having no luck.

    So-called: Device Manager software Blackberry won't recognize devices that are managed by Windows Native Bluetooth stack.

    What I did:

    Windows will automatically detect my bluetooth radio and installs the "Bluetooth USB Controller (ALPS/UGPZ6)" (hardware ID: USB\VID_044E & PID_300D & REV_1915, USB\VID_044E & PID_300D) driver. With this driver, I can go to the "add a device" with my phone in discovery mode, and the computer will not conclude it.

    If I go in ' control panel-> add devices ", the Add Device Wizard window will tell me it's looking two detectable Bluetooth devices found in the range. I went into control panel of-> see devices-> UGX (which resembles a bluetooth adapter bit) and there was no "bluetooth settings option when I would right click."

    After reading on the Blackberry forums that the BB only synchronizes with the Bluetooth of Windows stack, I updated my driver ALPS/UGPZ6 to "generic bluetooth adapter. The selection of this driver also installs driver for "Microsoft Bluetooth Enumerator. It also adds the bluetooth icon in the lower bar of good start near the time and date. I can now go to 'Add a device' and it will show my BB 9700. When I connect, matching Assistant is displayed on my phone and in windows. I enter a code on my blackberry and enter a code in the wizard windows. Both devices and then tell me that pairing has been successful. However, the two machines are.

    Once the BB is paired, tent windows install the drivers of the two newly discovered devices, then gives me an error and States that the drivers cannot be installed. It is said that it is impossible to install two drives, both devices are listed in the device as "Bluetooth Peripheral Device" Manager (Hardware ID BTHENUM\ {426c6163-6b42-6572-7279-44736b746f70} _LOCALMFG & 000D).

    In "devices and printers > Bluetooth' BB 9700 is now listed with a status of 'troubleshooting needs'." Although the devices are paired, the BB will ever show a status of connected, rather it will continue to just try to connect every two minutes or more. I can connect to my friends MacBook, but I have no idea how to test the fact that the connection works. I also noticed that in the screen 'Add features' phone bluetooth of my roommate. So, I looked for ways to resolve the missing drivers.

    I found three solutions supposed for the driver installation error which has not WORKED for me.

    (1) the first is to right click on the two strangers 'Bluetooth' devices in Device Manager and updated the driver in both cases to "RIM Virtual Serial V2". When you try to implement this solution, the status "needs Troubleshooting" will disappear, but blackberry Device Manager will not find the BB 9700 to add for bluetooth sync. Nothing else seems to change. Complete instructions for this solution have been listed here: http://supportforums.blackberry.com/t5/BlackBerry-Pearl-BlackBerry-8100/Need-Bluetooth-Peripheral-Device-driver-to-connect-to-8120/m-p/263541

    The other way, I tried to fix the driver error problem was to remove all the listed drivers and reinstall the generic Bluetooth USB controller and the enumerator. Then I went and downloaded the Windows Mobile Device Center Driver Upgrade. For the two unknown devices labeled "Bluetooth Peripheral Device", I chose the Bluetooth radio driver > Microsoft Corporation > peripheral support Windows Mobile.  Once again, the status in devices and printers troubleshooting message > Bluetooth devices disappear, but still the Blackberry device manager can't find the phone. I found the original steps for this here: http://www.computers.nepalesemap.com/index.php?topic=3.0

    (3) supposed to be the reason why the blackberry will not sync with the ALPS driver installation is because the windows bluetooth stack does recognize it not as compatible. So I uninstall the Bluetooth devices and blackberry. I restarted and the computer reinstalls the driver ALPS.

    I found a solution which says to edit the c:\windows\inf\bth.inf file and add the hardware ID that is listed in the device under the ALPS HardwareID driver manager. I have add the ID of the hardware to the list of devices, but the bluetooth enumerator installs ever, and I can't access the Bluetooth settings.

    Does anyone else have this problem? Can anyone help!


    Hi Cptnnemo,

    How do you close the computer, you have your Blackberry?  As with any Bluetooth, the device must be 3-4 FEET away from being discovered.  Please follow the instructions on the MSFT made, then try to keep your 3-4 feet away and try the discovery mode.

    Mithdraug

  • I'm having a problem of compatibility with Autodesk Revit Structure 2013

    I have the program installed on my computer about a month ago.  After you install the program, it worked.  I met a virus that has disabled Microsoft lSecurity Essentials.  I took my 3 month old computer the Microsoft Store to check.  They played a procedure that cleared up the problem of virus.  However, after this has been done several Autodesk programs I had installed is more worked.  I tried to uninstall and then reinstall Autodesk Revit Structure 2013, but it still does not work.  What happens is I click the icon Revit on my desk.  The program starts and goes through a startup process.  As soon as the start window appears on my desktop, it stops and disappears immediately leave the office more clear.  I welcomed the program in my Windows Firewall, but that has not solved the problem.  I have already confirmed that these programs work on my computer, but something seems to have been reset by Microsoft Store technicians who made these programs "incompatible".  What can I do to make them compatible again?

    Hi John,

    I suggest you follow the links below and check them with the question:

    Method 1:

     

     

    Open the program compatibility troubleshooting utility:

    http://Windows.Microsoft.com/en-us/Windows7/open-the-program-compatibility-Troubleshooter

     

    Method 2:

     

     

    Make older programs run in this version of Windows:

    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    If still the issue is not resolved, then follow the next method.

    Method 3:

     

     

    Uninstall and reinstall the program by using the Microsoft Fix It.

     

    Solve problems with programs that cannot be installed or uninstalled:

    http://support.Microsoft.com/mats/Program_Install_and_Uninstall/

    For more information:

     

    Contact Autodesk:

    http://USA.Autodesk.com/ADSK/servlet/index?siteid=123112&ID=1073074

     

    I hope this helps.

  • Facing a problem by opening the console of the AAU

    Hello

    I installed Webcenter content 12 c. I started the server of the University Complutense of MADRID. If the server is also running, I'm unable to open the cs console.

    Also, I see a few error messages in the logs at the server startup. Fix the content of the newspaper.

    Can someone please help me go further.

    javax.servlet.ServletException: could not start a deployment of servers of IDC.

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1340)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:593)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:522)

    ...................

    Caused by: java.io.IOException: csServletFailedToFullyInitialize

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    ...................

    Caused by: intradoc.data.DataException:! Abandoned facility.

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:553)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:102)

    ............

    Caused by: java.lang.UnsatisfiedLinkError: intradoc.common.NativeOsUtilsBase.getNativeVersion () Ljava/lang/String;

    at intradoc.common.NativeOsUtilsBase.getNativeVersion (Native Method)

    at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:448)

    to intradoc.common.NativeOsUtilsBase. < init > (NativeOsUtilsBase.java:360)

    to intradoc.common.NativeOsUtils. < init > (NativeOsUtils.java:28)

    at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)

    Hello

    Please check below doc ID

    csUnableToStartFileStoreProvider NativeOsUtils of the class is not loaded. The NativeOsUtils class is not loaded. java.lang.UnsatisfiedLinkError: intradoc / (Doc ID 1606897.1)

    There are two possible solutions to this problem:

    (1) obtain and install Visual C++ 2005 SP1 Redistributable Package (x 86 and x 64).

    (2) if the installation of Visual C++ does not resolve the problem, then please scroll through the Note 1333282.1.

    After the upgrade to 11.1.1.6.0 reception could not start deployment of admin IDC error when starting Managed Server (Doc ID 1561507.1)

    Thank you

    Amey

  • Reports 12 c authentication problem

    Hello

    Earlier, I could access to http://NomServeur/rapports/rwservlet/showjobs and another servlet orders easily, in the version 12 c, I can't pass this screen:

    auth.png

    I tried to change the password and restart the server as stated in this link:https://docs.oracle.com/cd/E12839_01/bi.1111/b32121/pbr_conf002.htm#i1007074

    And I have two problems:

    -I have found no "targets.xml" except in a single location (% DOMAIN_HOME%\sysman\state) and the file is empty.

    -I can not find how to disable this authentication.

    Thank you

    Hello.

    If you have an oracle support see Doc ID 2072876.1 for in-process or Doc ID 2071879.1 for the stand-alone reporting server.

    Best regards.

Maybe you are looking for

  • Satellite U200-115: how to reach the return key on the keyboard

    Hello. I recently bought a Satellite U200-115 and have a quick question. I was typing earlier today and I accidentally eliminated one of the keys to its position. I then spent the last 3 hours trying to attach it to the laptop. I was just wondering i

  • Web sites have overlapping/overflow of text and objects

    I went through all the FAQS and forums for a good bit and can't seem to find something that works for me. I have a problem with most of the Web sites with text in all directions, under the images, or hidden behind other objects. I saw column problems

  • TouchSmart 310 pc: wscript.exe - bad Image

    How can I get rid of this box pop up. Suddenly began to appear when you try to use the control panel. Affixed in the box is the following: C:\ProgramData\{9A88E103-A20A-4EA5-8636-C73B709A5BF8}\listSvc.d

  • 24Upgradecheck

    I have no idea how I chose this place. It only shows up on discussions archived on TheFourChannel, no where else. Where could I get this and how then I remove it? Of course I don't download 'Flash', I simply close the page. It was released three time

  • ERRORDSNF on all the resources NOR-FBUS 3.1.1 blocks.

    Does anyone have experience with the ERRORDSNF on all blocks of resources on a network? I'm trying to connect a new device to an existing network, but it won't let me download I'm new to Fieldbus Foundation and we have NEITHER-FBUS 3.1.1 with devices