Native Client for Symbian Mobiles

I've a Sony-ericsson 910i with Symbian and the proprietary as well as
Opera browser.
I'm looking for a native client to use on this so that I may access our
SAP system. I've seen some reference to a client being available for the
Nokia 9210 (which runs Symbian) but can't seem to find any more info or
the download for this.

Jason Roesler wrote:
II am interested to know,
Is there an native client for enterprise eddition or enterprise 3 for
Solaris x86?
thanks
Hi.
There should be in the upcoming 4.1 release of SGD EE.
Native Clients should be available for Windows, Linux (Intel x86), Sparc
Solaris, x86 Solaris, MAC OS/X.
Best,
Rob
Roberto Zini - r.zini<@AT@>strhold.it
"Has anybody around here seen an aircraft carrier?"
(Pete "Maverick" Mitchell - Top Gun)

Similar Messages

  • Port Knocking client for Symbian?

    I was wondering if a port knocking client existed for Symbian (specifically the N8)?
    http://en.wikipedia.org/wiki/Port_knocking
    Thanks

    not that i'm aware of. and i would say that the chances are pretty slim. these kinds of applications are rare on mobiles, even client side, given that their IPs are rarely routable.
    what are you ultimately trying to achieve. maybe that is a better approach.
    There's no dignity in begging for kudos. Do it for the karma.

  • Jabber client for windows mobile.

    Hi ,
    One of my customer want to install jabber in windows mobile. I informed him there is no client released for windows mobile yet. 
    But he wants any document from cisco site that there is no release available for win mobile. I tried searching same but could not get any.
    Can someone pls provide me some cisco doc on this.
    Thanks in advance.
    Siddu..

    There is no doc that will you tell what platforms we do not support, we tell you which platform we DO support.
    If he insists on a doc, he cannot ask for what does not exist.

  • SIP Client for Symbian (Nokia N91)

    Anybody have a SIP Client for Nokia N91 (Symbian OS)or knows dates of releases, links, any thing?
    Thanks
    Juan

    Did you get a SIP client for the N91? if so where from.

  • Flash for symbian,is it coming?

    Hello!
    I am wondering if anybody knows something about flash for symbian mobile phones.A long time ago i read somewhere that at the end of 2010 adobe would finally make it. Does anybody know if it is coming at all?
    Best regards,
    Mitja

    The latest versions of Flash Lite whcih Adobe developed for mobile devices are not concurrent with the Flash versions available for Windows, Mac etc. - it is not an issue of the phone hardware being in any way inadequate.
    However, you should note that Adobe does not release Flash Lite in user-downloadable form, it is always supplied to phone manufacturers for integration into phone firmware, so any new version released will only ever be available if the phone firmware is updated with the changes incorporated.

  • CAB file for Windows Mobile 2005

    Hello Everyone ,
    Can anyone let me know where I can find .CAB file for MI client for Windows Mobile 2005 ?
    Regards ,
    Rucha

    hi Rucha,
    The CAB file is available as a part of the ZIP file i had mentioned in my previous posts...
    Unzip that file. Then browse thro the folder structure to the Folder i had mentioned. You'll find the CAB files there.
    Regards
    Ak.

  • Swype for Symbian ^3, Anna, Belle, Belle Refresh i...

    Swype for Symbian ^3, Anna, Belle, Belle Refresh is EXPIRED. What should I do?
    Swype is expired irrespective of the firmware on your device, please help. 
    Symbian connected me to the world, to my dreams.. Thank-you Nokia

    Symbian^3 phones are not compatible with SymRDP software.
    You may see that these phones are NOT included in Compatible Devices List for SymRDP software.
    SymRDP will close automatically on most non-compatible phones.
    There is no VNC nor  TeamViewer remote access for Symbian^3.
    You may check if anyone is interesting in developing software for Symbian^3. You may check www.rdmplus.com as they used to develop some Java based Remote Access clients for Symbian.
    Most likely, the bottom line is – if you need Remote Desktop access, then you should not use Symbian^3 phones and use some real smartphones instead as all of them have support for RDP and VPN access and many have support for access via SMB protocol as well (file sharing).

  • Develop native application for blackberry-ADF Mobile

    Hi,
    Can anybody tell me, how to develop native application for blackberry using adf?
    Thanks & Regards,
    Anshul Mittal

    1) Wait until there is an ADF Mobile update that support BlackBerry (if it ever comes)
    2) Use this : http://www.oracle.com/technetwork/articles/bors-adfmobile-086867.html

  • What functionality is available with sp 6 for CRM Mobile Client 7 eph1

    Hi
    Sp 6 has been released for CRM Mobile Client 7 eph1. I know  sp 6 provides support for mobile client on  windows 8 . Does it contain any other functionality?
    Regards
    John

    Hi John,
    All information regarding  this release can be found in SAP Note 1799687
    Regards,
    Gervase

  • Advices required for a JAWT implementation for Windows Mobile 5 and 6

    Hi,
    I want to create a jni bridge in order to open a player in a java Frame. This player works fine in a mobile native application.
    I want to know if somebody tried already to create such a bridge keeping in mind that this is for mobile environment. If yes, is there some specific problems which I should be aware of?
    Specifically I have 2 problems.
    1. My jni getHWND method always return 0.
    JNIEXPORT jint JNICALL Java_JavaRMEngineInterface_getHWND
    (JNIEnv *env, jobject obj, jobject component){
         HWND hWnd = 0;
    //try {
    typedef jboolean (JNICALL PJAWT_GETAWT)(JNIEnv, JAWT*);
    JAWT awt;
    JAWT_DrawingSurface* ds;
    JAWT_DrawingSurfaceInfo* dsi;
    JAWT_Win32DrawingSurfaceInfo* dsi_win;
    jboolean result;
    jint lock;
    bstrt jawtPath = "\\Windows"; // Put Path String from jrePath to jawtPath
    //Load AWT Library
    if(!_hAWT)
    //for Java 1.4
    hAWT = LoadLibrary(jawtPath + bstr_t("\\jawt.dll"));
    //if(!_hAWT)
    //for Java 1.3
    //_hAWT = LoadLibrary(jawtPath + bstrt("\\awt.dll"));
    if(_hAWT)
    PJAWT_GETAWT JAWT_GetAWT = (PJAWT_GETAWT)GetProcAddress(_hAWT, L"_JAWT_GetAWT@8");
    if(JAWT_GetAWT)
    awt.version = JAWT_VERSION_1_3; // Init here with JAWT_VERSION_1_3 or JAWT_VERSION_1_4
    //Get AWT API Interface
    result = JAWT_GetAWT(env, &awt);
    if(result != JNI_FALSE)
    ds = awt.GetDrawingSurface(env, component);
    if(ds != NULL)
    lock = ds->Lock(ds);
    if((lock & JAWT_LOCK_ERROR) == 0)
    dsi = ds->GetDrawingSurfaceInfo(ds);
    if(dsi)
    dsi_win = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;
    if(dsi_win)
    hWnd = dsi_win->hwnd;
    ds->FreeDrawingSurfaceInfo(dsi);
    ds->Unlock(ds);
    awt.FreeDrawingSurface(ds);
    return (jint)hWnd;
    //}catch()
    return (jint)hWnd;
    2. this second method throw an "error C2100 illegal indirection" at the last line on g_hwndMain.
    JNIEXPORT jboolean JNICALL Java_JavaRMEngineInterface_construct
    (JNIEnv *env, jobject obj, jlong peer, jint hwnd, jlong top, jlong left, jlong bottom, jlong right, jstring lpszSystemLanguage, jint nCacheSize){
         CRMEngineInterface cpp_obj = (CRMEngineInterface)peer;
         HWND g_hwndMain = (HWND)hwnd;
         HDC hDC = ::GetDC(g_hwndMain);
         SIZE size;
    size.cx = (LONG) right - (LONG) left;
    size.cy = (LONG) bottom - (LONG) top;
         TCHAR sInstallDir[MAX_PATH];
         ::GetModuleFileName(NULL, sInstallDir, MAX_PATH);
         TCHAR* pEndPath = _tcsrchr(sInstallDir, L'\\');
         if (pEndPath != NULL)
              *(pEndPath + 1) = 0;
         TCHAR sContentDir[MAX_PATH];
         memcpy(sContentDir, sInstallDir, MAX_PATH);
         UINT nCacheSizeCPP = (UINT) nCacheSize;
         return *cpp_obj->construct( hDC, g_hwndMain, size, sInstallDir, sContentDir, 0);
    Any advice will be very helpful.

    Hello Brian,
    the client technology is based on web dynpro, but it runs in an own Mobile Client. Therefore you do not need the internet browser for the application.
    During the client development you can use the web dynpro tools to design the layout and the screen flow of your application. In the last step you can deploy the application to your mobile client and run it without a browser.
    The mobile client includes a web dynpro runtime to display the data. Therefore you do not need a J2EE server in order to run an application.
    The mobile occasionally connected scenario provides a api to access the local database. NetWeaver Mobile 7.1 for PDA supports two different databases:
    1. MinDB ( from SAP, included no additionals license fee required )
    2. DB2E
    NetWeaver Mobile includes a complete queing mechanism.
    You can also take a look into two eLearnings which provide a good technical overview:
    Link:  [Architecture and Runtime|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e048e20c-7246-2a10-e8a5-8b2b78b5b994]
    Link: [Development Cycle and Tools|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/204fc387-6646-2a10-99b7-bba030bc3f68]
    Unfortunetly there is no fixed timeline for WM6.But I guess this will be available soon.
    I'm afraid but also don't know of any fixed timeline regarding Adobe Interactive forms.
    The architecture of NetWeaver Mobile 7.1 is pretty new and full of great new functionalites. The User Interface for NetWeaver Mobile 7.1 uses eSWT to render the UI elements.
    Best Regards,
    Stefan

  • Skype for Symbian beta on n97

    I found the following:
    "Am afraid i dont know about the N97 native client but you could try the new Symbian Beta (not officially supported for the N97 but some users are reporting they have installed it and it works) at least until the Native client gets released anyway." 
    at this link http://forum.skype.com/index.php?showtopic=488381
    Has anyone attempted this with an N97? What issues/success have you encountered? Hoping for some feedback to help me decide if I want to attempt this.

    It installs and works sort of, chat works but thats about it.
    May I take this time to express my disgust over the general state of the N97/Skype. I paid £500 for mine and have had nothing but sodding issues over sodding issue plus being lied to constantly by Nokia. Accuweather refuses to work for ANY city/town in the UK (yes I have tried every single one!) Every other country in the world gets weather info but not the uk

  • Selection of a mobile framework - for enterprise mobility app.

    There have been many plethora of mobility frameworks (e.g Kony, HTML5 based  frameworks) that have same features as Cordova - write your code once and run it on multiple platforms. Some are free,others are not. Having recently implemented enterprise mobility app (integrating with ECC, CRM) using one such framework, there are a certain I would like to consider before choosing a framework:
    a) How easy it to build security into the app (the login module)?
    b) How do I know that the requests for my data is an authenticated source?
    c) How good is the vendor support with plugins, upgrades to SDK?
    d) For frameworks that are free, do vendors really pay attention to issues that you are facing during (very specific to) your implementation.
    e) Scalability of the framework to support the app with newer mobile OSs, mobility sets (Motorola, Micromax, Blackberry), tabs.
    f) All mobile sets have limited memory at most to 2GB (or little more). How will the framework help in viewing huge amount of data that is there in SAP?
    From my experience, I would say it is big pain, implementing a enterprise mobility app with open framework adhering with the go live dates.
    SAP products are more easy to handle. A lot of featues comes inbuilt. Mobile apps comes as pre-packaged apps. One needs to customize it according to it needs. Product support from SAP is remarkable. Implementing and going live with such product becomes automatically easy adhering to the timelines. So is the maintenance. But of course comes the licensing price for SAP.

    Sukanta Rudra,
    I love to work with SAP products and so i m in SAP. Having worked on several other mobile applications before , i can clearly see the ease in development of Enterprise applications using SAP products portfolio.
    Often I have seem blogs in SCN, advocating for frameworks other than that of SAP. No harm
    Please mention the blogs as a reference for more understanding. I can always only see Cordova / appcelerator being the recommended platforms by SAP for cross platforms development.
    SAP Partners with Adobe-Cordova/phonegap , Appcelerator, Sencha (the three big players in cross platform development)
    Developer Announcement: Third Party Tools
    SAP Drives Openness and Choice for Millions of Mobile App Developers
    More over i have worked mostly on all the three for a while and have experienced the ease in development with cordova.
    Also the HWC (Hybrid Web Container ) - the former way for developing hybrid applications on SAP Mobile Platform till 2.x has Cordova/phonegap plugins inbuilt in it. Literally it followed the approch of Cordova and ui framework was of Jquery Mobile .
    But Now with the release of SMP 3.X things are completely under the control of developer. There are no restrictions to use a particular framework for development and developers are free to use their choice for development (SMP 3.x highlights BYOT - Bring Your Own Tools for Developers).
    Adding to above , just would like to mention there are few products mainly focused and developed on cordova technology (KAPSEL plugins, Appbuilder, Fiori Client , River RDE in future integrating Kapsel plugins)
    SMP 3.x is all open for developers , we are free to use any platform as per our requirements and convenience now.
    PLease have a look at these videos on how SMP 3.x strategy stands for
    My experience has been using Kony-SKY framework for developing the mobility apps (not mobile web). SKY plugins has been certified by SAP, to be used for developing mobility applications. (SAP does embrace other vendors). My questions pointed out above, was out of the struggles we had while implementing the project. Many at times, I felt I was reinventing the same tools while integrating into the SAP backends.
    I am not a Kony guy, but will surely look into this and would check if i can help you.But out of my experience with Cordova /HWC/ Kapsel , it was satisfactory.
    I presume you might have used/using SAP's Fiori apps, SAPUI5, mobile architecture and would like to gather some more information very specific to SAP's environment. I have no experience now on delivering apps using SAP's products. Maybe three months from now, I would get deep with 'SAP Fiori UX and SAP Screen Personas'. Maybe you could throw some light on few more queries.
    Yeah , thanks to SAP for Fiori being out of License now and UI5 an Opensource. I have had the opportunity to also work and implement Fiori transnational applications and also develop Custom UI5 applications .
    Note : Personas is really a good product , but on the down side is n't responsive in nature , so might not be a best fit for mobile devices
    How are builds generated for different platforms? (Android uses.apk, Blackberry uses .cod, iPhone uses .ipa)
    I can help you understand this with an Android Phone Gap project example
    Typically Native Android apps are developed using Core Java.
    Initially all the Core libraries of Android and java are loaded with import command
    import android.os.Bundle;
    Now Cordova libraries are added to existing libraries
    import android.os.Bundle;
    import org.apache.cordova.*;
    and Android uses the concept activities and layout for screen navigation and designing.
    and by default any android project should have an activity and layout for launching the application, for which the code looks something similar to this
    setContentView(R.layout.main);
    so , a Relative layout is initially launched as main view.
    As mentioned in the blog in  " How does it actually work section " cordova loads web views instead of the native layouts /activities
    How Does it actually work ?
    Technically the User Interface of a Cordova Application is effectively a WebView that occupies the complete screen and runs in the native Container. So , it is the same web view that is used by the Native  Operating systems. This purely means that only the Native Containers changes according to the OS and internally the web pages remain the same. (Since the browser rendering of webpages are different for each operating systems)
    For       IOS it is UIWebView class
                 Android it is in  android.webkit.webview
                 Windows it is WebViewClass and the similar goes to other OS .
    This line of code is responsible for that
    super.loadUrl("file:///android_asset/www/index.html");
    our developed web applications should reside in the above mentioned location to access as any native web view
    also few other hacks are to be done at
    public class [appname]Activity extends Activity {
    to
    public class [appname] Activity extends DroidGap {
    and to the android manifest file accordingly to get the permissions
    Now internally the android applications works just like any native applications but accessing the web applications files in the web view. and just generates the .apk accordingly to the application.
    Say a query is executed from a mobility app, say the result set is some 1000 rows, how does the data fetch mechanism work. Do you use some delta data fetch mechanism?
    if i were to handle this , would try to filter this out to sections. Lets imagine huge PO s are resulted upon a query, i would try to create some sections/categories for Unreleased/Open/Approved /... and again try to perform some dynamic filter operations on each category selection/ or make use of pagination property to move across the items/records
    Also user would not be interested to scroll and search for his item from a huge collection of items.
    More over for handling of huge records Native approach is preferred to Hybrid/mobile web.
    When a mobility connection snaps while the user is using the app, does the app stop immediately? Or rather how is user informed about non availability of the network connection?
    Lets assume two cases here
    1) Complete Online application
    2) Online Offline Application
    1) If user is trying to access the data from the application , since this being an online application , a proper network connectivity id to be checked properly before making any request .
    for phone gap/cordova , Network Object helps us to check if network connectivity is available to make any request. else throw an alert to check the connectivity/ turn on the connectivity.
    Similarly a Connectivity manager API exists for Android . Here is an example. Same would apply for other OS also.
    2) For online - offline application . user wouldn't be able to read records from back end , but can perform other necessary operations on the device, and once the device gets connected to network, can sync with the back end . An alert should be thrown to inform the user about the loss in network connectivity and the limitations in accessing the data .
    Build/release mechanism and subsequent tracking for mobility apps for periodic release of apps  - say there would regular fixes to bugs, upgrades to framework SDK, device OSs might get upgraded - Is there a tool for tracking all these, etc
    Yes. MDM tools are perfect fit for these. Afaria and Mocana are doing well now.
    And, anything that you would like to share, related to SAPs environment, that makes implementation easier.
    SAP Mobility is really booming and will grow , dominate in enterprise mobility in future.
    For our understanding:
    Let us know for more.
    Edit :
    IG is a part of SMP 3 but not a separate component as NWG
    Regards
    Virinchy
    Message was edited by: Virinchy P

  • About Skype for Symbian

    Is there any indication as to how long the Symbian Skype client will continue to function?Thanks.

    We have been working hard to make Skype for mobile better than ever, and adopting Skype cloud enables us to drive improved battery life, improve connections and introduce exciting new features. However Symbian wasn’t built for the cloud-connected world, so we are retiring the Skype for Symbian app and focusing on bringing the best possible experience to the most popular mobile platforms: Windows Phone, iOS and Android. The Skype for Symbian app will be removed from the Nokia store today, however users that have already downloaded the app can continue to use it.
    UPDATED on August 18th:
    We are now permanently retiring all Skype apps for Symbian phones. As a result, within the next few weeks, you’ll no longer be able to sign in and use Skype on any Symbian phone.
    You can still stay in touch with friends and family using Skype on an Android device, Nokia Lumia phone or desktop computer. You can sign into them all using the same Skype account. The latest versions of Skype for all supported devices are available here.
    See the full article here: https://support.skype.com/en/faq/FA10389/is-skype-for-symbian-being-discontinued

  • How to use OneDrive for Business mobile app with SharePoint 2013 on-premise?

    Hi All,
    I have a SharePoint 2013 (with latest December updates) that host a dedicated personal web site for users.
    The OneDrive portal works fine and users are able to sync their files with the OneDrive client for Windows.
    Now I want to test the OneDrive for Business mobile app on Android, but there is no option to specify the "personal" portal URL.
    It asks only for domain credentials.
    Does I need to configure specific records on my public DNS to allow mobile users to sync their files?
    Thanks

    I can confirm that with iOS you can connect to your SharePoint server through the advanced options.
    But the very strange thing is that the OneDrive version for Windows Phone 8.1 is limited as the Android version.
    This has no sense.
    Why does Microsoft should limit the Business functions on its mobile operating system, and not on iOS?
    Another strange thing is that configuring my Exchange account, Windows Phone 8.1 informed me that it has connected OneDrive for business (but is a fake information).
    See attached image.
    If I open the built-in OneDrive app, it give me the option to add a OneDrive for business account, but is only for Office 365 users (like with the Android version).
    I thing that Microsoft should let at least to Windows Phone users to connect to on-premise SharePoint sites.

  • Cisco Jabber Client for Linux

    Are there any plans to have a Cisco Jabber client on linux?

    Mike,
    The larger body of use case and development for Jabber has centered on Windows and mobile iOS and Android devices. That's not to say that there isn't a contingency of customers that want a Linux client but, as of today, there is no "Jabber" client for that platform. However, I've heard this question asked in a few different forums and the answer thus far has typically been one or both of the following:
    1) There is a Jabber SDK, which could potentially be used to custom develop an application.
    2) Use 3rd-party XMPP client (e.g. Pidgin)
    As for an official answer on "will there be in the future" with a yes/no/maybe and/or a possible timeframe, you would need to reach out to Cisco or your trusted partner as roadmap items cannot be discussed without having a non-disclosure agreement in place. That's what Jamie is getting at in his response.
    D. Hailey
    NetCraftsmen, LLC.

Maybe you are looking for

  • Turning off Smart quotes?

    Does anyone know how to turn off smart quotes in RHX5? I've posted other questions related to the issue I'm having currently with double quotes and the copyright sign showing up as ? in the help files once they been included in a build. No one in my

  • PC Suite Issues after Firmware Upgrade of N73

    Hi, A new Firmware finally became available for my N73. The version number of this firmware is 4.0735.3.0.2. After upgrading my firmware, every time I connect my phone via bluetooth or USB i get the "The connected mobile phone does not have PC Suite

  • Converting Word To pdf - margin errors

    I am trying to create a portrait pdf file from Word with a custom page size (11X8.5), but when I do this I get a message that the printable area is outside the margins of the form. I have been told by Tech Support that they were able to create a port

  • Oracle Workflow Manager

    I can't seem to find any doc on OWF 2.6.4 and having two separate Targets to maintain in OWF. It seems that when I exported my development mdl to my production workspace and attempted to deploy my process flows to the new target that workflow manager

  • Restore folder structure in Library Module

    The folder and subfolders of the Library module was accidentally removed. The photos are all still in my catalog, just the organized folders are no longer there. The section is blank. The folders are still on my hard drive and the catalog file is fin