Copied component not navigating properly

Experts,
I have successfully copied a search component and have done the proper configuration to navigate to it from the navigation bar. The problem is, that all of the navigation within the copied search component itself is not working.
Have I missed something?
Here is what I've done:
1. copied BSP Application in SE80
2. modified .xml to reflect new z-component
3. activated all objects that were created
4. created entry in Work Area Component Repository with inbound plug specifying the search
5. created entries in Navigation Bar Profile to navigate to copied search component
Thanks,
AYeung

solved.
Needed to add component to Work Area Component Repository and define inbound/outbound plugs.

Similar Messages

  • JSF - UICommand component not rendering properly

    2:12 PM 7/11/2007
    by Nirav Assar
    Overview
    It was discovered that in certain situations a UICommand component does not bind properly to its associated action method in the managed bean. The symptoms of this situation occur when you have a page with an action, and you click the action and nothing occurs. The page seems like it submits, but no code inside the action method of the managed bean gets executed and no errors are generated in the console!
    Problem
    The problem arises when you have a managed bean in request scope and you have a UICommand, either a commandLink or commandButton, associated to the bean. In addition this UICommand component has a rendered attribute tag (boolean value) that uses a managed bean method to tell it whether is renders or not. Even if the component gets rendered to the screen, the component does not get binded to the action method in the request scoped bean. This is a problem with JSF and may be due to the fact that the component gets rendered, but since the bean is not created until a request is submitted, the component never gets binded to an action. Therefore, nothing in the action method ever gets executed.
    Analysis
    Thus is seems like if you want to dynamically render a submit type component, such as a button or a link, you cannot effectivley do that with a bean in request scope. You'll have to place it session scope, which will work fine. Another option is to render the buttons all the time, but based on some scenario, using the "disabled" attribute to prevent a user from using the action. The "disable" attribute can access a boolean method in the managed bean.
    You could also use Javascript to hide the already rendered button on certain circumstance. However this would require javascript knowing the state of the domain objects/and or managed bean state.
    References:
    http://forum.java.sun.com/thread.jspa?threadID=5127437&messageID=9461810

    RamondDeCampo hit the nail on the head. If the bean used for the rendered attribute is request scope and the value differs between requests, you're going to see this type of behavior.
    Search the forums, there have been many similar reports as well as suggested solutions.

  • Using Content / Structure Copy Breadcrumbs not displaying properly

    Hi:
    MOSS 2007 SP2.  Have some users who created some content on a test site and wanted to move it to a prodution site (same collection) and it appeared that everything is fine, only the breadcrumbs on the content pages copied over do not show properly or not at all.
    Is there a way to refresh the breadcrumbs on content pages that have been copied to reflect the new URL?
    Thank you
    Chuck

    Hi Chuk,
    I am facing the same issue.. :(
    Are you able to fix this issue.
    Please post the solution if able to fix it!!
    Thanks in advance!!!
    Naresh

  • Copy button not working properly in service contract - crmd_order tcode

    Hi experts,
    I want to create a duplicate row in contract through Duplicate Button Supplied by SAP. As
    I understand the function of the duplicate row button is to copy the same set of information in next row with auto incremental or manual. As far as number incremental is concern that is happening based on
    customization on transaction type line item incremental sequence .
    This is an upgrade project before upgradation it was working fine, you can check the same in old CRM 4.0. If you see in the Object Tab, condition tab or any other tab, no data is duplicated from parent line item. This works very well in CRM 4.0. Actually after discussing with the client i have come to know that , they also had the same issue before and SAP gave two Notes : 739462 and 740103 to resolve the issue. But now this feature is only availabe in the WEB UI in CRM 2007, and as i am upgrading to CRM 2007 this feature is not available, but my client want this feature.
    I went through the SAP note , they have given some corrective instructions but it is valid till BBPCRM 500 version of the software component and mine is BBPCRM 600 . My query is, will it work if i follow the same corrective measures in the Note for my system ie. by inserting few blocks of code given in the SAP NOTE.
    please kindly help me out,
    Thank you,
    Regards,
    Arun.

    Hi,
    I think you problem is in u201CBilling tabu201D which it is not showing any details on particularly billing tab. Right
    Ok, as per you wording Services order having billing tab with details but Service contract does not.
    If am I right, you see the below solutionu2026.
    First go to T-code: CRMC_PCUITOOLS
    Put you
    Application : CRMD_BUS2000116
    View (blview) : ZXXXXX
    Then press F8 for execute
    You will see the view of particularly Leading Transaction Category and go to billing tab
    See below Tab Page Group (SRV_ODP1)
    Second go to T-code: CRMC_BLUEPRINT_C
    Follow this : Application Element -> Tab Page Group -> Tab Page Group Structure
    Put it (SRV_ODP1) and go to billing (double click on them)
    You will see following details
    Tab Page Group       SRV_ODP1
    View                      ZXXX
    Sequence                  23
    Event                     S1O_HD_PAYMENT_BILL
    Text                      Billing
    View Switch Gro
    Multi-Group               S1O_HD_PAYMENT_BILL
    Inactive          Flag is Not Set
    Follow the same for Service contract. You will see the Multi-Group missing
    Put it same on that (S1O_HD_PAYMENT_BILL)
    I think this issue will solveu2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026
    On..............................................................................

  • Custom barcode component not working properly

    package jpicedt.graphic.view;
    import jpicedt.graphic.model.*; // all elements + drawing
    import jpicedt.graphic.PECanvas;
    import jpicedt.graphic.PicPoint;
    import jpicedt.graphic.PicVector;
    import jpicedt.graphic.PEToolKit;
    import jpicedt.graphic.event.PEMouseEvent;
    import jpicedt.graphic.event.DrawingEvent;
    import jpicedt.graphic.jbarcodebean.*;
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.awt.image.BufferedImage;
    public class BarcodeView extends AbstractView {
         private PicPoint ptUL = new PicPoint(); // buffer
         private PicPoint ptLR = new PicPoint(); // buffer
    private Barcode barcode = null;
    protected TextLayout textLayout;
    protected AffineTransform tl2ModelTr=new AffineTransform();
         * construct a new View for the given PicGroup
         public BarcodeView(Element e){
              super(e);
              changedUpdate(null);
         * Give notification from the model that a change occured for an element this view is responsible
         * for rendering. This implementation update the view's bounds from the element's bounding box,
         * delegating highlighter's bounds to the current Highlighter delegate..
         public void changedUpdate(DrawingEvent.EventType eventType){
              Rectangle2D oldClip = bounds;
              // update bounds
              bounds = element.getBoundingBox(null); // => null if branchElement is empty !
              if (highlighter!=null) {
                   double s = 1.0;
                   PECanvas canvas = getContainer();
                   if (canvas != null) s=canvas.getScaleFactor();
                   highlighter.changedUpdate(eventType,s);
                   if (bounds!=null) bounds.add(highlighter.getBounds());
              // if event == ADD/REMOVE/REPLACE child, don't bother, just repaint it all :
              if (eventType==null || eventType != DrawingEvent.EventType.GEOMETRY_CHANGE) repaint(null);
              else {
                   if (oldClip!=null) {
                        if (bounds!=null) oldClip.add(bounds);
                        repaint(oldClip);
                   else {
                        if (bounds!=null) repaint(bounds);
                        // else branchElement was empty, and is still empty : do nothing
         * Render the View for the graphic element to the given graphic context. This called "paint"
         * on each child's view if its bounds rectangle intersects the clip.
         * @param allocation the current graphic clip
         public void paint(Graphics2D g, Rectangle2D a){
              if (!a.intersects(getBounds())) return;
              Element be = (Element)element;
    Barcode bar=(Barcode)be;
    //bar.getBarcode()
    //new JBarcodeBean(bar.getBarcode(), new Code39());
    //System.out.println("in Barcodeview paint bar.getBarcode()=========="+bar.getBarcode());
    System.out.println("in Barcodeview paint Graphics2D=========="+g);
              System.out.println("in Barcodeview paint element=========="+be);
              //for(Iterator it=be.children(); it.hasNext();){
    View v = be.getView();
    System.out.println("in Barcodeview paint view=========="+v);
    //for(Iterator it=be.children(); it.hasNext();){
         //          View v = ((Element)it.next()).getView();
         //          if (v!=null) v.paint(g,a);
              AffineTransform oldAT = g.getTransform();
                   // paint text in black
                   g.setPaint(Color.black);
                   // from now on, we work in Y-direct (<0) coordinates to avoid inextricable problems with font being mirrored...
                   //g.transform(oldAT); // also include rotation
    try{
    barcode=BarcodeFactory.create3of9("123456789012",true) ;
    barcode.setBarHeight(100);
    barcode.setBarWidth(100);
    barcode.draw(g, 600,600);
    }catch(BarcodeException bex){System.out.println("create barcode error:\n"+bex.toString());}
         * @return a HitInfo corresponding to the given click-point in model-coordinate.
         public HitInfo hitTest(PEMouseEvent e){
    System.out.println("at barcodeview hitText");
              PicPoint ptClick = e.getPicPoint();
              // test hit on children, highlighted or not, from top to bottom :
              BranchElement be = (BranchElement)element;
    System.out.println("barcodeview hitText BrancheElement be="+be);
              for(int i = be.getChildCount()-1; i>=0; i--){
                   Element o = be.getChildAt(i);
                   if (o.getView().hitTest(e,false)!=null) return new HitInfo.BarcodeComposite(be, i, e);
              return null;
    } // BarcodeView

    So whats the question??? What is it supposed to do if it works properly
    And by the way please put the code tags around your code (see Formatting help link on the page);

  • Create a page as a copy does not work properly

    Hi,
    When I create a new page as a copy of an existing page with page authorization set to some authorization scheme, the newly created page does not work. When I edit the page definition, "Authorization Scheme" is set to some random number instead of the scheme that was set in the original page and running the page throws an error. Any buttons or items set with an authorization also throws an error. Is this a bug?
    Thanks,
    Machaan

    Hi Patrick,
    I am using APEX version 4.0.1.00.03 on Oracle 11g.
    I tried to reproduce it on apex.oracle.com and was not able to reproduce it. The new page worked fine.
    In my application, the newly created page works fine and is not generating an error, but the authorization scheme is set to a number instead of a defined authorization scheme.
    Thanks,
    Machaan
    Edited by: Machaan on Nov 12, 2010 2:07 PM

  • Custom component not working properly

    Hi all - I am trying to create a custom component. I have followed the suggested MVC architecture, and created the following classes:
    1. SuperLineModel (the MODEL)
    2. SuperLine (the actual component,e.g. the CONTROLLER)
    3. BasicSuperLineUI (the UI Delegate class, e.g. the VIEW)
    4. SuperLineUI (an abstract type class for my UI Delegate)
    I also have a fifth class that draws a frame and panel, and then adds the custom component to the panel. In the main method of this class, I
    register the UI delegate like this:
    UIManager.put(BasicSuperLineUI.UI_CLASS_ID, "com.volant.mapit.view.BasicSuperLineUI");Everything compiles without any problems, but the custom component is never painted for some reason. In fact, I added a print line to the UI delegates paint method just to see if it was ever called, and it wasn't. I know I'm missing something here, and it's probably something small. I'm hoping some of you Swing gurus can take a look at my code below and point out the problem for me.
    I really appreciate any help you can give me. Thanks.
    The classes are listed below:
    // SuperLineModel
    import javax.swing.*;
    import javax.swing.event.*;
    public class SuperLineModel
      private double sourceXCoord = 0;
      private double sourceYCoord = 0;
      private double targetXCoord = 0;
      private double targetYCoord = 0;
      private EventListenerList listenerList = new EventListenerList();
      public SuperLineModel()
      public SuperLineModel(double sourceXCoord, double sourceYCoord,
                           double targetXCoord, double targetYCoord)
        this.sourceXCoord = sourceXCoord;
        this.sourceYCoord = sourceYCoord;
        this.targetXCoord = targetXCoord;
        this.targetYCoord = targetYCoord;
      public void setSourceXCoord(double x)
        this.sourceXCoord = x;
        return;
      public void setSourceYCoord(double y)
        this.sourceYCoord = y;
        return;
      public void setTargetXCoord(double x)
        this.targetXCoord = x;
        return;
      public void setTargetYCoord(double y)
        this.targetYCoord = y;
        return;
      public double getSourceXCoord()
        return this.sourceXCoord;
      public double getSourceYCoord()
        return this.sourceYCoord;
      public double getTargetXCoord()
        return this.targetXCoord;
      public double getTargetYCoord()
        return this.targetYCoord;
      public void addChangeListener(ChangeListener cl)
        listenerList.add(ChangeListener.class, cl);
      public void removeChangeListener(ChangeListener cl)
        listenerList.remove(ChangeListener.class, cl);
    // SuperLine
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import com.volant.mapit.view.*;
    import com.volant.mapit.model.*;
    public class SuperLine extends JComponent implements ChangeListener
      private SuperLineModel model;
      public SuperLine()
        init(new SuperLineModel());
      public SuperLine(SuperLineModel model)
        init(model);
      public void init(SuperLineModel model)
        setModel(model);
        setMinimumSize(new Dimension(50, 50));
        setPreferredSize(new Dimension(50,50));
        updateUI();
      public void setUI(BasicSuperLineUI ui)
        super.setUI(ui);
      public BasicSuperLineUI getUI()
        return (BasicSuperLineUI)ui;
      public void updateUI()
        setUI((BasicSuperLineUI)UIManager.getUI(this));
        invalidate();
      public String getUIClassID()
        return SuperLineUI.UI_CLASS_ID;
      public SuperLineModel getModel()
        return model;
      public void setModel(SuperLineModel model)
        SuperLineModel oldModel = model;
        if(oldModel != null)
          oldModel.removeChangeListener(this);
        if(model == null)
          model = new SuperLineModel();
        else
          model.addChangeListener(this);
        firePropertyChange("model", oldModel, model);
      public void stateChanged(ChangeEvent evt)
        repaint();
    // BasicSuperLineUI
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    import com.volant.mapit.control.*;
    public class BasicSuperLineUI extends SuperLineUI
      public static ComponentUI createUI(JComponent c)
        return new BasicSuperLineUI();
      public void installUI(JComponent c)
        SuperLine sl = (SuperLine)c;
      public void uninstallUI(JComponent c)
        SuperLine sl = (SuperLine)c;
      // This method is never called and I don't know why!!!
      public void paint(Graphics g, JComponent c)
        super.paint(g, c);
        System.out.println("test2");
        g.fillRect(0, 0, 200, 400);
    // SuperLineUI
    import javax.swing.plaf.*;
    import com.volant.mapit.control.*;
    public abstract class SuperLineUI extends ComponentUI
      public static final String UI_CLASS_ID = "SuperLineUI";

    A quick glance at the code and it looks ok with the exception of the following which I don't understand what you're trying to do:
      public void installUI(JComponent c)  {
        SuperLine sl = (SuperLine)c;
      public void uninstallUI(JComponent c)  {
        SuperLine sl = (SuperLine)c;
      }Here are my comments:
    1) I expect Superline sl to be a global variable for use elsewhere in your program.
    2) I have no idea what your uninstallUI does.
    This is what I would do:
      SuperLine sl;
      public void installUI(JComponent c)  {
        sl = (SuperLine)c;
      public void uninstallUI(JComponent c)  {
      }Finally, I am assuming that the changelistener will trigger a repaint which in turn will call your paint method, right?
    ;o)
    V.V.

  • Transfer Function Block Component not working properly

    When using a Transfer Function Block, and you enter in the polynomial coefficients for a simple RC Passive Low-Pass Circuit, and perform an AC analysis side-by-side to its circuit equivalent, it works great.  The 2 frequency response waveforms are identical.  However, when you add another RC Low-Pass section in cascade with the 1st one, making it a 2-pole RC Passive Low-Pass Circuit, and you put its polynomial coefficients into the transfer function block the results of the AC Frequency Response is not identical to its 2-pole circuit equivalent.  I double checked my math to make sure my transfer function math was correct.  Since 2 transfer functions are in cascade, the transfer function from the 1st RC stage is multiplied times the transfer function of the 2nd RC stage, and the result is the overall transfer function.  I even went as far as creating 2 transfer function blocks, each of them, with a single RC transfer function and connecting them in a cascade fashion.  The results were the same....the trasnfer function block(s) do not resemble their circuit equivalent models for a >=2pole Passive RC Low-Pass filter.

    The transfer function of a RC ist not retroactively-free, this is the reason why the transfer function of 2 RC Circuits is not 1 / (1 + RC*s)^2 ! You can not multiply the one function of one RC with the other!
    You have to solve the differential equation of the RC circuits, to get the real transfer function.

  • Copy Function is Not Working properly In Order Management

    Hi,
    Description-
    When an order with remnant model is copied, it copied only the topple model line and they include items attached to the top model line. It doesn’t copy the
    option class lines and the option item lines (unshipped and shipped).
    Example-
    Enter an order with for pd-pto-model. See order#21231.The ordered quantities and structure of the model is shown below:
    pd-pto-model 5 qty
    pd-std-item1 (included item) 5 qty
    pd-pto-oc (option class) 5 qty
    pd-std-item1 (included item with rfr checked) 5 qty
    pd-std-item2 (option item with rfr checked) 5 qty
    pd-std-item3 (option item) 5 qty
    Booked the order and pick relased the order. While shipconfirming only shipped 5 qty of pd-std-item3 and staged the rest. On querying the sales order, the line status is seen correctly as follows:
    pd-pto-model Closed
    pd-std-item1 (included item) Picked
    pd-pto-oc (option class) Closed
    pd-std-item1 (included item with rfr checked) Picked
    pd-std-item2 (option item with rfr checked) Picked
    pd-std-item3 (option item) Partially Interfaced to receivables
    Copied this order from the order header. The new order# is 21232.On querying the order, I see only 2 lines as follows:pd-pto-model.
    Anyone can help me on this issue.
    Thanks,
    Chinna

    haisrig wrote:
    Hi ,
    We are facing an issue with select() in Solaris 10. we had written a sample program to this issue.
    Program name :- sel.cpp
    int main()
    struct timeval sleeptime;
    sleeptime.tv_sec = 60;
    printf("1\n");
    select(0,NULL,NULL,NULL,&sleeptime);
    printf("2");
    return 0;
    When i run this program in Solaris 9, its printing 1 and after one minute its printing 2.
    When i run this program on Solaris 10, its printing 1 and 2 without waiting for 60 seconds.
    When i tried to print tv_usec, its printing as 0 in solaris 9 and some garbage values in solaris 10.
    I think because of that the above select function is not working properly in solaris 10.
    Why the tv_usec is not taking 0 as default values in Solaris 10?
    We are using our legacy code for past 20 years. So, before going to do any changes we are trying to find why this happenig like this.Hi
    It sounds to me that you've been lucky for 20 years then.
    Local POD variables on the stack that aren't explicitly initialized can contain any value. Here's what I see in your app with dbx
    (dbx) run
    Running: sel
    stopped in main at line 9 in file "sel.cpp"
        9      sleeptime.tv_sec = 60;
    (dbx) print sleeptime
    sleeptime = {
        tv_sec  = -4198732
        tv_usec = 0
    }That's on a Solaris 10 SPARC machine. If I try it on a Solaris 10 x86 box then I get
    (dbx) print sleeptime
    sleeptime = {
    tv_sec = -830490588
    tv_usec = 134510556
    and I see the behaviour that you describe.
    Paul

  • PLEASE HELP! - when i go to open up itunes this message appears "This copy if itunes is corrupted or not installed properly" If i remove itunes will i lose all my bac ups?

    when i go to open up itunes this message appears "This copy if itunes is corrupted or not installed properly" If i remove itunes will i lose all my bac ups?

    Let's try a repair install of iTunes first.
    Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", click "Change" and then click "Repair".
    Can you launch your iTunes now?

  • This copy of iTunes is corrupted or not installed properly ? Help

    Hi,
    After starting up iTunes I received en error message: "This copy of iTunes is corrupted or not installed properly". So I downloaded the latest version via apple but it fails to re-install because there is already a later version of iTunes on my mac ? So iTunes is corrupted, I get the advise to reinstall but I can't because the install prog refuses to do so. Please help !
    I am running OSX 10.7.3 on an intel MacBookPro with the latest iTunes installed (as far as I know).
    Thanks in advance,
    Mark

    Not to worry. The package downloaded by Software Update seemed to be b0rken.
    I fixed it like this:
    Download iTunes 9.0.2 here:
    http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes9/061-7197. 20091029.tnz9f/iTunes9.0.2.dmg
    That disk image unpacks an .mpkg (meta package) whereas Software Update downloaded a folder containing packages. Looks like it just unpacked on download instead of install.

  • Filter and navigation not working properly

    Hi Gurus,
    I have two reports - report1(source) and report2(target) report.
    In report1, it shows two columns - Market_ID, Amount_sold
    In report2, it shows two columns - Market_ID, Reasons(where Market_ID is made prompted)
    In report1, I have made the Value Interaction as 'Navigate' and the target as 'path of report2' in Column properties ->Column Format
    But, when I click on Market_ID(report1), it is NOT showing the details of that particulat Market_ID(report2).
    It is showing the details of whole Market_ID in report2. That means, the filter is not working properly.
    Is there any method in which the report2 shows the details of particular Market_ID which is selected from report1(market_ID)?
    Best Regards,
    J

    yes you can,
    in your source add a master_name column and in that make the navigation.
    in the master_id column go to column format and style options and check the Use Custom CSS style option and type,
    display: none
    now in your source the master_id column will get hidden. in your target make the master_id prompted.
    now click on the master_name in your source, your target will get filtered by the corresponding msater_id
    thanks,
    Karthick
    Edited by: kart on Jun 7, 2010 11:52 AM

  • MyFaces schedule component is not rendering properly.

    Hello everybody.
    I am trying to use the Tomahawk schedule component with Jdeveloper 10.1.3.2. It is not rendering properly.
    The schedule entries and the header line are mising for weeks.
    I removed the default-render-kit-id element from the faces-config.xml. Nothing changed.
    Used versions:
    - Jdeveloper 10.1.3.2
    - myFaces 1.5.1
    - tomahawk 1.5.1
    Any suggestions?
    Thanks.

    Hi,
    did you post this question on the MyFaces open source list?
    Frank

  • Acrobat XI does not open - licensed copy - has been working properly for several months

    acrobat XI does not open - licensed copy - has been working properly for several months. i never did have any problems before this. was acrobat 10 with acrobat XI upgrade in November 2013 so 6-7 months of trouble free use

    I too have the same problem working property until about January or February this year...get "bad parameter' message trying to open files and then when I did the upgrade this a.m. it will not open at all, just spins and then disappears.  I had this problem about a week ago and our IT man thought he had it resolved, even then kept getting 'bad parameter' and then this a.m. right back to not opening at all.  I have Windows 7 Professional v6.1 and am wondering if it's a compatibility issue?  Will I continue to have these issued until I install Windows 8?

  • I have a copy of Web Premium CS3 which was installed on a Windows Vista PC.  I have a new Windows 7 PC and the installation disc will not run properly.  The installation begins and then asks for the CS3 disc to be inserted.  If I re-insert the CD I just g

    I have a copy of Web Premium CS3 which was installed on a Windows Vista PC.  I have a new Windows 7 PC and the installation disc will not run properly.  The installation begins and then asks for the CS3 disc to be inserted.  If I re-insert the CD I just get a message asking for the disc to be inserted.  any ideas anyone?

    Use the download version:
    Download CS3 products
    Mylenium

Maybe you are looking for

  • Class extending a Frame with main method in it - how do I use the methods?

    Howdy. Having a problem.. I want my "main" class, ie. the class with the main method in it to extend a Frame class.. because the main method is static, I can't use Frame's methods. What's a trick to get around this ? I am making a deliberate design d

  • Pop up message in Background execution

    Hello everybody! I created a Pop up message in AT-SELECTION-SCREEN event and it's working well in online mode. However, when I try to execute the same program in Background mode, the SE37 transaction does not show me the list at spool. Question: Does

  • Difference between Technical & Business Systems??

    Hello Experts,                     What are the differences between Technical System & Business System in SAP PI??Why we need to create Technical & Business Systems??

  • HOWTO: Expose Entity Object Methods to Clients

    By design, clients cannot directly access entity objects. The view object layer provides an extra layer of security--you can choose exactly what data and methods you want clients to see. This HOWTO describes the process of exposing an entity object m

  • Adobe AIR for mobile closed wifi network

    Creating a game that will ONLY be used in a closed network of less than a dozen iphones, ipads. What I need to figure out is the simplest solution for storing names with high scores for each completed game session. I was thinking of perhaps using one