Portal Mobile Phone Access

hi,
i must admit to not knowing a great deal about mobile phone access to portal so i have a few questions.
the portal mobile pack offering basically gives you the capability of presenting portal pages to mobile phones.
the question i have is regarding the communications from the mobile phone to portal's content.
i.e. does the phone have to have internet access and basically accesses the portal over the internet via the mobile phone providers communications ?
or does a wap gateway product need to be installed in front of the portal too.
i thought nowdays most mobiles had internet access so comms occurs to the portal in the same way it would via a web browser - i.e. as long as your portal is publicly accessible via the internet and configured with the mobile pack, then mobile phones can access it.
is this correct or am i missing a piece of the puzzle?
thanks
im in australia btw tho answers from other locations are still of interest :)

Portal with Mobile Access allows portlets and channels which can output AML (either using OOTB portlets/channels or using Mobile Builder development tool), to be rendered on the desktop or most all mobile devices.
The mobile device, e.g., a mobile phone, must have internet service which most do today. The wireless carrier provides the WAP gateway to allow the device access to the internet. The purposes of mobile access are many including transforming the data for correct display, human interface improvments to ease use of data on smaller displays, single sign on to multiple portlet applications, cache streaming of the data to 'connection limited devices', etc.
Portal 6.3 comes with MA already installed. A neat quick test is to install 6.3, then using a mobile phone or downloading an emulator to your desktop, point at your new portal and see how display renders.

Similar Messages

  • How a mobile phone access my MIDlet

    Hi all
    I have question,
    I create a MIDlet that can communicate to a servlet and this servlet returns some values(taken from the database) to the MIDlet.Now my servlet is in the local Machine and I test the MIDlet using the WirelessToolKit.
    But In Real Life, How a mobile phone access my MIDlet?
    For that Where I Put MY MIDlet and Servlet Files...?

    Hai mukund
    The solution for the prev problem is
    if chDt is the date object u have
    Calendar calendar = Calendar.getInstance();
    calendar.setTime(chDt); // this will set ur calender with the exact date in the chDt
    int mo = calendar.get(Calendar.MONTH); //this will be one month back so add +1 to mo
    In this way u can get Calendar.YEAR, etc like anything.....
    If u get the solution for the prev question please mail to me at [email protected]
    Bye Hari

  • Portal content in java enabled mobile phone browser

    Hi Experts,
    I havwe a requirement in which the portal webdynro application is to accesed through java mobile phones , but the portal is designed for computers(desktops).....
    my query is that how to reuse the same portal app for the mobile phone and can we have wrapper for mobile so that the mobile phone uses 'light' mode of portal
    regards,
    prakash

    Hi,
    Take a look at the following link [https://cw.sdn.sap.com/cw/groups/portal-on-device].
    Regards,
    Alex

  • Accessing a file in a mobile phone

    Hi ,
    Is it possible to access and read the contents of a text file in a mobile phone using JSP. The regular file select component in JSP is not workin on the phone. when i click on the browse file button it says unable to view this file.
    This is the code of the page, i got it from the internet only. This seems to work properly if it runs on a PC, but when i try it on a mobile it is not able to select the file.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <form ENCTYPE="multipart/form-data" action="single_upload_page.jsp" method="POST">
    <input type="file" name="selection" value="" />
    <input type="submit" value="submit" />
    </form>
    </body>
    </html>
    ------ > single_upload.jsp
    <%--
    Document : show
    Created on : Nov 26, 2008, 3:25:30 PM
    Author : root
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page import="java.io.*,java.io.File, org.apache. commons. io. *" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <%
         //to get the content type information from JSP Request Header
         String contentType = request.getContentType();
         if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
              DataInputStream in = new DataInputStream(request.getInputStream());
              //we are taking the length of Content type data
              int formDataLength = request.getContentLength();
              byte dataBytes[] = new byte[formDataLength];
              int byteRead = 0;
              int totalBytesRead = 0;
              //this loop converting the uploaded file into byte code
              while (totalBytesRead < formDataLength) {
                   byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                   totalBytesRead += byteRead;
    String file = new String(dataBytes);
    out.print(file);
              //for saving the file name
              String saveFile = file.substring(file.indexOf("filename=\"") + 10);
              saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
              saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""));
              int lastIndex = contentType.lastIndexOf("=");
              String boundary = contentType.substring(lastIndex + 1,contentType.length());
              int pos;
              //extracting the index of file
              pos = file.indexOf("filename=\"");
              pos = file.indexOf("\n", pos) + 1;
              pos = file.indexOf("\n", pos) + 1;
              pos = file.indexOf("\n", pos) + 1;
              int boundaryLocation = file.indexOf(boundary, pos) - 4;
              int startPos = ((file.substring(0, pos)).getBytes()).length;
              int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
              // creating a new file with the same name and writing the content in new file
              FileOutputStream fileOut = new FileOutputStream("/root/Desktop/"+saveFile);
              fileOut.write(dataBytes, startPos, (endPos - startPos));
              fileOut.flush();
              fileOut.close();
              %><Br><table border="2"><tr><td><b>contents of the file:</b>
              <% out.println(saveFile); %></td></tr></table> <%
    %>
    </body>
    </html>

    Disclaimer: your code is unformatted and thus hard to read, so I have't read it thoroughly.
    In the future please use tags to post the code in. You can get them by pressing the CODE button in the toolbar of the message editor toolbar.
    ram.west wrote:
    Is it possible to access and read the contents of a text file in a mobile phone using JSP. The regular file select component in JSP is not workin on the phone. when i click on the browse file button it says unable to view this file.So this error message immediately pops up when you press the 'browse' button? What's the exact error message? Have you tried another mobile webbrowsers as well?
    This is the code of the page, i got it from the internet only. I highly recommend you to use the thoroughly developed, tested and maintained library Apache Commons FileUpload. Here is its homepage: [http://commons.apache.org/fileupload]. Checkout the 'User Guide' and 'Frequently Asked Questions' sections for code samples and a lot of tricks.
    This seems to work properly if it runs on a PC, but when i try it on a mobile it is not able to select the file.You need to exclude either the client side or the server side from being suspect. Answer the questions I asked before.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Creating Folder and Accessing Files from Folders in mobile phone

    Hello Friends,
    I am doing my project where I need to create folders and accessing files from those folders in java enabled mobile phones.But I do not know the required tasks for this.Any type of help is highly appreciated.
    Greeting
    Saadi

    You have to get the classname of the Items you receive from getitems.
    There you have only to look for Folder.CLASS_NAME. Example:
    ifsFol sorted by names in ascending order (names of folders and files)
    String[] sort_attributes = {"NAME"};
    //sort will be ascending
    boolean [] sort_orders = {true};
    oracle.ifs.common.SortSpecification sort = new oracle.ifs.common.SortSpecification(sort_attributes, sort_orders);
    ifsFol.setSortSpecification(sort);
    PublicObject[] contents = ifsFol.getItems();
    System.out.println("Here are the names of the items in folder: ");
    for (int i=0; i < contents.length; i++) {
    if (contents.getClassname().equals(Folder.CLASS_NAME)) {
    System.out.println(contents[i].getName());
    null

  • Mobile phone memory access

    can I access mobile phone memory from labview.

    What is the interface type to the PC (serial, USB, etc.?) Do you know communication rates, data sizes, etc? If you know this type of information, there is a good chance you can. But without knowing the communications protocol (commands, syntax, etc.) you may have a hard time communicating with the phone.
    Jason Swoboda
    Omnia Technology
    [email protected]

  • In Which type of mobile phones i can access Oracle application?

    Hi All,
    I was wondering like , in which type of mobile phones (like Windows, Blackberry etc) i can access Oracle application ? Due to some reasons sometimes i can't use/carry my laptop, so in that case i want to open/access Oracle application in my Mobile Phone.
    please advice...
    Thanks
    Skudikyal

    Hi!
    Generally it should be possible with nearly every mobile accessing to the database via command line mode.
    If you want to access to Apex you need a mobile with a browser or Apple's iPhone with an 'app'.
    Gerhard

  • Enable 'Mobile Phone' and 'Telefon at work' under ESS-SAP -Enterprise Portal (SAP-EP)

    Hi,
    I want to enable the IT0105 subtypes Communication ID i.e. 0020 and MPHN for users to be able modify this data through Portal. While I am aware of a telephone number field being available already under ESS- Address Information, would it be possible to record the users telephone at work and mobile phone at work through any standard options?
    Is there a possibility through FPM anywhere? We are looking for a non-customizing option and any possibility to avail this option through Standard or minimum customizing would be really helpful.
    Could anyone here please provide your inputs on this case.
    Warm Regards,
    Vinay

    Yes it is possible with configuration in EHP6 and later with subtype specific UIBBs. See Exciting Enhacements to ESS Personal Information Profile in Enhancement pack 6 for details. This discussion thread belongs to the SAP ERP HCM Employee Self-Service space.

  • Access addressbook on mobile phones ?

    Will Air 3 provide access to contact details from the addressbook of a mobile phone ?
    This feature would be very welcom as it is on of the specificities of this medium.
    Thank you
    Alexandre

    Adobe said we could add part of native code to our app in AIR 3... This might allow you to perform this kind of thing. Let's hope!

  • Not able to access Android mobile phone SD Card in Macbook pro

    Hi, When I connect my Android mobile phone through USB Cable ; Macbook pro(Yosemite) is not showing the SD Card in My mobile.
    Where as when I connect my Mobile to Windows(My Macbook pro is dual boot with both Yosemite & Windows 8) I am able to access the  SD Card(in Android mobile). Would appreciate help as this is affecting my Application programming effort.

    Ah, I finally solved the puzzle ; Install this application from Google ; and everything is fine
    https://www.android.com/filetransfer/#tips

  • Access/Browse pictures from your mobile phone

    Hello everyone and Good day,
    I was wondering if there is anyone who knows how to browse/access image files that is in the mobile phone and attached it or any such options that can be done when creating a MIDlet.
    That would mean that after running a MIDlet is would be similiar like creating an email with an attachment to a server database.Any ideas as such would be greatly appreciated

    You can create midlet with the images at design time and view it. please see the below small program for your reference:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.util.*;
    import java.io.*;
    public class PhotoSlider extends MIDlet implements CommandListener
    {     private Command exitCommand;
         private Display display;
         private PhotoCanvas screen;
         public PhotoSlider( )
         {     display = Display.getDisplay(this);
              exitCommand = new Command("Exit", Command.EXIT, 2);
              screen = new PhotoCanvas( );
              screen.addCommand(exitCommand);
              screen.setCommandListener(this);
         public void startApp( ) throws MIDletStateChangeException
         {     display.setCurrent(screen);
         public void pauseApp( ){}
         public void destroyApp(boolean unconditional)
         {     notifyDestroyed( );
         public void commandAction(Command c, Displayable s)
         {     if (c == exitCommand)
              {     destroyApp(false);
    class PhotoCanvas extends Canvas
    {     private Image[ ] photos;
         private String[ ] captions = {"1","2","3","4","5"};
         private int currentPhoto = 0;
         public PhotoCanvas( )
         {     try
              {     photos = new Image[5];
                   photos[0] = Image.createImage("/1.jpg");
                   photos[1] = Image.createImage("/2.jpg");
                   photos[2] = Image.createImage("/3.jpg");
                   photos[3] = Image.createImage("/4.jpg");
                   photos[4] = Image.createImage("/5.jpg");     
              catch (IOException e)
              {     System.err.println("Image Loading Failed!");
         public void keyPressed(int keyCode)
         {     int action = getGameAction(keyCode);     
              switch (action)
              {     case LEFT:
                        if(--currentPhoto < 0)
                        {     currentPhoto = photos.length -1;
                        repaint( );
                        break;
                   case RIGHT:
                        if (++currentPhoto >= photos.length)
                        {     currentPhoto = 0;
                        repaint( );
                        break;
         public void paint(Graphics g)
         {     g.setColor(255,255,255);
              g.fillRect(0,0,getWidth(),getHeight());
              g.drawImage(photos[currentPhoto],getWidth()/2,getHeight()/2,Graphics.HCENTER | Graphics.VCENTER);
              Font f = Font.getFont(Font.FACE_PROPORTIONAL,Font.STYLE_BOLD,Font.SIZE_MEDIUM);
              g.setFont(f);
              g.setColor(0,0,0);
              g.drawString(captions[currentPhoto],getWidth()/2,0,Graphics.HCENTER | Graphics.TOP);
    }hope this will help you make the concept clear....:)

  • Error when trying to sign in on mobile phone

    Dear Admin,
    I want to browse the ORACLE ADF FORUMS in my mobile phone (nokia x2-01 with UC and Opera mini Browser), the forum page opens correctly but when i try to signin it gives me error.
    ORACLE ACCESS MANAGER
    ERROR:
    System error. Please re-try your action. If you continue to get this error, please contact the administratorIts strange that when i try to do same using my PC it works......
    Any Ideas?? Can any one there resolve this issue....
    Regards,
    Santosh

    Probably because Opera is a non-supported browser on Oracle sites...

  • Can not see the contacts in E63 mobile phone

    Hi,
    I amusing E63 mobile phone. I am not been able to view the contacts in the mobile, so not been able to use the same. But when an incoming call comes in I do get the name resolution of the person calling and his mobile no which is stored in the contacts.
    I tried backing up the mobile and all the time the backup of contacts could not happened and besides Contacts rest all is backed up....
    Pls do let me know how to resolve this issue..
    Thanks in advance...

    Hey  kartik_sh
    Welcome to the forum, your contacts are on the sim card and they will need to be either copied to Contacts on your phone for easy access.
    It is not clear from your description what could be causing this issue, so I will present a couple of possibilities. The first is that the contacts that you cannot see are stored on the SIM card and not in the phone memory, to remedy this you can follow these steps to copy your contacts into the phone memory:
    Menu>Communic.>Contacts>Options>SIM contacts>SIM directory>Options>Mark/Unmark>Mark all>Options>Copy to Contacts
    If this is not the case, and if after selecting Contacts you see the options Go Online and ChatServiceBuddy, it means that the ”Ovi Contacts Chat” service is selected as the default view. This service has been discontinued and replaced by Nokia’s new Chat service powered by Yahoo. You can set your default Contacts view back to the contact information stored in your phone by following these steps:
    •Select Menu>Communic.>Contacts
    •Press the left navigation key to select the central field at the top of the screen, then press the centre of the navigation key to open the menu, and finally select Phone
    •You should now see the contacts stored in phone memory. To make this the default view, select Options>Settings>Default contact list>Phone
    If you are interested in the new Chat application, you can switch the Contacts view back to the Ovi Contacts view, select Go Online and sign in with the same user identity and password that you use to log into this forum. Your phone would then remind you that Ovi Contacts Chat is discontinued and take you through the steps to download and install the new Chat application. We would recommend that you use a WLAN connection for this.
    If the two suggestions above do not resolve your issue, we can investigate further.
    Out of interest, when you say that creating a back-up did not successfully back-up contacts, do you mean that you created the back-up with Nokia Suite and the report displayed at the end of the process indicated an error? If there was no error during the back-up process, it is likely that the back-up was successful and we still need to work out whý the information is not appearing in your phone.
    Let me know if it works 
    Kind regards
    Carl
    If this post answers your question, you can help others by clicking the green accepted solution' button.
    Please ask your questions to the main board and not to my mailbox. Thank you.

  • My nano SIM works in my Nokia mobile phone but "No SIM" when in my iPad mini

    I've been around the support loop a few times with varying levels of success, here is my story.
    Basically I expect to only occasionally require mobile data services so would like to move my nano SIM from my Nokia mobile phone to the iPad mini as and when required. I have a 500Mb data allowance on my current contract with Vodafone UK which I never use but would like to access with my iPad mini.
    The first time I tried it worked! I never tried to surf using it but it registered with Vodafone UK OK and had a good signal level. The second time “No SIM” or “SIM not installed” popup at bootup.
    Now irrespective of contracts, tariffs, data plan etc I expect the iPad mini to recognise there as being a SIM present every time and never give “No SIM” except of course when there isn’t one physically in the thing.
    Playing along to support and forum suggestions I’ve done a couple of device resets (software reinstalls) and various setting resets. But still “No SIM”.
    I’ve also spoken with Vodafone UK and am investigating whether this is in fact some restriction where they’ve restricted the technology so SIM swapping is not allowed. My Nokia E51 is not locked as have had it years.
    I just cannot get past the “No SIM” message though!

    Do have the details as to why that is?
    The single time it recognised the nano SIM and showed as being connected to Vodafone UK I tried to ring it to see what would happen, it just rang out until voicemail picked up but nothing happened on the iPad mini whatsoever.

  • How to move iMessage account to different mobile phone number

    Hello
    I am going to change mobile phone number and I would like to know how
    1) move iMessage/faceTime to this new phone number
    2) how to transfer the "history" (old messages) from my old phone number to the new one
    thx

    Hello, matteos72. 
    Thank you for visiting Apple Support Communities.
    Make sure that your new number is updated in Settings > Phone > My Number.  Once this done, follow the steps in the quoted section below.  Next, sign back into iMessage and FaceTime.  The history will not be modified as no data is deleted. 
    Unlink a phone number
    To remove a phone number from an Apple ID, sign out of FaceTime and Messages on your iPhone:
    Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
    Settings > FaceTime. Tap your Apple ID, then tap Sign Out.
    This should remove your phone number from other devices using the same Apple ID with FaceTime and Messages. If the phone number is still available on other devices after you sign out of FaceTime and iMessage on the iPhone, you may need to sign out of iMessage and FaceTime on all your devices, then sign in to FaceTime and Messages again on devices you want to use.
    Note: If you no longer have access to the iPhone that is using the number you want to remove, reset your Apple ID password.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Cheers,
    Jason H.

Maybe you are looking for