Need Help on Mobile Portal Development

Hello everyone!
I am trying to develop a portal (client) for web services on mobile devices that supports CLDC and MIDP, like the Yahoo! Go.
I was just wondering what technologies I need to learn and tools I have to use to develop the portal application. I have been developing game applications using J2ME for quite sometime now, and this portal application is new to me that is why I am asking for 'guidance' in what steps I have to take.
Any help is greatly appreciated. :)

Hi,
Pls chk this links;might be useful.
"Getting Started with Mobile Client Applications":
http://help.sap.com/saphelp_crm50/helpdata/en/50/45c33a1dfe105ae10000000a11402f/frameset.htm
http://help.sap.com/saphelp_crm50/helpdata/en/0e/c90d3888a6b510e10000009b38f8cf/frameset.htm
Regards,
CSM Reddy

Similar Messages

  • Need help on mobile crm development

    Dear all,
    I am new to Mobile CRM.Where can I get some tutorials or cookbook  for  developing Mobile applications for CRM .Please dont give the sap help link as I already  have it.
    It would be great if somebody explains me the arichetecture of mobile app development for CRM.
    Your support is highly appreciated.
    Thanks and regards,
    Rajesh

    Hi,
    Pls chk this links;might be useful.
    "Getting Started with Mobile Client Applications":
    http://help.sap.com/saphelp_crm50/helpdata/en/50/45c33a1dfe105ae10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/0e/c90d3888a6b510e10000009b38f8cf/frameset.htm
    Regards,
    CSM Reddy

  • Need help on mobile gaming development basic

    my game canvas is like this
    public a1Canvas(Display display){
    super(true);
    this.display = display;
    frameDelay = 33;
    gameOverState = false;
    public void start(){
    display.setCurrent(this);
    try {
    //get the images up
    } catch (IOException ex) {
    System.err.println("Failed to load images");
    Thread t = new Thread(this);
    t.start();
    public void run() {
    while (!gameOverState){
    update();
    draw(getGraphics());
    try{
    Thread.sleep(frameDelay);
    }catch(InterruptedException ie){}
    gotoMainMenu(getGraphics());
    private void draw(Graphics graphics) {
    //clear background to black
    //draw the background
    private void update() {
    // Process user input
    // Check for game over condition
    if ( collision detection )
    gameOverState = true;
    }//if
    }//for
    private void gotoMainMenu(Graphics graphics) {
    //clear screen to black colour
    //draw the main menu
    flushGraphics();
    //if i press the fire button the game will start again
    int keyState = getKeyStates();
    if ( (keyState & FIRE_PRESSED) != 0 ){
    System.out.println("game start");
    gameOverState = false;
    The problem i am facing is :
    the FIRE button is not functioning, i put a system.out.println and it didnt print.
    i am unsure whether i put the key input listener at the correct function
    this button is supposed to start the game again.
    What i want to do :
    i want to display the main menu when i launched the game
    when game is over, it will display back to the main menu again
    when i press the fire button it will play the game again.
    i hope someone can help me on this :)

    kdoom wrote:
    my game canvas is like thisWhen posting code, use the CODE tag. Just highlight all your code (pasted in from your editor to preserve formatting) and press the CODE button. Otherwise nobody will read it.
    i hope someone can help me on this :)I can, if you use the CODE tag.

  • Need help on mobile gaming development basic  {working the game main menu}

    package Assignment1;
    import java.io.IOException;
    import java.util.Random;
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Display;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    import javax.microedition.lcdui.game.GameCanvas;
    import javax.microedition.lcdui.game.Sprite;
    public class a1Canvas extends GameCanvas implements Runnable{
        private Display display;
        private Sprite ufoSprite;
        private Image backgroundImage;
        private long frameDelay;
        private int ufoX;
        private int ufoY;
        private int ufoXDir;
        private int ufoXSpeed;
        private int ufoYSpeed;
        private Random rand;
        private Sprite[] roidSprite = new Sprite[3];
        private boolean gameOverState;
        //constructor
        public a1Canvas(Display display){
            super(true);
            this.display = display;
            frameDelay = 33;
            gameOverState = false;
        public void start(){
            display.setCurrent(this);
            //start the animation thread
             rand = new Random();     // Initialize the random number generator
             ufoXSpeed = ufoYSpeed = 0; // Initialize the UFO and roids sprites
            try {
                backgroundImage = Image.createImage("/background.jpg");
                ufoSprite = new Sprite(Image.createImage("/ufo.png"));
                //initialise sprite at middle of screen
                ufoSprite.setRefPixelPosition(25,25);
                ufoX = (int)(0.5 * (getWidth()- ufoSprite.getWidth()));
                ufoY = (int)(0.5 * (getHeight()- ufoSprite.getHeight()));
                ufoSprite.setPosition(ufoX, ufoY);
                Image img = Image.createImage("/Roid.png");
                roidSprite[0] = new Sprite(img, 42, 35);   //create 1st frame-animated asteroid sprite
                roidSprite[1] = new Sprite(img, 42, 35);
                roidSprite[2] = new Sprite(img, 42, 35);
            } catch (IOException ex) {
                System.err.println("Failed to load images");
            Thread t = new Thread(this);
            t.start();
        public void run() {
            while (!gameOverState){
                update();
                draw(getGraphics());
                try{
                    Thread.sleep(frameDelay);
                }catch(InterruptedException ie){}
            gotoMainMenu(getGraphics());
        private void draw(Graphics graphics) {
            //clear background to black
            graphics.setColor(0, 0, 0);
            graphics.fillRect(0, 0, getWidth(), getHeight());
            //draw the background
            graphics.drawImage(backgroundImage, getWidth()/2, getHeight()/2, Graphics.HCENTER | Graphics.VCENTER);
            ufoSprite.paint(graphics);
            for(int i=0;i<3;i++){
                roidSprite.paint(graphics);
    flushGraphics(); //flush graphics from offscreen to on screen
    private void update() {
    // Process user input to control the UFO speed
    int keyState = getKeyStates();
    if ( (keyState & LEFT_PRESSED) != 0 )
    ufoXSpeed--;
    else if ( (keyState & RIGHT_PRESSED) != 0 )
    ufoXSpeed++;
    if ( (keyState & UP_PRESSED) != 0 )
    ufoYSpeed--;
    else if ( (keyState & DOWN_PRESSED) != 0 )
    ufoYSpeed++;
    ufoXSpeed = Math.min(Math.max(ufoXSpeed, -8), 8);
    ufoYSpeed = Math.min(Math.max(ufoYSpeed, -8), 8);
    ufoSprite.move(ufoXSpeed, ufoYSpeed); // Move the UFO sprite
    checkBounds(ufoSprite); // Wrap UFO sprite around the screen
    // Update the roid sprites
    for (int i = 0; i < 3; i++) {
    roidSprite[i].move(i + 1, 1 - i); // Move the roid sprites
    checkBounds(roidSprite[i]); // Wrap asteroid sprite around the screen
    // Increment the frames of the roid sprites; 1st and 3rd asteroids spin in opposite direction as 2nd
    if (i == 1)
              roidSprite[i].prevFrame();
    else
              roidSprite[i].nextFrame();
    // Check for a collision between the UFO and roids
    if ( ufoSprite.collidesWith(roidSprite[i], true) ) {
    System.out.println("Game Over !");
    gameOverState = true;
    }//if
    }//for
    public void stop(){
    gameOverState = true;
    private void checkBounds(Sprite sprite) {
    // Wrap the sprite around the screen if necessary
    if (sprite.getX() < -sprite.getWidth())
         sprite.setPosition(getWidth(), sprite.getY());
    else if (sprite.getX() > getWidth())
         sprite.setPosition(-sprite.getWidth(), sprite.getY());
    if (sprite.getY() < -sprite.getHeight())
         sprite.setPosition(sprite.getX(), getHeight());
    else if (sprite.getY() > getHeight())
         sprite.setPosition(sprite.getX(), -sprite.getHeight());
    private void gotoMainMenu(Graphics graphics) {
    graphics.setColor(0, 0, 0);
    graphics.fillRect(0, 0, getWidth(), getHeight());
    graphics.setColor(255, 0, 0);
    graphics.drawRect(0, 0, getWidth()-1, getHeight()-1);
    graphics.setColor(255, 255, 255);
    graphics.drawString("GAME NAME", getWidth()/2 -50, 30, Graphics.LEFT | Graphics.TOP);
    graphics.setColor(255, 0, 0);
    graphics.drawString("Main Menu", getWidth()/2 -50, 50, Graphics.LEFT | Graphics.TOP);
    graphics.setColor(0, 255, 0);
    graphics.drawString("Start Game", getWidth()/2 , 80, Graphics.LEFT | Graphics.TOP);
    graphics.drawString("Instructions", getWidth()/2 , 110, Graphics.LEFT | Graphics.TOP);
    flushGraphics();
    int keyState = getKeyStates();
    if ( (keyState & FIRE_PRESSED) != 0 ){
    System.out.println("game start");
    gameOverState = false;
    The problem i am facing is :
    the FIRE button is not functioning, i put a system.out.println and it didnt print.
    i am unsure whether i put the key input listener at the correct function
    this button is supposed to start the game again.
    What i want to do :
    i want to display the main menu when i launched the game
    when game is over, it will display back to the main menu again
    when i press the fire button it will play the game again.
    i hope someone can help me on this :)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    kdoom wrote:
    The problem i am facing is :
    the FIRE button is not functioning, i put a system.out.println and it didnt print.
    i am unsure whether i put the key input listener at the correct function
    this button is supposed to start the game again.
    What i want to do :
    i want to display the main menu when i launched the game
    when game is over, it will display back to the main menu again
    when i press the fire button it will play the game again.
    i hope someone can help me on this :)You didn't have to create a whole new post just for the formatted code, silly. You could have just replied in the old thread. Anyway:
    Step through the program and think about what each line is doing. Most importantly:
        public void run() {
            while (!gameOverState){
                update();
                draw(getGraphics());
                try{
                    Thread.sleep(frameDelay);
                }catch(InterruptedException ie){}
            gotoMainMenu(getGraphics());
        }This says that while the game is being played, update( ), then draw( ). When the game is over, call gotoMainMenu( ).
       private void gotoMainMenu(Graphics graphics) {
            //do a bunch of graphics stuff
            int keyState = getKeyStates();
            if ( (keyState & FIRE_PRESSED) != 0 ){
                System.out.println("game start");
                gameOverState = false;
        }This says to do a bunch of graphics stuff, and then to check the key states. If fire is being pressed, print something out and set gameOverState to false. This check only happens once. When the state is being checked, most likely the user will not be pressing any keys, so the code is done.
    Also, simply setting the gameOverState variable to false outside of the loop you use it in won't do anything. For example:
    boolean doLoop = true;
    int count = 0;
    while(doLoop){
       count++;
       if(count > 10){
          doLoop = false;
    doLoop = true;Would you expect that second doLoop = true to start the while loop over?

  • Need HELP to learn OAF development

    Hi,
    I am an experienced oracle financials developer. Most of my experience has been on using Developer 6i tools to develop front end and reports. Now I am planning to learn OAF framework to develop or to make customizations to the modules like iprocurement,iStore etc.
    I would like to know what is the best way to start the learning process?
    Is it possible to learn/practice the OAF framework(from oracle applications perspective) on my personal machine( it has oracle 10g personal edition installed), with out having access to oracle applications instance?
    I would like to know if there are any good books/tutorials on OAF usage in Oracle applications?
    Please let me know.
    -Thanks in Advance,
    Satya

    I would like to know what level of oracle application access do we need to practice the OAF development ?
    You need full access, including sysadmin responsibility.Do we need to have access to instance in terms of unix servers or just access to the applications is good enough?
    It would be good to have Unix access , for deploying pages , classes etc.Do we need to create any new responisbilities to practice OAF concepts?
    Not required, but a better option.What resposibilities or what level of access do we need to have on oracle application instance to practice OAF concepts?
    It is better to have a unrestricted access.Thanks
    Tapash

  • Need help on the Portal Logged on Users Custom tool

    Hello Everyone
    I am trying to build a tool by following the below blog written by Micheal Nicholls,
    Building a tool to monitor who is logged on to an SAP NetWeaver Portal...
    can some body suggest me on how to start building this.
    I am assuming I need to create two portal components and create an iview with the second component. so that it will fetch the users from the file wher the first component has placed on the temp directory. is it correct.
    Do I just need to deploy the first component or do anything specific with that?
    could some body pls suggest me regarding this. Appreciate your valuable answer.
    Thanks
    RIo

    Yes you need to make two components and deploy them to your portal. After that you need to find the file SessionManager.jsp at the o/s level of the portal and replace the call of the rtc_script with a call to your component. Restart the portal server and see what happens!
    Please note that this is not supported. The idea was to show how you might want to proceed. It is not a fully functioning solution.

  • Need help to build Portal Insert URL in OAM..

    Hi All,
    I have a requirement to customize the user Manager screen in such a way that i need to get only the search criteria tab(but not any of the tabs or links) and the search results.
    To achieve this i have builded below Portal URL.
    http://training.orademo.com/identity/oblix/apps/userservcenter/bin/userservcenter.cgi?program=search&comp=true
    By using this above URL i am able to hide all the tabs in the browser but i need to have that search criteria to be displayed in the screen.
    Can any one please suggest me the solution to achieve this.
    Its bit urgent requirement.
    Thanks in advance.
    Siva Pokuri.

    Hi Colin,
    Thanks for your quick response.
    URL that i posted will search the users in OAM. But my requirement is like i have to select the attribute and search type and search value from that page(in that Page i should not have UserManager, GroupManager, Org Manager, Identity SYstem Console tab and My Profile , reports ...etc links should not be appear) i sould be able to select the attribute that i would like to search only. so the search functionality should be there.
    Based on this req i have to build the URL.
    Please help me.
    Thanks & Regards,
    Siva Pokuri.

  • Need help in recovering portal admin password - URGENT

    Hi,
    I am unable to start the ALUI LDAP Service and couldn't login to the portal too. Below is the error that I am getting when trying to start the ALUI LDAP Service and I m looking for help to reset the administrator password.
    INFO | jvm 1 | 2013/01/16 20:33:11 | Initiating LDAP server start sequence...
    INFO | jvm 1 | 2013/01/16 20:33:11 | Starting server on port : 3389
    INFO | jvm 1 | 2013/01/16 20:33:11 | Initializing LDAP/X.500 BER protocol codec...
    INFO | jvm 1 | 2013/01/16 20:33:11 | Detected 98 active CPU cores.
    INFO | jvm 1 | 2013/01/16 20:33:11 | ApacheOpenLogFactory successfully loaded.
    INFO | jvm 1 | 2013/01/16 20:33:12 | ApacheOpenLogFactory successfully loaded.
    INFO | jvm 1 | 2013/01/16 20:33:12 | Could not start LDAP listener on port 3389:javax.naming.ConfigurationException: Unable to instantiate authtication provider Java class "com.bea.alui.directory.backend.auth.plumtree.PlumtreeAuthenticator". Please check your configuration and ensure that jvm has permission to instantiate this class.
    INFO | jvm 1 | 2013/01/16 20:33:12 | WrapperStartStopApp: start main method completed
    INFO | jvm 1 | 2013/01/16 20:33:12 | Wrapper Manager: ShutdownHook started
    INFO | jvm 1 | 2013/01/16 20:33:12 | WrapperManager.stop(0) called by thread: Wrapper-Shutdown-Hook
    INFO | jvm 1 | 2013/01/16 20:33:12 | Send a packet STOP : 0
    DEBUG | wrapperp | 2013/01/16 20:33:12 | read a packet STOP : 0
    DEBUG | wrapper | 2013/01/16 20:33:12 | JVM requested a shutdown. (0)
    DEBUG | wrapper | 2013/01/16 20:33:12 | wrapperStopProcess(0) called.
    DEBUG | wrapper | 2013/01/16 20:33:12 | Sending stop signal to JVM
    DEBUG | wrapperp | 2013/01/16 20:33:12 | send a packet STOP : NULL
    INFO | jvm 1 | 2013/01/16 20:33:12 | Received a packet STOP :
    INFO | jvm 1 | 2013/01/16 20:33:13 | Thread, Wrapper-Shutdown-Hook, handling the shutdown process.
    INFO | jvm 1 | 2013/01/16 20:33:13 | calling listener.stop()
    INFO | jvm 1 | 2013/01/16 20:33:13 | WrapperStartStopApp: stop(0)
    INFO | jvm 1 | 2013/01/16 20:33:13 | WrapperStartStopApp: invoking stop main method
    INFO | jvm 1 | 2013/01/16 20:33:13 | Initiating LDAP server stop sequence...
    DEBUG | wrapper | 2013/01/16 20:33:09 | JVM signalled a start pending with waitHint of 5000 millis.
    DEBUG | wrapperp | 2013/01/16 20:33:09 | read a packet STARTED :
    DEBUG | wrapper | 2013/01/16 20:33:09 | JVM signalled that it was started.
    DEBUG | wrapperp | 2013/01/16 20:33:10 | send a packet PING : ping
    INFO | jvm 1 | 2013/01/16 20:33:11 | Received a packet PING : ping
    INFO | jvm 1 | 2013/01/16 20:33:11 | Send a packet PING : ok
    DEBUG | wrapperp | 2013/01/16 20:33:11 | read a packet PING : ok
    DEBUG | wrapper | 2013/01/16 20:33:11 | Got ping response from JVM
    INFO | jvm 1 | 2013/01/16 20:33:11 | OpenLog: Registered application name: aluidirectory.osha-trn-wcims-01.alui (local machine only)
    INFO | jvm 1 | 2013/01/16 20:33:11 | Initiating LDAP server start sequence...
    INFO | jvm 1 | 2013/01/16 20:33:11 | Starting server on port : 3389
    INFO | jvm 1 | 2013/01/16 20:33:11 | Initializing LDAP/X.500 BER protocol codec...
    INFO | jvm 1 | 2013/01/16 20:33:11 | Detected 98 active CPU cores.
    INFO | jvm 1 | 2013/01/16 20:33:11 | ApacheOpenLogFactory successfully loaded.
    INFO | jvm 1 | 2013/01/16 20:33:12 | ApacheOpenLogFactory successfully loaded.
    INFO | jvm 1 | 2013/01/16 20:33:12 | Could not start LDAP listener on port 3389:javax.naming.ConfigurationException: Unable to instantiate authtication provider Java class "com.bea.alui.directory.backend.auth.plumtree.PlumtreeAuthenticator". Please check your configuration and ensure that jvm has permission to instantiate this class.
    INFO | jvm 1 | 2013/01/16 20:33:12 | WrapperStartStopApp: start main method completed
    INFO | jvm 1 | 2013/01/16 20:33:12 | Wrapper Manager: ShutdownHook started
    INFO | jvm 1 | 2013/01/16 20:33:12 | WrapperManager.stop(0) called by thread: Wrapper-Shutdown-Hook
    INFO | jvm 1 | 2013/01/16 20:33:12 | Send a packet STOP : 0
    DEBUG | wrapperp | 2013/01/16 20:33:12 | read a packet STOP : 0
    DEBUG | wrapper | 2013/01/16 20:33:12 | JVM requested a shutdown. (0)
    DEBUG | wrapper | 2013/01/16 20:33:12 | wrapperStopProcess(0) called.
    DEBUG | wrapper | 2013/01/16 20:33:12 | Sending stop signal to JVM
    DEBUG | wrapperp | 2013/01/16 20:33:12 | send a packet STOP : NULL
    INFO | jvm 1 | 2013/01/16 20:33:12 | Received a packet STOP :
    INFO | jvm 1 | 2013/01/16 20:33:13 | Thread, Wrapper-Shutdown-Hook, handling the shutdown process.
    INFO | jvm 1 | 2013/01/16 20:33:13 | calling listener.stop()
    INFO | jvm 1 | 2013/01/16 20:33:13 | WrapperStartStopApp: stop(0)
    INFO | jvm 1 | 2013/01/16 20:33:13 | WrapperStartStopApp: invoking stop main method
    INFO | jvm 1 | 2013/01/16 20:33:13 | Initiating LDAP server stop sequence...
    INFO | jvm 1 | 2013/01/16 20:33:13 | LDAP server stop sequence failed:java.net.ConnectException: Connection refused
    ERROR | wrapper | 2013/01/16 20:33:46 | Shutdown failed: Timed out waiting for signal from JVM.
    ERROR | wrapper | 2013/01/16 20:33:46 | JVM did not exit on request, terminated
    INFO | wrapper | 2013/01/16 20:33:47 | JVM exited on its own while waiting to kill the application.
    DEBUG | wrapper | 2013/01/16 20:33:47 | Signal trapped. Details:
    DEBUG | wrapper | 2013/01/16 20:33:47 | signal number=18 (SIGCHLD), source="unknown"
    DEBUG | wrapper | 2013/01/16 20:33:47 | Received SIGCHLD, checking JVM process status.
    STATUS | wrapper | 2013/01/16 20:33:47 | JVM exited in response to signal SIGKILL (9).
    DEBUG | wrapper | 2013/01/16 20:33:47 | JVM process exited with a code of 1, setting the wrapper exit code to 1.
    DEBUG | wrapperp | 2013/01/16 20:33:47 | server listening on port 32010.
    STATUS | wrapper | 2013/01/16 20:33:47 | <-- Wrapper Stopped
    Edited by: 982366 on Jan 16, 2013 9:21 PM

    Dear Satish,
    My email adds is : [email protected]
    Do u have any MSN or Yahoo Messenger, so you could guide me in real-time.
    I'm in Indonesia and my internet connection was extremly slow.
    I need to wait for 12 Hrs just to donwload the EXE. zip. And another 1 hours with failure installment process.
    I've told in the forum about my progress and still having difficulty to connect to the SQLPLUS in path.
    My aim is to get install iSQLPlus.
    I'm not urging you to assist me, just when you feel[b] free and happy, you can mail me back or chat online with me by providing me you messenger address.
    Thank you very much in advance for your geneoursity bow
    Warmest rgds,
    Harry.-

  • Need help on how forms developer is used

    to everyone:
    im actually new at forms developer 2000,at really wondering how to use it though i have a background in SQL.If you have any data that you can share to me explaining the whole environment of Developer 200 please send it to me. Any help is greatly appreciated.
    Thank you...
    Cyrus

    This link will help: http://technet.oracle.com/docs/products/forms/doc_index.htm
    You need to register with technet to get access.

  • Need help making Mobile Site

    Hey guys, I am completely new to this whole mobile web idea
    and I'm not sure where to start. I have a normal html site that has
    pages with all the restaurants in our city. I want to make a simple
    site for mobile phones. Is there a way to put an index file with a
    different extension that the phones would pick up. For example:
    when searching on a computer browser, it would go to say index.html
    and when searching on a phone it would go to say index.xhtml or
    whatever the ending needs to be. Thanks for any help!
    Jeremy

    "dayencom" <[email protected]> wrote in
    message
    news:et4lud$1ij$[email protected]..
    > Hey guys, I am completely new to this whole mobile web
    idea and I'm not
    > sure
    > where to start. I have a normal html site that has pages
    with all the
    > restaurants in our city. I want to make a simple site
    for mobile phones.
    > Is
    > there a way to put an index file with a different
    extension that the
    > phones
    > would pick up. For example: when searching on a computer
    browser, it would
    > go
    > to say index.html and when searching on a phone it would
    go to say
    > index.xhtml
    > or whatever the ending needs to be. Thanks for any help!
    you could restyle the site with a CSS file for Mobiles in
    addition to your
    regular CSS file. The key issue there is whether or not the
    Mobile actually
    identifies itself as a Mobile device. Some devices will ID
    themselves as,
    say, a Cingular 8525, but depending on the web browser the
    person is running
    on the device, it may just ID itself as a regular web surfer.
    If your content is database driven, you could always setup a
    subdomain of
    your site (like mobile.domain.com) and duplicate the files of
    the main site
    and just have the regular CSS file for that subdomain just do
    the styling
    you want for Mobiles. You could also just give a limited set
    of content
    here, too, if you don't have to duplicate the whole site.

  • Need help Staffing a Portal Project

    Can anyone tell me how many people are needed to staff a sun Portal implementation project. We are estimating 2 fulltime developers for a 6 month duration.
    The client wants the follwing features: Personalization, Online forums/collaboration, Portlets and custom navigation.
    Do we need more that 2 developers. Can anyone tell me anything about the Sun Portal server. Is it configurable like BEA , Vignette and websphere. I do not see too many out of the box features listed for the Sun Portal server.
    What is the level of difficulty? Does Sun Portal server just provide a bunch of API's or does it have configurable out of the box solutions.
    Thanks

    It really depends on the "right people" and their experience...
    Based on your project description it could take two-four weeks
    for two people (UI Template Designer and Portal Architect)
    who are Sun ONE portal experts or up to 6 months for a
    developer team with no KnowHow in portal applications
    and integration solutions...
    SunONE portal is in many ways simpler than some other
    portals, but there are less free "out the box" extensions
    available. However some SunONE partners and integrators
    are offering free "start up packages" with most wanted
    portal extensions like Forums, Chats, FileManager, ProductCatalog or Shopping Cart...
    PS: If you are interested to learn more, you can drop me a mail.
    Cheers,
    Alex :-)

  • I need help signing up for developer

    I'm making a iOS developer account. I am currently on the page where it says "Tell us about yourself" If all im going to do is make apps from my own iMac from my house. Which boxes do i need to tick out of the ones displayed in the picture. I don't have a company. Just making apps at home, some free some paid, and uploading them to the app store. Can someone please help as i am leaving out of town tomorrow and i really need to sign up before i leave.

    Well actually, if im going to Pakistan (slow **** internet) from a 11 hour flight, i prefer not to get there and worry about making this account. I prefer to make it before i leave. Attend the 5 stage wedding i have to go to, and then come back and start using it. In pakistan you have to worry more about not getting shot then making a dev account.

  • I need help with iAD/App development!

    So I released an app, and it went on sale yesterday on the App Store (free app: if you want it, the developer name is Abdulrahman Ahmad, and the game name is Space Defense), but I'm having some problems. When I was testing the app (on an iPhone, and on the xCode Simulator), the ads were working, and I was getting "You're iAD is configured correctly (or whatever the test ads say)" but now that the app has finally released, no ads are appearing (but iTunes Connect says that the ads are live?). Also, I released 2 different versions of the app (2 downloads, 1 was optimized for 5 inch screen, one for 3.5 in (just figured out how to make it one app, that'll be coming out in the update), and when I was looking at my iTunes Connect iAD portal, only 1 app was showing up to have adds (the 3.5 inch one doesn't have ads for some reason?):
    SO! Summery if I confused you:
    iAD was working in the testing phase of the app, but not showing up now(even though iTunes Connect says ads are live)?
    And 1 of my apps is not showing up in my iTunes Connect iAD terminal...
    Any and all help appreciated!
    Thanks in advance!

    RE: Nevermind, i guess it takes a day or so for ads to finally start showing, and i guess i forgot to check off iad compatibility with the second app!

  • Need help or advise for developing consolidated Wokflows

    I have developed a SharePoint custom list and I need to write a consolidated SharePoint designer workflow for the same.
    The workflow parameters are, if any item are modified and/or new item created there should be an email
    triggered. The tricky part is it should be the consolidated email (like a report to say how many list of items have been modified/added what kinds of information have been updated on the EOD).
    All the changes that have been done to the existing custom list of items need to be updated in one email and send the consolidation information to the stake holders.
    Is it possible? If yes may I know how it works if anybody would have developed the similar kind of workflow could you please provide me some ideas & suggestions or may
    I know what are the alternatives for this requirement.

    Yes Alert email will fit I agree on that
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • Need help regarding Mobile Direct Store Delivery

    Hi all,
    What is the next step to be proceeded for the MDSD solutions
    as we have gone through the following steps:
    1) Configured DSD backend, DSD connector and MI server settings.
    2) Established the connection between DSD backend and Connector
    & DSD connector and MI server.
    3) Uploaded Master Data in the backend and also to connector.
    4) Tested the scenarios in DSD without MI components.
    5) Replicated the data to the MI server.
    I would be grateful to u for ur replies...
    Thanks in advance...

    Hello Everyone,
                            I am  working with Shori on the DSD Project. Can anyone tell us what are the steps for doing we need to do for downloading the Tour data to the Mobile client ???
    Do we need to do aything in the DSD Admin concole???? We have replicated all the "Sync BO ID"  in MEREP_PD transaction in the middleware.
    Thanks for your help in advance.
    Thanks,
    Greetson

Maybe you are looking for

  • Workflow  for file export

    I am working in Final Cut Pro 4.5 on a DP500 Mac w/MacOS 10.3.9 Panther. I am trying to minimize the time required to get a file out of FCP to a DVD. Since Quicktime is used to get the file out of FCP before anything else is done I'm posting here ins

  • Photoshop Elements 10 won't start

    I wanted to add some new photos to my Elements 10 catalogue earlier and get a couple of error messages. The first is that "Windows requires a reboot to return the system to it's original state". However, rebooting does not seem to make any changes. I

  • Running file in the same package problem

    I have 2 java file packed in the same package: DBConnection.classpackage main; import java.sql.*; public class DBConnection { }t1.class package main; import main.DBConnection; import java.util.ArrayList; import java.util.regex.Pattern; import java.ut

  • Keeping email from expired account visible

    Recently we eliminated a domain that we have had since 1997.  We don't think it's a good idea to disable the email accounts associated with the domain in Apple Mail, because then thousands of past emails disappear from our Apple Mail mailboxes.  Yet

  • Whole clips not tranfering from log and transfer into FCP studio 2

    720p 24p clips from P2 get cut short when transfered from log and transfer. I can play the whole clips in the log and transfer window to verify they are there but once they are brought into my project they play about half way through, then the sound