How to pull site created in portal

Hi,
I'm just getting into azure as I have a project to demo and wanted something quick and easy to host on. I was being guided through the azure portal and it plainly has New -> Website -> From Gallery. I figured I'd look there and saw the usual ASP.NET
starter site so I went with that and it created itself fine.
Now. How on earth do I pull the thing?! Every tutorial says you start a project in visual studio and can then deploy to azure with the azure sdk and/or some some source control such as visual studio online. I know how to do this, I could create the same
template project in Visual studio and deploy it to azure in 2 minutes but it's just a matter of pride and sanity at this point as to how I can just open this already created project in visual studio. 
I notice in visual studio there is a File->Open website -> Ftp Site but I cant believe there isn't an option from Azure. Do I need to use the FTP details? Where are these displayed in the azure portal?
Thanks.

Hi,
There are a lot of ways to deploy code to an Azure Website.  My prefered method is right-clicking on the Project and then click Publish....  A wizard pops up and I am walked through the gathering of information required to make the publish. 
You can also use webdeploy or an FTP client.
But if IIRC you want to download or pull the code that was created to your client?  Again, you can use an FTP client and download the contents in the SITES directory.
I find this feature pretty cool:
http://blogs.msdn.com/b/benjaminperkins/archive/2014/08/05/configure-remote-iis-administration-for-microsoft-azure-web-sites.aspx It will let you see the contents and website configurations.
HTH, Benjamin

Similar Messages

  • How to upload site created with Dreamweaver via FTP to the iWEB server?

    Hi everyone,
    I recently created a site on Dreamweaver and want to upload the site, via FTP to the iWEB server. My questions are the following:
    1. What is the FTP host address?
    2. How do I connect to my website via FTP?
    Any help on the following questions will be much appreciated.
    Thanks!

    Hello Lauretta and welcome to the forum.
    You do not connect to iDisk via FTP. iDisk uses WebDAV. Also you do not need to manually upload the published files to iDisk as recommended buy others in this thread. Once the site and server is set up in DW you can publish and upload directly through DW.app Check out this post for more info.

  • How do web site created with After Effect differ from that created with dream weaver or Flash?

    As I have some experiance not much in After Effect..I have created my website in After Effect., I  have no  knowledge of Dream weaver or Flash..  My web pages take too much time to open., due to it loads SHOCK WAVE and it take much longer time., were as I see many a website created in other software opens prety fast. As such I want to know whether creating website in After effect is right or not.,   and how to speed up

    You do not create websites in AE, you can create at best animations and that is what you ahev done - produce a fat SWF file. You are really using the wrong tool and should better spend your time on learning HTML and CSS proper and do your website in Dreamweaver or otehr web design tools. And no, Flash is not a website design tool, either.
    Mylenium

  • How can I create a portal server authentication user with a batch

    hi,
    I am trying to import users into the portal server emulating the create user procedure as plumtree. What I cannot understand at the moment is which classes are involved in the sequence of creating a user.
    the problem starts from the fact that I have used a synch WS and it works but, being the table a dummy one and the users to be authenticated by the portal server, I couldn't use that synch as a definitive.
    I tryed using plumtree.server.CIPTUser class with no success. could not understand how to actually create the user after setting the parameters to the object.
    Is there any documentation explaining how to create the portal server emulation of create user. this could be usefull for all those cases when there is no central repository of user and passwords.
    thanks
    Mario

    This should get you started.
    IPTUser=IPTSession.GetUsers.Create(iAdminFolderID)
    IPTServerContext=IPTUser.GetInterFaces("IPTServerContext")
    IPTServercontext.Store
    This is a high level implementation. It should get you very close.
    thanks,
    Craig

  • How to Upload without creating a "Site"?

    Hi, is it possible to upload a page to my server using FTP without creating a "site"?
    For example: I created an .htlm page on my desktop named "Site Maintenance" to use when my site is down. This page is not part of a "Site".
    I connected to the server using FTP and I just want to be able to "Drag" the page into the "Remote Sites" panel but how do I do this?
    When I have a "Site" created, I click the small icon called "Expand to show Local and Remote Sites" and it opens the Local and Remote sites window, but is there a way to open the "Remote Sites" window so I can upload a single page? Thanks.

    Thanks for the replies. I guess I did not ask the question correctly so I will try to explain it better.
    What if I want to use the FTP client inside of Dreamweaver to just connect to my server. I can connect to the FTP (see image) but how can I drag a folder from my desktop into the server using Dreamweaver?
    I have downloaded a folder and I need to add it to my blog which is only on my server. I do not have a Dreamweaver site. Surely Dreamweaver isn't that archaic that you can't upload a file or folder to a server without having to create a site first. It was so much easier in GoLive.

  • How do I update a test site created in Muse.

    How do I update a test site created in Muse.
    Martyn King

    Hi Martyn,
    Please see this article for instuctions on how to access and edit your Muse site.
    -http://www.adobekb.com/signing_in_publishing.html#top7
    For additional Muse help please reference this page. - http://helpx.adobe.com/muse.html
    Kind regards,
    -Sidney

  • How to create User Portal in OID programmatically in JSP

    Hi.
    I want to create User Portal programmatically in JSP (if posible) or have to use procedure.
    I check with package wwsec_api, it just have 'function
    add_portal_user', but it say we must have "the user must already exist in OID before this function is called."
    So, i checked for 'how to create User in OID'. What i got (in metalink)just methods that 'Create manually Portal Users in to OID' by LDAP or PL/SQL coding (with list of user in flat files).
    What i want to do is, How to create User POrtal in OID by JSP? What are the procedure/table/method involved?
    Do anybody have any samples?..
    Thanks.

    I had to write my own because I could not find one anywhere. Here is an addUser() method that seems to work pretty well.
    import oracle.ldap.util.jndi.ConnectionUtil;
    import javax.naming.directory.*;
    import javax.naming.*;
    public class LdapUser
    public LdapUser(){}
    public void addUser(String pUsername, String pPassword, String pFirstName, String pLastName, String pEmail)
    try
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx("host", "port", "orcladmin", "pwd");
    BasicAttributes attrs = new BasicAttributes();
    BasicAttribute oc = new BasicAttribute("objectclass");
    oc.add("top");
    oc.add("person");
    oc.add("inetOrgPerson");
    oc.add("organizationalPerson");
    oc.add("orclUser");
    oc.add("orclUserV2");
    attrs.put(oc);
    BasicAttribute gn = new BasicAttribute("givenName", pFirstName);
    attrs.put(gn);
    BasicAttribute sn = new BasicAttribute("sn", pLastName);
    attrs.put(sn);
    BasicAttribute cn = new BasicAttribute("mail", pEmail);
    attrs.put(cn);
    BasicAttribute pwd = new BasicAttribute("userpassword", pPassword);
    attrs.put(pwd);
    // Etcetera, etcetera...
    ctx.createSubcontext("cn="+pUsername+",cn=users,dc=whatever,dc=com", attrs);
    ctx.close();
    System.out.println("Success!!");
    catch (NameAlreadyBoundException nabe)
    System.out.println("Username is already in use. Please choose another.");
    catch (NamingException ne)
    System.out.println("NamingException: " + ne);
    catch (Exception e)
    System.out.println("User account was not created.");
    }

  • How to create the Portal Service in Portal 7.3,

    Dear Experts,
    how to create the Portal Service in Portal 7.3, as we create in Portal 7.0 by creating the Portal Project in that we create Portal Service and we can start and stop in Portal Service configuration in System Administration
    Thanks,
    Sagar Pande

    Hi Sagar,
    Procedure
      1.  Open the SAP NetWeaver Administrator by either of the following methods:
           a. Use the URL to your AS Java (hostname:port) to access the AS Java home page and use the link to SAP NetWeaver Administrator.
           b. Alternatively, add nwa to the AS Java URL to access SAP NetWeaver Administrator directly. (hostname:port/nwa).
      2  Go to   Operations Management   Systems   and click the Start & Stop link.
        The Start & Stop: Java EE Instances window opens.
      3  Click the Java EE Application bar and select the relevant application in the Application List.
        The Portal Services pane displays the services associated with the selected application.
      4  Use the buttons Start Service or Stop Service.
    Refer to Portal 7.3 help
    http://help.sap.com/saphelp_nw73/helpdata/en/f6/ac978061ac4b24a87a1f821313c4fe/frameset.htm
    Br,
    Venky

  • How to Create A portal iview to link B portal WDJ app

    Hi firends
       I am novice.
    I have a persecution that how to Create A portal iview to link B portal WDJ app.
    Please help me to solve the question.
    Best regards,
    Ben Chen

    copy the URL of the WDJ app iview in portal B, create a URL iview in portal A with that URL.
    or Create a KM navigation IVew with that WDJ application Ivew in HTML. check this article for c[reating bookmark able Web dynpro URL's |http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/808fb397-1fcf-2910-7884-8f075c939666]
    regards
    Mahesh

  • How to create customised portal desktop

    hi friends,
    I need some sample code and procedure to create customised portal desktop .
    help me...
    waiting for reply....

    Hi refer these links which says how to create your custom theme and desktop
    Demo Themes
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4a10edf9-0701-0010-a6bc-c63bc3db08d5
    Theme How To PDF -
    >
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6483a890-0201-0010-48a6-b6e595111efe
    Theme Modification     
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/58e4e8f9-0701-0010-9b9a-9c717fdde8c8                                             
    Cheers!!
    SJ

  • How to pull sales orders based on a Campaign??( I have created one Campaign and i need to know,for how many orders it was applicable)

    How to pull sales orders based on a Campaign ID??( I have created one Campaign and i need to know,for how many orders it was applicable)

    Hello,
    as far I understand you are talking about campaign determination. Once a sales order is generated having a campaign determined the campaign creates a reference to the sales order. The best way to track the assigned sales orders is using the related transactions function:
    The same feature is available for trade promotions as well.
    The data is available in table CRMD_BRELVONAE - you can also write a report selecting on OBJGUID_A_SEL with the campaign or TP guid and OBJTYPE_A_SEL with BUS2010020 for campaigns and BUS2010030 for trade promotions.
    Is this answering your questions?
    best regards,
    Johannes

  • How to create an orgchart of users created in portal

    I need to produce an org chart of our company. As the users are created in portal 902, it would seem the portal hierarchy tool would be perfect to use. However am I right in thinking that a user created in portal is stored in the oid/ldap tool. Anyone have any ideas to access the data via sql.
    What comes to mind is
    1. there is a dbms_ldap package, could this be used to populate a emp type table
    2. A trigger that fires when a user is created that populates the emp table
    Anyone done anything like this before.
    Regards
    Orlando

    Thanks for the reply Sharadha ,
    I do not have actual users from portal but it comes from the LDAP, i have already used the above method and it does not have the timezone.
    Depending on the request from where the portal is being accessed from i need to find there timezone.
    Thanks
    Deepak

  • Hi guys I want to know how to create SRM portal?

    Hi guys I am right now creating SRM portal, can anyone give info about please.

    Good Day A Patel
    Your question is a bit vague, can you elaborate a bit?.. are you talking about NW-PORTAL being a front end to the SRM GUI?..
    Please put more information so that we can advise if we can

  • How do I manually uninstall FIM Portal and Service 2010

    I installed Forefront Identity Manager 2010 as follows:
    Server 1: FIM Sync Service
    Servers 2, 3: SharePoint Farm, FIM Portal and Service
    I've had issues from the installation. When installing FIM Portal and Service on Server 2 it failed to recognize fim sync service on server 1. We had FIM service unavailable errors in most usage scenarios (even though asmx returned service description).
    I was able to use RunAs different user to start browser as the service account used to install and run the FIM service, browse to the identity management site using
    http://localhost and saw the fim portal. I was never able to see the portal using DNS address or server name from the server 2 or any other computer on the network, or using any other account (although I checked the option to
    enable portal access for authenticated users).
    I tried to uninstall - this went through all the steps but failed during apply and did a rollback. However, subsequent attempts to change, repair or uninstall all fail with message that the site was not found, please create it...
    I would like to manually remove FIM Service and Portal and begin again. How do I manually remove FIM Service and Portal when uninstall fails?
    Thanks,
    David Saylor

    Are you getting this error message while uninstalling FIM?
    FIM Portal and Service is trying to find a site which is not there anymore.  Just add  the url which FIM was looking into the Central Administration >> Alternate Access Mappings 
    Save and exit out from Central Administration and try to uninstall now and it should work.  It worked for me.
    http://aryannava.com/2014/03/26/how-do-i-manually-uninstall-fim-portal-and-service-2010/
    Aryan Nava | Twitter: @cloudtxt | Blog:
    http://virtualizesharepoint.com
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.
    Aryan, you should convert your blog post into a Wiki article:
    http://social.technet.microsoft.com/wiki/contents/articles/23330.technet-guru-contributions-for-march.aspx
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • How to pull a max value/first value for duplicates in a group in a query?

    Hi everybody,
    [Oracle 10g]
    I'm working with two tables, tblPatient and tblProgressNotes. The fields I'm working with are:
    <pre>
    <li>tblPatient.PatientID</li>
    <li>tblPatient.EpisodeNumber (this tracks the number of hospital visits)</li>
    <li>tblPatient.DischargeDate</li>
    <li>tblProgressNotes.Height</li>
    <li>tblProgressNotes.Weight</li>
    <li>tblProgressNotes.Girth</li>
    <li>tblProgressNotes.EntryDate</li>
    <li>tblProgressNotes.EntryTime</li>
    </pre>
    From the fields above, I need to pull the most recent episode for each patient and each unique entry date so I can collect the height, weight, girth, and chart the plots on a graph. The problem I'm running into, though, is that there may be multiple entries on a given day. I can get the most recent episode for each patient with a "WHERE tblPatient.DischargeDate Is Null," but I'm not sure how to pull just the unique dates for each patient.
    For instance, if I have the following:
    <pre>
         <u>PatientID EpisodeNumber EntryDate EntryTime Height Weight Girth</u>
    1 1 01.01.13 1:03 PM 66 185 35.5
    1 1 01.01.13 7:18 PM 66 184 36
    1 1 01.07.13 8:57 AM 66 190 36
    1 1 01.07.13 11:32 AM 66 189 35.5
    </pre>
    For the first two records, I only want to return one record on 01.01.13. What I would really like, if there is more than one entry on a single day, is to take the average of the height, weight, and girth entries for that day and return a single record (I don't need the time entries, but I included them initially for testing). So, this is what my desired output would look like:
    <pre>
         <u>PatientID EpisodeNumber EntryDate Height Weight Girth</u>
    1 1 01.01.13 66 184.5 35.75
    1 1 01.07.13 66 189.5 35.75
    </pre>
    If it's not possible to write a query like the above, then I would like to take the first entry for each day where there are multiple entries on that day. So, this would be the desired output (I included the EntryTime again so you can compare to the original example):
    <pre>
         <u>PatientID EpisodeNumber EntryDate EntryTime Height Weight Girth</u>
    1 1 01.01.13 1:03 PM 66 185 35.5
    1 1 01.07.13 8:57 AM 66 190 36
    </pre>
    Thanks for your help.

    Hi,
    987019 wrote:
    Here's some sample data:
    CREATE TABLE TBLPATIENT
    PATID VARCHAR2 (20),
    EPISODE_NUMBER DOUBLE,
    DATE_OF_DISCHARGE DATE
    CREATE TABLE TBLPROGRESSNOTES
    PATID VARCHAR2 (20),
    EPISODE_NUMBER DOUBLE,
    DATA_ENTRY_DATE DATE,
    GIRTH VARCHAR2 (5),
    HEIGHT DOUBLE,
    WEIGHT DOUBLE,
    Thanks. I had to make some changes to get it to run:
    CREATE TABLE TBLPATIENT
            PATID               VARCHAR2 (20),
            EPISODE_NUMBER           BINARY_DOUBLE,     -- There's no DOUBLE data type in SQL
            DATE_OF_DISCHARGE      DATE
    DROP TABLE     tblprogressnotes;
    CREATE TABLE TBLPROGRESSNOTES
            PATID          VARCHAR2 (20),
            EPISODE_NUMBER      NUMBER,          -- Most people use NUMBER for all numeric types
            ENTRY_DATE      DATE,          -- DATA_entry date is a good name, too, just be consistent
            GIRTH           NUMBER,          -- Can't average VARCHAR2s
            HEIGHT          NUMBER,
            WEIGHT           NUMBER          -- no comma here
    INSERT INTO TBLPATIENT VALUES (1, 1);
    INSERT INTO TBLPATIENT VALUES (2, 1);
    // For the first 3 records, the height stays the same, but the girth and weight values are variable on the same day
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 36, 66, 184);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 35.5, 66, 185);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 35, 66, 184.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/18/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 36, 66, 187);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/31/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 36.5, 66, 190);
    // For the last 3 records, the girth and height stay the same, but the weight is variable on the same day.
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/03/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 32, 66, 137.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/08/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 32.5, 66, 138);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 31, 66, 134);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 31, 66, 133.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH:MM:SS'), 31, 66, 134.5);
    INSERT INTO TBLPATIENT VALUES (1, 1, NULL);
    -- If the table has 3 columns,     ^^^^^^  INSERT 3 values (or say which columns you're INSERTing)
    INSERT INTO TBLPATIENT VALUES (2, 1, NULL);
    // For the first 3 records, the height stays the same, but the girth and weight values are variable on the same day
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 36, 66, 184);
    --                                                             MM = month  ^^            ^^ MI = minutes
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 35.5, 66, 185);
    --                                                         Hour 00  ^^  not valid for HH   ^^^^  use HH24 instead
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 35, 66, 184.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/18/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 36, 66, 187);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/31/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 36.5, 66, 190);
    // For the last 3 records, the girth and height stay the same, but the weight is variable on the same day.
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/03/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 32, 66, 137.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/08/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 32.5, 66, 138);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 31, 66, 134);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 31, 66, 133.5);
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/19/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 31, 66, 134.5);This seems to be different from the sample data you posted earlier. You didn't say what results you want from this data, so I don't know if this gets them or not:
    SELECT
            P.PATID,
            P.EPISODE_NUMBER,
            P.DATE_OF_DISCHARGE,
            M.ENTRY_DATE,
    --      M.ENTRY_TIME,          -- Not needed (not present in simplified sample data, anyway)
            AVG (M.GIRTH)     AS avg_girth,             -- AVG added
            AVG (M.HEIGHT)     AS avg_height,
            AVG (M.WEIGHT)     AS avg_weight
    FROM
            TBLPATIENT P LEFT OUTER JOIN
            TBLPROGRESSNOTES M ON
                    (P.PATID = M.PATID) AND
                    (P.EPISODE_NUMBER = M.EPISODE_NUMBER)
    WHERE
            P.DATE_OF_DISCHARGE IS NULL AND
            M.ENTRY_DATE BETWEEN (SYSDATE - 60) AND SYSDATE AND
            M.HEIGHT  != 0 AND        -- This site won't display the other inequlaity operator
            M.WEIGHT  != 0
    GROUP BY               -- GROUP BY clause added
            P.PATID,          -- Includes all columns from the SELECT clause that
            P.EPISODE_NUMBER,     --      are not aggregated
            P.DATE_OF_DISCHARGE,
            M.ENTRY_DATE
    ORDER BY
            P.PATID,          -- No column called patIENTid
            M.ENTRY_DATE
    -- ,    M.ENTRY_TIME
    ;As you can see, it's very close to what you posted, and to what I suggested earlier: use AVG on the columns that you want to average, and GROUP BY the other columns. I marked all the places I changed with in-line comments.
    Since the hours, mintues and seconds of entry_date are always 00:00:00, then there's no need to use TRUNC (entry_date). Using it unnecessaily won't change the results, it will only waste a little time.
    By the way, if you omit the hours, minutes and seconds in TO_DATE, they default to 00:00:00, so you could make the insert statements a little simpler like this:
    INSERT INTO TBLPROGRESSNOTES VALUES (1, 1, TO_DATE('01/01/2013', 'MM/DD/YYYY'), 36, 66, 184);Output fro the query above:
    `     EPISODE
    PATID _NUMBER DATE_OF_DI ENTRY_DATE  AVG_GIRTH AVG_HEIGHT AVG_WEIGHT
    1           1            01/01/2013       35.5         66      184.5
    1           1            01/03/2013         32         66      137.5
    1           1            01/08/2013       32.5         66        138
    1           1            01/18/2013         36         66        187
    1           1            01/19/2013         31         66        134
    1           1            01/31/2013       36.5         66        190

Maybe you are looking for