Calling applet through https

D/A,
when i am calling the applet using http:\\localhost:8080\Test\index.html .
it is working fine and applet is displayed in the browser but when i am calling the applet using htts:\\localhost:9443\Test\index.html
the applet is not visible in the browser and following error comes in the java console of JRE.
Requesting URL: https://10.1.3.116:9443/Test/Scribble.class
load: class Scribble.class not found.
java.lang.ClassNotFoundException: Scribble.class
     at sun.applet.AppletClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadCode(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Caused by: java.io.IOException: open HTTP connection failed.
     at sun.applet.AppletClassLoader.getBytes(Unknown Source)
     at sun.applet.AppletClassLoader.access$100(Unknown Source)
     at sun.applet.AppletClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
pls. let me know in case any of u knows abt this..
Thanks & Regards,
Neeraj Yadav.

Seems that the jre cannot fetch the class file from the server when https is used.
Assuming that https://10.1.3.116:9443/Test/Scribble.class fetches a class file
when you open it with a browser than there is something wrong with the jre.
If you cannot get it with a browser than you might have a look at the http server.
In case it's the jre than a Full trace might help us out:
http://forum.java.sun.com/thread.jspa?threadID=656028

Similar Messages

  • Call servlet through stateless sessionbean

    can any body help me about.....
    code to call(run) servlet through stateless session bean,
    how can develop it using URL class..
    please help me............

    Hi
    it can be possible if your session bean  can call servlet through an protocol.
      means you can create an URL or URL connection class and call it through http protocol.
    i .e we can create URLConnetion ( HttpURLConnection ) object to that servlet  from a session bean.
    I hope this will help you some extent to solve your probs.
    Thanks
    Mrutyunjaya Tripathy

  • Error while calling applet in HTML in SAP NWDS

    Hi,
    We have written a java code with Main method and we are trying to run it on web. So we have written another piece of HTML code where we are calling the othe program with applet. But getting below error.
    Below is exce[ption I am getting while running jree charts made in java :
    Java Plug-in 1.6.0_24
    Using JRE version 1.6.0_24-b07 Java HotSpot(TM) Client VM
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.reflect.InvocationTargetException
    at com.sun.deploy.util.DeployAWTUtil.invokeAndWait(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.runOnEDT(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.RuntimeException: java.lang.InstantiationException: org.jfree.chart.demo.BarChartDemo
    at sun.plugin2.applet.Plugin2Manager$12.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.InstantiationException: org.jfree.chart.demo.BarChartDemo
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    ... 15 more
    Exception: java.lang.reflect.InvocationTargetException
    Below is html code run to call applets :
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "" title="http://www.w3.org/TR/html4/loose.dtd">" class="link">http://www.w3.org/TR/html4/loose.dtd">
    (http://www.w3.org/TR/html4/loose.dtd)
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello</title>
    </head>
    <body>
    <applet code=org.jfree.chart.demo.BarChartDemo archive="src.jar" width="320" height="120"></applet>
    </body>
    </html>
    Please suggest.
    Regards
    Agamani

    Hi,
    Though there are a lot of importing parameters, you should give only one structure for outtable, and read as index 1 and index 2.
    FORM GET_SPRAS TABLES intable   STRUCTURE itcsy
                                              outtable  STRUCTURE itcsy.
      DATA: lv_kunnr LIKE kna1-kunnr.
      CLEAR: GV_SPRAS.
      lv_kunnr = intable-value.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = lv_kunnr
        IMPORTING
          output = lv_kunnr.
      SELECT SINGLE LAND1 SPRAS INTO (gv_land1, gv_spras) FROM KNA1
        WHERE KUNNR = lv_kunnr.
      IF sy-subrc = 0.
        READ TABLE outtable INDEX 1.
        outtable-value = gv_spras.
        MODIFY outtable INDEX 1.
        READ TABLE outtable INDEX 2.
        outtable-value = gv_land1.
        MODIFY outtable INDEX 2.
      ENDIF.
      IF gv_land1 EQ 'DE'.
        CLEAR: GV_LAND1,
               GV_SPRAS.
      ENDIF.
    ENDFORM.
    Edited by: Srinivas Kalluri on Mar 30, 2009 5:00 AM
    Edited by: Srinivas Kalluri on Mar 30, 2009 5:10 AM

  • Error when trying to access a form through https

    Hi,
    I'm facing this error when trying to access a form through https, i'm using OAS10g 10.1.2.3 over linux, it has webutil configured and is working perfectly with https
    I'm accessing the form through webcache.
    the error:
    Java Plug-in 1.6.0_37
    Usar versión JRE 1.6.0_37-b06 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Users\Carlos
    c:   borrar ventana de consola
    f:   finalizar objetos en la cola de finalización
    g:   liberación de recursos
    h:   presentar este mensaje de ayuda
    l:   volcar lista del cargador de clases
    m:   imprimir sintaxis de memoria
    o:   activar registro
    q:   ocultar consola
    r:   recargar configuración de norma
    s:   volcar propiedades del sistema y de despliegue
    t:   volcar lista de subprocesos
    v:   volcar pila de subprocesos
    x:   borrar antememoria del cargador de clases
    0-5: establecer nivel de rastreo en <n>
    cargar: clase oracle.forms.webutil.common.RegisterWebUtil no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
    cargar: clase oracle.forms.engine.Main no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.engine.Main
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.engine.Mainwhat could be the reason it can not find the webutil libraries with https ?? i tried erasing the java's cache but still the same error :(
    Regards
    Carlos

    I got it, i only had to check the option 'Use SSL 2.0 compatible ClientHello format' from the java's control panel advanced tab.
    Metalink's note: 787739.1
    :)

  • Call RFC through EJB

    Hi,
    I have senerio in which i need to call RFC through EJB.
    Thanks.
    Abhilasha
    Edited by: Abhilasha Dahare on Oct 3, 2008 1:29 PM

    Hi,
    Go through the following links:
    Extract R/3 data via EJB
    http://help.sap.com/saphelp_nw04/helpdata/en/35/42e13d82fcfb34e10000000a114084/frameset.htm
    Siddharth

  • Call applet methods from Javascript

    Hello,
    If I call applet method like :
    function callbackFunc(){
        var pp = appletID.getData();
        alert(pp);
    It works only if applet is deployed with <APPLET> tag or with javascript.
    If applet is deployed using <Object> and <embed> tags, in browser console the error is :
    TypeError: appletID.getData is not a function
    I couldn't find why is that behaviour. What do I do wrong?
    Thanks

    Hi Paul,
    (1)Seems to be your Java Runtime Environment path is still setted for JRE 1.3.0_01 and not for 1.3.1. So pelase go to the
    Control Panel-->java plugin 1.3.1-->Advanced. Here you set the Java Runtime Environment to the JRE 1.3.1 version. Its better to remove the older version before installing the new version on JRE.
    (2)<OBJECT> tag won't work for Netscape. You can only use <APPLET> or <EMBED> tag for Netscape.
    Hope this will help you.
    Anil
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support

  • Problem in calling applet function in jsp

    When i am trying to load Java applet through jsp, i get this error :
    Java Plug-in 1.6.0_02
    Using JRE version 1.6.0_02 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\pankajb
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class CAppletDisplay.class not found.
    java.lang.ClassNotFoundException: CAppletDisplay.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    <jsp:plugin type="applet" code="CAppletDisplay.class" codebase="." width="857" height="687" align="left">
            <jsp:params>
               <jsp:param name="machine" value="server" />
              <jsp:param name="port" value="1433" />
              <jsp:param name="Databasename" value="Timba" />
              <jsp:param name="userid" value="sa" />
              <jsp:param name="password" value="password"/>
               </jsp:params>
               <jsp:fallback>There is a problem with your browser ...</jsp:fallback>
         </jsp:plugin>

    load: class CAppletDisplay.class not found.
    java.lang.ClassNotFoundException: CAppletDisplay.classthat means that client jre didn't find the CAppletDisplay class.
    make sure that you put this class in the right directory.

  • BlazeDS provides push functionality through HTTP ??

    Hi All ,
        In my application i am integrating my Flex app with Java Struts using BalzeDS. Now i have a requirement like Data(Server) push functionality through HTTP. I am using HTTPService calls only in my Flex application. Can BlazeDS provides push functionality through HTTP.If so , how can i use that??
    I read a article about "BlazeDS Remote Object Service " and "BlazeDS Messaging Service" . I am so much confused. Please Help....
    Thanks in Advance....

    Yes -- I had a similar experience. I found the order in which you enable this stuff is critical.
    For me, I had to first enable the push server, configure it, stop it, go back into mail, set the server to push, start the notification service, then start and stop the mail service.
    Push showed my test Leopard client as a connected user; no matter what I did with the iPhone though I couldn't get it to push (or connect.)
    I ended up disabling the whole thing though, when I started seeing references in the system log to push service error messages. I'll need to dig back through them to paste them here on the forum, but it appeared something still isn't quite right.
    The complete lack of technical documentation on this is a bit annoying, to say the lease.

  • XML through HTTP send

    Hello,
    I am having an requirement in which another web application would send XML through HTTP request to SAP which would be processed in SAP.
    I was thinking to use BSP where the external web application would send HTTP request to BSP URL. I was trying to find some method of request object which will be able to get this message but not getting suitable method.
    I tried using request->get_raw_message( ) but was not able to test. Basically i tried with sample msxml object using xmlhttp.send() method but couldn't find the response text.
    has anyone tried such thing. In java we do have response.set

    No i don't have that xhtmlb tag in my code.
    my code is very very simple..
    here is the code
    Method onRequest
    data: l_param type string value 't1'.
    lv_input = request->get_cdata( ).
    l_test = request->get_form_field( l_param ).
    Method onInitialization
    data: l_srno type i.
    select max( SRNO ) into l_srno from ztesthttp.
    if sy-subrc = 0.
      lv_num1 = l_srno + 1.
    endif.
    CALL FUNCTION 'Z_UPDATE_TEST'
    EXPORTING
       HTTPMESSAGE       = l_test
       SRNO              = lv_num1
    IMPORTING
       I_SUBRC           = i_subrc
       C_SUBRC           = c_subrc
    i_subrc = sy-subrc.
    and Layout
    The return code for insert is <%=i_subrc%> and commit code is <%=c_subrc%><br>
            The requested string is: <%=lv_input%> and <%=l_test%> and <%=pg_test%>
    Thanks..
    regards
    rajeev

  • VallueMapping update through HTTP from SAP system

    Good day everyone,
    For two weeks, I have been trying to send xml data from SAP to SAP PI through HTTP. The purpose of this interface is to update the Value Mapping entries in PI from SAP. I know, most of you might tell me to use ABAP proxies to make things more simple and easier. The reason why I did not use ABAP Proxy is because the SAP and SAP PI systems I'm using have different versions. I have SAP Netweaver 7.1 for my PI system and ECC 6.0 for my SAP. I believe it wouldn't be possible to use ABAP/JAVA proxies if the two systems are of different versions.
    Here is what I have so far. I created a program to send an HTTP request using an RFC Destination. I used my own UserName and Password in the logon details in the RFC Destination. I used service adapter_plain. Here is the complete URL: http://<host>:<port>/sap/xi/adapter_plain... . I created the necessary objects in Integration Directory and the HTTP sender program. Below, you will see a sample of my payload and the error message I got. Can anyone help me how I could fix this error?
    Payload:
    <?xml version="1.0"?>
    <ns1:ValueMappingReplication xmlns:ns1="http://sap.com/xi/XI/System"
    xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
    <Item>
    <Operation>Insert</Operation>
    <GroupID>z80c0f608a1d11df928700ffb81a5a80</GroupID>
    <Context>http://sap.com/xi/XI</Context>
    <Identifier scheme="Blue"
    agency="Yellow">GREEN</Identifier>
    </Item>
    </ns1:ValueMappingReplication>
    Error:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!-- Call Adapter -->
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIServer</SAP:Category>
    <SAP:Code area="INTERNAL">UNAUTHORIZED</SAP:Code>
    <SAP:P1>401 </SAP:P1>
    <SAP:P2>Unauthorized</SAP:P2>
    <SAP:P3>(See attachment HTMLError for details)</SAP:P3>
    <SAP:P4/>
    <SAP:AdditionalText/>
    <SAP:Stack></SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    Kind Regards,
    Chris C.

    >  Mapping entries in PI from SAP. I know, most of you might tell me to use ABAP proxies to make things more simple and easier. The reason why I did not use ABAP Proxy is because the SAP and SAP PI systems I'm using have different versions. I have SAP Netweaver 7.1 for my PI system and ECC 6.0 for my SAP. I believe it wouldn't be possible to use ABAP/JAVA proxies if the two systems are of different versions.
    Of course this works.
    I use APAB proxies with SAP R/3 4.7 to send value mapping data to PI 7.1
    Copy the standard value mapping outbound interfaces to your own SWVC and genearate ABAP proxies for it.

  • Calling EJB over HTTP from thick client

    Hi,
    But, if I want to use a thick client then how I can make calls through HTTP.
    I know about j2ee client container. But in addition to it, I may have to write some code on client as well on server. Any inputs/guidelines will be helpful for me.
    Thanks,
    Plad

    Hi,
    Thanks. I checked weblogic's documentation for application client but could not find what servlet can be configured.
    In SUN documentation at http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Overview2.html say that- Application clients directly access enterprise beans running in the business tier. However, if application requirements warrant it, a J2EE application client can open an HTTP connection to establish communication with a servlet running in the Web tier.
    Any app. server doc providing details on how servlet needs to be used, what coding is required?How j2ee client container will send HTTP request to server.
    Thanks.

  • Calling applet from SJ passing enum type

    Is it possible to pass enumeration type when calling applet from JavaScript?
    For example my method in applet looks like:
         public enum ColorEnum {
              RED,
              GREEN,
    BLUE
         public void doSomething(ColorEnum color)
    If I send String in JS like 'RED' I get following exception:
    Message: java.lang.IllegalArgumentException: No method found matching name doSomething and arguments [java.lang.String]

    HI,
    Please check out these links-
    embed java applet in web dynpro
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b3c1af90-0201-0010-c0ac-c8d802d264f0
    Regards
    Lekha

  • I want to FaceTime with a friend in Japan.  Can I just call her through my contacts list the same way I would call my friend who live next door to me?

    I want to FaceTime with a friend in Japan.  Can I just call her through my contacts list the same way I would call my friend who live next door to me?

    Short Answer: Yes
    When they set up facetime, they either used an apple ID, or (for iphone only) their phone number.  You call using one of them.  An apple id linked email address in my opinion is simpler, as you don't need to worry about country codes and the like.  (I have never tried to facetime anyone out of the country, so I will admit I am not sure what you do about country codes.)
    These articles are a little dated, but should help you set up your or your friends facetime if you need to.
    Facetime Setup for iphone guide: http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-facetim e-set-up-use-and-troubleshooting-problems/
    Facetime setup for mac: http://simpleleapsoftware.com/blog/how-to-setup-facetime-on-your-mac/486/

  • Call Script through plug-in.

    Hello,
    I have written script(.jsx).I want to execute that script throught photoshop CS3 plugin(Like indesign we call script through plugin).Is it possible call script through Plugin?
    if possible then how?
    On the following thread
    http://forums.adobe.com/message/4632125#4632125
    some one said we can call script by using executeScript method in CS5.But executeScript method is not present in CS3.
    So,I tryied following for CS6.
         #include "JSScriptingSuite.h"
         JSScriptingSuit2 sScriptingSuite;
         sScriptingSuite.CreateEngine(&engineRef);         
         if(engineRef != NULL)
              char *scriptText = "documents.add();"; // script to create new doc.         
              ASUnicode script = (ASUnicode)scriptText;
              sScriptingSuite.ExecuteScript(engineRef, &script, kJSExecutionModeNoDebug, kSPNoError);
        But, when i call CreateEngine function it crashes.Is anything wrong in above code?which library i have to add?
          please,help me.

    The following runJavascript() function lets you execute JavaScript code in Photoshop CS1 to CS6 and Photoshop Elements 6 to 11.  Its only parameter is a c string containing the Javascript code. If the execution was successfull it returns true, otherwise false. If there is an error in the JavaScript code, it displays an error message with the details.
    #include "JSScriptingSuite.h"
    BOOL runJavascript(const char * jscode)
            ASErr err = 0;
            JSScriptingSuite2 * sScriptingSuite = NULL;
            err = sSPBasic->AcquireSuite( kJSScriptingSuite, kJSScriptingSuiteVersion2, (const void**)&sScriptingSuite);
            if (sScriptingSuite == NULL)  //Also support Photoshop CS1-CS4 and Elements 6-10
                    err = sSPBasic->AcquireSuite( kJSScriptingSuite, kJSScriptingSuiteVersion1, (const void**)&sScriptingSuite);
            if  (sScriptingSuite == NULL) return false;
            JSEngineRef engineRef = NULL;
            err = sScriptingSuite->CreateEngine( &engineRef );
            if ( err == kSPNoError )
                    //Convert ascii to unicode
                    wchar_t  * wcode;
                    size_t codelength = strlen(jscode)+1;
                    wcode = (wchar_t *)malloc(codelength*sizeof(wchar_t));
                    mbstowcs(wcode, jscode, codelength);
                    const ASUnicode * result = NULL;
                    err = sScriptingSuite->ExecuteScript( engineRef, (ASUnicode *) wcode, kJSExecutionModeNoDebug, &result );
                    if ( err != kSPNoError )
                            //Display error details
                            MessageBoxW(hDialog,(LPCWSTR)result,L"JavaScript Error",0);
                            return false;
                    free(wcode);
           else
                   return false;
            if (engineRef) sScriptingSuite->DeleteEngine( engineRef );
            return true;

  • Why sony phones doesn't have video calling options through 3g??

    Why sony not providing video call support through 3g.. In samsung we can call and its supported for all phones which have front facing camera.. thats a fault... Im a very interested one in sony products.. But this... Can you bring this feature in next update??

    To support uli's words:
    https://talk.sonymobile.com/t5/Xperia-mini-pro/3g-Video-Calling/m-p/104693#M2691
    https://talk.sonymobile.com/t5/Xperia-Z-ZL-ZR/3g-video-call/m-p/952159#M56280
    Topic closed.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

Maybe you are looking for