Sharing PHP Service Call Beetween Mobile and Desktop App

Hi,
im building a Mobile Applicatopion using application server side PHP for generating some service call.
Im tryng to share this service callwith my desktop application version!
How can i do it?
Thanks

http://www.as3gamegears.com/monetization/as3-paypal-api/

Similar Messages

  • When frequently switching between mobile and desktop view

    When I frequently switching between mobile and desktop view I have to open the layers every time since they get closed/collapsed. Adobe may need to fix it for the next version.

    You can use CTRL+# to switch between Code and Design View.
    By the way, this is the Dreamweaver Application Development forum which deals with questions about using server-side scripting languages like PHP or ColdFusion. General Dreamweaver questions should be posted in the regular Dreamweaver General Discussions forum.
    And while I´m at it: please use descriptive headlines such as "how to switch between Code and Design View" for your posts -- mentioning your screen name "Goula129" is not helpful to other users.

  • Project setup for a mobile and desktop application including native extensions (ANE)?

    I'm using Flash Builder 4.6 and I want to develop an application that is deployed to mobile and desktop devices. Therefore I tried a setup with three projects; one desktop project for Windows and Mac OSX, one mobile project for iOS and Android and also one library project for shared resources. The library project is used in the mobile and desktop project. Afterwards I placed all stuff like AS classes and UI components in the library project and instanciate them in the devices project. This works so far. (As consensus decision-making I used Flex components that are available vor mobile and desktop.)
    But If I want to use native extensions (ANE) like a DLL for Windows or a gyroscop for mobile devices, then I can't add the ANE to the library project. I have to add the ANE file separately to each device project and build a separate UI components. Is this the way it's intend to use ANE files? Is there an even simpler approach?
    Or is there a completly different way, e.g. setup just one common project (instead of three) and use different skins for mobile and desktop?
    Your answer is appreciated. (Including links to documentation and tutorials.)

    This thread doesn't look promising:
    http://forums.adobe.com/message/4737831
    Same here:
    http://stackoverflow.com/questions/11143907/flashbuilder-4-6-how-do-setup-project-for-mobi le-desktop-publishing
    Though if you're using Starling, there's some setup instructions here:
    http://wiki.starling-framework.org/manual/project_setup

  • Free calls to mobiles and landlines

    Hello everyone today i wanted to check out this offer i saw:
    Free calls to mobiles and landlines
    Get Skype Unlimited World and call mobiles in 8 countries and landlines in 63—your first month is free (worth €12.06).
    Get your free month
    I press get your free month and it says:
    Not valid
    Why does it give me that great offer and it wont even let me use it wow

    Oops - it looks like this trial has either expired or isn’t available for this Skype Name.
    Please ensure you’ve signed in with the Skype Name the free trial was sent to.

  • Unlimited calls to mobiles and land-lines in to th...

    Unlimited calls to mobiles and landlines in: PHILIPPINES
    Why Philippines is not on Premium?

    Hi,
    The main thing is that your plan covers calls to US. So if you are planning to call mainly or only to US, then you don't need the Unlimited World subscription, he Unlimited US will be enough.
    If you are planning to buy an Online Number, then receiving calls to your Online Number does not cost anything to you.

  • I tried your Webify Me on mobile and desktop mac ... it only ends up in a Forbidden page !!! wasted 15mins of my life...

    I tried your Webify Me on mobile and desktop mac ... it only ends up in a Forbidden page !!! wasted 15mins of my life...

    -> Type '''about:config''' in the address bar and press Enter
    * When you see a Warning, click '''I'll be careful, I promise''' button
    * In the '''Filter bar''', type ''network.http.sendRefererHeader''
    * If the preference ''network.http.sendRefererHeader'' appears in BOLD text, right-click it and choose '''Reset'''
    Check and tell if its working.

  • Hi   just download it and it turns creative cloud stays loading and desktop app do not appear.   work on a mac

    hi
    just download it and it turns creative cloud stays loading and desktop app do not appear.
    work on a mac

    Please refer to:
    http://helpx.adobe.com/creative-cloud/kb/creative-cloud-app-doesnt-open.html
    Please let us know if it worked.
    Regards
    Rajshree

  • Can I create a JAR that is an Applet and Desktop app at the same time?

    Hi mates.
    Can I create a JAR that is an Applet and Desktop app at the same time?
    Thanks.

    Ricardo_Ruiz_Lopez wrote:
    ..I have one problem, I want a JMenuBar but I can't add it inside a jPanel.
    Any idea?
    SSCCE
    It can be compiled/run as an applet or application something like this (e.g. for a Win command prompt).
    C:\Users\Andrew\Hybrid> javac Hybrid.java
    C:\Users\Andrew\Hybrid> java Hybrid
    C:\Users\Andrew\Hybrid> appletviewer Hybrid.java
    C:\Users\Andrew\Hybrid> // YES the previous line requires a '.java'  suffix - trust me.  ;-)Code
    // <applet code='Hybrid' width='600' height='400'></applet>
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class Hybrid extends JApplet {
        public void init() {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    GUI gui = new GUI();
                    getContentPane().add( gui.getMainPanel() );
                    setJMenuBar( gui.getMenuBar(false) );
                    validate();
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame f = new JFrame("Test Hybrid");
                    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
                    GUI gui = new GUI();
                    f.setContentPane(gui.getMainPanel());
                    f.setJMenuBar(gui.getMenuBar(true));
                    f.pack();
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    class GUI {
        private JPanel mainGui = null;
        private JMenuBar menuBar = null;
        public JPanel getMainPanel(){
            if (mainGui==null) {
                mainGui = new JPanel( new BorderLayout(3,3) );
                mainGui.setBorder( new EmptyBorder(5,5,5,5) );
                JToolBar tb = new JToolBar();
                for (int ii=1; ii<6; ii++) {
                    tb.add( new JButton( "Btn " + ii) );
                    if (ii%2==0) {
                        tb.addSeparator();
                mainGui.add(tb, BorderLayout.NORTH);
                mainGui.add( new JSplitPane(
                    JSplitPane.HORIZONTAL_SPLIT,
                    new JScrollPane(new JTree()),
                    new JTextArea(20,20)
                    ), BorderLayout.CENTER );
                mainGui.add(new JLabel("Main user interface.."), BorderLayout.SOUTH);
            return mainGui;
        public JMenuBar getMenuBar(boolean isFloating) {
            if (menuBar == null) {
                menuBar = new JMenuBar();
                if (isFloating) {
                    JMenu fileMenu = new JMenu("File");
                    fileMenu.add( new JMenuItem("Exit") );
                    menuBar.add( fileMenu );
                JMenu helpMenu = new JMenu("Help");
                helpMenu.add( new JMenuItem("About") );
                helpMenu.add( new JMenuItem("Help") );
                menuBar.add( helpMenu );
            return menuBar;
    The code is not intended to be well designed. It is just written to be brief and demonstrate a few points.
    Edit 1:
    Added some access keywords in a passing gesture that the sample aimed at encapsulation.
    Edited by: AndrewThompson64 on Sep 2, 2010 1:34 PM

  • PHP Service Call

    Hi, I am new to Flash Builder and am having trouble with getting a result from a service call. I am unsure as to the correct syntax to reference the value returned from my PHP class or if I should be listening for something before I try to reference it.
    private function login(event:LoginEvents):void
                    checkUserResult.token = usersService.checkUser(event.customEvProperty[0],event.customEvProperty[1])
                    Alert.show("User "+checkUserResult.lastResult);
                    currentState = "MainState";
    The PHP class returns a String and when I use Test Operation in Flash Builder it returns the value I expect. When I run the project however I get an undefined value. As I want the result to use within my code and not hooked up to visual element I am unsure as to how to go about it as all the examples seem to populate UI components on creationComplete or similar.
    Thanks
    Pete

    Ok, I figured it out. Needed to add a listener for the ResultEvent.RESULT and then I could use the returned value. Code below, if anyone knows a better way to do it I am always open to suggestions;
    <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import mx.rpc.events.ResultEvent;
                import events.LoginEvents; // custom event class
                import mx.controls.Alert;
                private function login(event:LoginEvents):void {
                    checkUserResult.token = usersService.checkUser(event.customEvProperty[0],event.customEvProperty[1]);
                    checkUserResult.addEventListener(ResultEvent.RESULT, doSomething);
                private function doSomething(event:ResultEvent):void
                    Alert.show("User "+event.result);
                    currentState = "MainState";
            ]]>
        </fx:Script>

  • Free worldwide calls to mobiles and landlines for a month

    Hi,I have received an email saying that I can have free Worldwide calls for one month. I am going to Tunisia at the end of April and want to ring UK every day because my parents both have cancer.So if I use my UK mobile phone in Tunisia to ring a UK landline number will it be completely free? or will I have to pay a rate per minute. I can't believe it'll be completely free. In fact if the calls don't have to be paid for, at £8.49 a month it'll be worth doing every time I go on holiday. Thanks in advance

    Hello, I moved to Amsterdam recently and the "pay as you go" plan is now not practical.I attempted to sign up for Unlimited World calls to landline and mobiles but when I selected Free trial button, I received a message that the offer expired or is not available to my skype login. I only have one Skype login.I just signed up for Premium service thinking maybe I need to do this first, then I can upgrade to Unlimited World but that didn't work either.How can I sign up for Unlimited World? I don't care about the free trial, I want to sign for a monthly subscription that best meets my current international mobile and landline calling needs. Thanks for you helpNancy

  • Web Service call - XI - SAP  and  SAP - XI  - Web Service response ???

    Hi ALL,
    Need some  guidance on the following Scenario :
    A Legacy system  would  transfer some data to SAP thoruhg a Web Service call and  would expect a response from SAP by way of a response to the same Web service call
    A synchronous Interface , inbound to sap via a Web service call and back  to the legacy system through the response to the same Web Service .
    Need to provide WSDL to the Legacy system
    Any help on how to do the above mentioned will be apreciated
    thanks in advance

    SD,
    Check this weblog for step by step procedure:
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    Here instead of deploying in XI you will deploy your webservice in the legacy system.
    If you want to test this webservice then check this weblog:
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    ---Satish

  • Skype call to mobiles and landlines

    I bought skype credit and managed to make one call to a mobile phone. The next calls I have attempted to make to mobile phones or landlines have failed.
    Skype credit is full. Internet connection is strong. I am calling different numbers and I am having the same issue. I have tried calling the same numbers from another skype account on a Mac and it works.
    Only Skype to Skype over the internet is working.
    Please help. This is very incovenient to call clients.
    Kind regards

    this sounds like a restriction that is being imposed by carriers in the UAE, not Skype
    Regards,
    Neil

  • Read/Unread Emails on Mobile and Desktop

    Hello,
    I am trying to set up my account on exchange online, I have purchased Plan 1.
    How do I set it up so that when I receive a message and open it on my desktop, it shows as read on my BB device, and vice-versa?
    I  used to have an exchange account that linked my BB and desktop so that I could open a email on either one, and the message would be seen as read on another. It gets too confusing having the same email shown as unread.
    Can anyone help me out?
    Thanks

    Hi,
    Firstly, I’d like to explain, you are not alone:
    http://blog.lanlogic.net/blog/blackberry-showing-unread-messages-but-they-are-all-read/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    And I guess it’s a synchronization issue. We can check the email status through OWA: if the email keeps read status, mobile device cannot sync with mailbox and we can refer to the following article to troubleshooting:
    http://support.microsoft.com/kb/2563324
    Additionally, according to your description, your account will be on Exchange online. I recommend you ask for more professional help on our Exchange online forum:
    http://social.technet.microsoft.com/Forums/msonline/en-US/home?forum=onlineservicesexchange
    Best regards,
    Angela Shi
    TechNet Community Support

  • What's the difference on StageWebview in Mobile and Desktop AIR apps?

    Hi,
    What's the difference between StageWebView in an AIR mobile and
    AIR desktop app? (AIR 3.9 SDK)
    I have the problem that in a StageWebView related feature is working and on mobile but not on desktop AIR apps.
    The feature lets users login into a website and post to the forum - on mobile it seems that the cookie/session is not found.
    What could be the reason for that?
    Any ideas welcome!

    I would recommend against using useNative = true in Windows, because that means the behaviour and presentation of the page is very unpredictable, since the user can have pretty much any version of IE from 6 to 11 and beyond. That's more than a decade worth of different (and some really old and buggy) versions of Internet Explorer. The embedded WebKit in AIR could use an update (it's a bit old), but it's still a lot better than the wild territory of native IE ;-). I'm glad the AIR team listened to us and in AIR 3.9 they gave us back the option to not use native IE in Windows (in some of the previous versions, such as AIR 3.6, 3.7 and 3.8, only the IE engine was available to StageWebView, which forced me to use AIR 3.5 for Windows versions of my application, since the IE engine provided all sorts of problems).
    Anyway, I don't understand your post very well. First you say "is working and on mobile but not on desktop AIR apps". From that I get that your page is working on mobile but doesn't work properly on desktop, but then you say "on mobile it seems that the cookie/session is not found". That contradicts the other sentence, since now you're saying it doesn't work properly on mobile.
    Which one is true?

  • Mobile vs desktop app

    After having gained some familiarity with the jQuery Mobile framework (which is fantastic), it appears as if we would need to maintain 2 versions of the Apex application, one optimized for a desktop browser and another for a mobile device. A homepage would redirect to the appropriate version depending on the device accessing it using some modern detection library like Modernizr
    But looking at other technologies like ASP.NET that implement the MVC framework, it looks like there is a way to cleanly separate content from the presentation layer. This is something Apex is unable to do because component templates cannot be changed at run-time.
    Maintaining 2 versions of the same Apex application is not something that I am looking forward to. Surely there is some clever way to have your cake and eat it too.
    Any ideas? Am I missing something? Thanks

    Hello Vikas,
    >> I am not sure I concur with your assessment above since presentation in Apex is determined by templates which are fixed for a given application
    Presentation is indeed determined by templates, however, template parsing is performed per page request (for simplicity sake I’m ignoring APEX cache). I’m pretty sure you are using conditioned regions. Conditioned regions actually mean that the logic of the page can determine the way it will be rendered. Let’s go back for a moment to the translation mechanism. APEX 4.0 introduced the p_lang parameter, as part of the f?p URL. This parameter instructs the APEX engine in which language to render the first page, before any session state actions has been taken. We can use a similar parameter, e.g. p_media, which will set a built-in substitution string, e.g. APP_MEDIA, that you’ll be able to use to condition your page regions. As a single page can include various regions, each with its own template, you’ll be able to control which region will be the one to displayed – optimized for desktop or optimized to mobile.
    The point I’m trying to make is that when APEX saves your logic – report SQL queries, list of items, etc. – it doesn’t saves with it the way these elements are displayed. This information is kept separately. You can easily change the entire application theme without any logic changes; you can transform a classic report to IR, etc.
    >> short of designing to the lowest common denominator (mobile), I still don't see how it is possible to have ONE Apex application that would look different on a mobile vs desktop device, see the points in my earlier post.
    I believe that we all agree that in some cases you need to design your page differently, according to the target media it’s going to use. For example, I have an application that includes a phonebook. Each phone record has about 30 possible information items. When invoked from a desktop, all the fields are displayed (including, for example, the empty ones). When invoked from a mobile platform, only about, or up to, 8 fields, which contain data, are displayed (BTW, one can claim that this is a pure logic issue and not only presentation issue, as you need to determine which fields are going to be displayed). Anyway, I’m having a single application which includes different pages for different medias. At the time, my options were not as wide as the ones we have with 4.1, and remember that we are only at the beginning of the road.
    >> Thanks for your example on apex.oracle.com but I know that Apex allows 100% control over the templates used to render content and 4.1 has some improvements in this area but I am not sure it is germane to this discussion
    The point I was trying to make is that even with the current 4.1 version, which doesn’t include official mobile support, the APEX engine is already equipped with (almost) everything we need to generate HTML code that is compatible with JQM demands, and that we can do it on a single page.
    >> [On a related note - When Form Items in Table is set to No, I am guessing table-based item layout attributes like Begin on New Line, Rowspan/Colspan would be ignored. So how would item layout in the region be controlled? Using pure CSS techniques like float, clear, etc? I am not a CSS expert, I guess I can't see how the region template and label template interact to produce the desired layout]
    You are correct. When Form Items in Table is set to No all the declarative layout fields are void. I updated my demo page to show an example of a region – the second one - where we are using a DIV based layout without any CSS. The third region shows an example of the same region, this time with the use of a very minimal CSS.
    DIV based layout is neither declarative nor simple, at least for now. It requires a lot of CSS code, and not in the basic level. Compared with the current table based layout options, which are highly declarative, and can give you quite complex layouts (sub- regions, etc.) we have a very long way to go with the DIV based layout. However, you need to remember that in the mobile arena, layout demand tends to be much simpler.
    >> Case in point - Report region since that is the primary component used to display content … even if you build a 100% DIV-based report and region template, I don't know if JQM can use DIVs exclusively to format content. As per the JQM docs, it needs the UL element to provide some semantic meaning to the markup.
    You keep getting back to the UL element, and I’m not sure why. I agree that when you need to format lists, this is an important element (which APEX also uses), however, JQM also supports grid layout, which based on DIVs - http://jquerymobile.com/demos/1.0b2/#/demos/1.0b2/docs/content/content-grids.html. I believe this can be used with reports.
    As Marc confirmed in one of his threads, much of the ways APEX will support mobile applications will be determined by the JQM technologies and options. For now, and I believe mainly to allow future (relative easy) backward compatibility, the current 4.1 version of the APEX engine includes options to accommodate the most obvious JQM demand. As we all know, the development team is very open to new ideas and suggestions (as the new 4.1 translation mechanism clearly shows) so we can hope that they will consider all options to make our life as developers simpler and easier. I’m sure they are aware, just like us, of the growing trend of mobile development. I’m sure they will devote a lot of thinking to the subject. I never spoke with Joel about that (as you know, Oracle doesn’t publish its future plans and strategies, and I have to respect that), but my impression is that where APEX is concerned, the only thing carved in stone is the use of JQM. Everything else is open.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

Maybe you are looking for

  • Latest Firefox (23.0.1) won't install

    Firefox crashed (not uncommon) so I went through the restart routine. It decided to install the latest version, got as far as "Checking Compatibility of Add Ons" and sat with the 'scanning green bar' sliding happily grpm end to end. After 6 hours I g

  • Rogue AP Exact Location

    Hi all Currently i am using WLC,WCS and LA.Right now i am facing problem of Rogue AP.I know his mac address as well as vendor but how can i know his exact location.I am using Netstumbler tool. Please reply

  • Account Error: Nonexistent

    It was working last night, but now it's just saying "Account Error: Nonexistent" when I try to view my website. It also asks me to login to access idisk.me.com or something like that when I enter in my domain name.

  • ITunes window closes when trying to paste metadata via mouse.

    For a while now, when I am editing the metadata in my iTunes window, whether it be music, movies etc, if I try to paste information into the appropriate space using the mouse, the window automatically closes without me being able to enter the data. I

  • What is a Scorecard Custom Set Formula and how do I use it?

    When creating a Scorecard (in Dashboard Designer) which includes a KPI, in the right "Details" frame, there is a section for "Set Formulas" and under that (along with Time, which I understand) is "Custom" which I can't find any documentation for. How