How to create web site using STRUTS frame work

Hi,
I know how to create web pages using JSP & Servlets.But now i have to create Matrimonial web site using STRUTS frame work.Plz any one guide for me...
Thank U....

Struts is not to be confused with JSF.
Start at their own homepage over there at apache.org.
Good luck.

Similar Messages

  • Good videos, websites, books, on creating web sites using full CS5?

    Hi all, I just got CS5 (yeah!!!). I'd like to start creating web sites. I've used older versions of Dreamweaver to make simple sites. But I'd like to get a feel for the whole suite, to make full use of everything. Any pointers greatly appreciated!!
    river

    If you're looking for book suggestions, I have a page on my website with my recommended reading list with links to the books on Amazon:
    http://www.theindesignguy.com/indesign-book-recommendations.shtml
    For videos, Lynda.com is a bargain at $25/month.
    Bob

  • How to create personal site using csom ?

    I am using Office 365. I am trying to create personal site using following code
    private void createPersonalSite()
    try
    //using (SPSite site = new SPSite("Site URL"))
    //SPServiceContext context = SPServiceContext.GetContext(site);
    var targetSite = new Uri("https://test/sites/18thFeb");
    var securePassword = new SecureString();
    foreach (char c in adminPassword)
    securePassword.AppendChar(c);
    adminUserId = "[email protected]";
    var onlineCredentials = new SharePointOnlineCredentials(adminUserId, securePassword);
    ClientContext clientContext = new ClientContext("https://test/sites/18thFeb");
    clientContext.Credentials = onlineCredentials;
    //Get user profile
    //// Get the PeopleManager object and then get the target user's properties.
    //Microsoft.SharePoint.Client.UserProfiles.PeopleManager peopleManager = new Microsoft.SharePoint.Client.UserProfiles.PeopleManager(clientContext);
    //Microsoft.SharePoint.Client.UserProfiles.PersonProperties personProperties = peopleManager.GetPropertiesFor("domainName\\userName");
    //personProperties.UserProfileProperties.
    Microsoft.SharePoint.Client.UserProfiles.ProfileLoader loader = Microsoft.SharePoint.Client.UserProfiles.ProfileLoader.GetProfileLoader(clientContext);
    Microsoft.SharePoint.Client.UserProfiles.UserProfile profile = loader.GetUserProfile();
    Microsoft.SharePoint.Client.Site personalSite = profile.PersonalSite;
    clientContext.Load(personalSite);
    clientContext.ExecuteQuery();
    // Let's check if the site already exists
    if (personalSite.ServerObjectIsNull.Value)
    // Let's queue the personal site creation using oob timer job based approach
    // Using async mode, since end user could go away from browser, you could do this using oob web part as well
    profile.CreatePersonalSiteEnque(true);
    //clientContext.ExecuteQuery();
    catch
    int a = 10;
    The above code runs without any exception but does not create personal site. Can anyone please let me know what is the issue?  Can you please provide me any code or link through which I can resolve the above issue?

    Hi,
    According to your post, my understanding is that you want to create personal site using Client Object Model in SharePoint Online.
    The following code snippet for your reference:
    public void CreatePersonalSiteUsingCSOM(string tenantAdminUrl, string userName, string password, string[] emailIDs)
    using (ClientContext _context = new ClientContext(tenantAdminUrl))
    try
    SharePointOnlineCredentials _creds = new SharePointOnlineCredentials(userName, Utilities.StringToSecure(password));
    _context.Credentials = _creds;
    _context.ExecuteQuery();
    ProfileLoader _profileLoader = ProfileLoader.GetProfileLoader(_context);
    _profileLoader.CreatePersonalSiteEnqueueBulk(emailIDs);
    _profileLoader.Context.ExecuteQuery();
    catch(Exception _ex)
    throw;
    More information is here:
    http://blogs.msdn.com/b/frank_marasco/archive/2014/03/25/so-you-want-to-programmatically-provision-personal-sites-one-drive-for-business-in-office-365.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to create sql database using java frame or appelet?

    hi ! i am working on database project i want to create a database using java frame or applet where it asks user to select the location for database to be created , after user have specified the path then the programs creates the database, again i want that database to be read and write by another frame or applet but as user select the path how do i make the connectivity. i just have basic knowledge on java. please give me idea how can i process further.
    thanks a lot

    While duffymo is correct in regard to most major database products, it's my understanding (warning! wild-ass guess coming) that the Hypersonic DB is more "application-centric" and the dynamic creation of databases is part of its design. It's pure Java database software, and therefore is not appropriate for all database projects, in particular those that require extremely high-performance.
    See http://hsqldb.org/
    I've not used it yet (but soon though), and I can't really advise anyone about it.
    However, I'm wondering if you phrased you question in a way that is confusing us. To most of us in casual conversation, a "database" is both (1) a large organized collection of data and (2) the software that is used to organize and access it. However, the phrase "create a database" usually means creating a (1) database (a collection of data) using an already created (2) database software, such as Oracle, MySQL, DB2, HSQDB, etc., etc. If you'r question is, how do a create some new database software using Java, the answer is that this is a very very big and hard thing to do for the general case and probably not something you want to be doing.

  • How to create Web Services Using EP7

    Hi
    I got a chance to work on Web Service using EP7 and i am new to web services
    This is the first time i am working on Web Services
    so please can you guide me where to start and how to start.
    if possible reffer some links regarding web services.
    regards
    mmukesh

    Hi Mukesh,
    Please refer to the document
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60046fb9-ac5b-2910-08a6-b7b04b463c62
    Thanks
    Sarang

  • How to Create web service using JMS with PUB/SUB pattern.

    Hi All,
    I need to expose web service using JMS with PUB/SUB pattern.
    if you have any source for this.
    I tried to use @WLJmsTransport annotation but unable to get it done.
    I have configured all JMS server, topic, and connection factory.
    Thanks.

    Hi, I am having web sample web service program which is simple one.
    But I need to Modify this to JMS enable.
    Can any one help me?
    Thanks.

  • How to create multiple pages using flex application.

    Hi all,
    i am doing flex application which contains 5 different
    pages,
    to do this i have used viewstack component to navigate
    between the pages.
    this is working fine if all my pages are of same size. each
    page as different background image.
    but i have to create pages with different sizes.
    my first and second page are small and remaining pages are
    big.
    when i navigate to 3rd or 4th page, it is showing scrollbar
    inside swf.
    but i want scrollbar for browser window not inside my swf
    anyone please guide me how to create pages in flex
    application.
    i have one more doubt, if my page contains some html links ,
    how to open those links,
    is it posible to open the link in new window.
    please help me , i have no idea how to create web
    applications using flex
    Thanks in advance
    regards
    avanthika

    Hi inlineblue,
    Thanks for your reply,
    you asked about sample code,
    following is my sample code.
    In my Application mxml file, i am loading all custom
    components for each page.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*"
    horizontalAlign="center" verticalAlign="top"
    styleName="plain"
    backgroundColor="#FFFFFF"
    creationComplete="init()" width="780" height="594" >
    <mx:Script>
    <![CDATA[
    //navigating to next page
    public function showNextStep(newIndx:int):void{
    vs.selectedIndex=newIndx;
    //navigating to previous page
    public function showPreviousStep(newIndx):void{
    vs.selectedIndex=newIndx
    ]]>
    </mx:Script>
    <mx:ViewStack id="vs" paddingLeft="0" height="100%"
    width="100%" >
    <mx:Canvas id="s1" label="step1"
    backgroundImage="assets/Step1.jpg" >
    <!-- Step1.jpg image size is width=778, height=560 -->
    <mx:HBox paddingLeft="8" width="780" height="548">
    </mx:HBox>
    <mx:Button alpha="0" buttonMode="true" x="697" y="18"
    click="showNextStep(1)" width="72" height="24" />
    <mx:Button alpha="0" buttonMode="true" x="697" y="508"
    width="72" click="showNextStep(1)" height="24"/>
    </mx:Canvas>
    <step2 id="s2" label="Step2" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step3 id="s3" label="Step3" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step4 id="s4" label="Step4" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step5 id="s5" label="Step5" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    </mx:ViewStack>
    </mx:Application>
    // following is the page2 (step2) component code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step2.jpg" width="778" height="600"
    >
    <!-- Step2.jpg image size is width=778, height=600 -->
    <mx:HBox horizontalAlign="left" paddingLeft="5"
    height="511" width="768">
    </mx:HBox>
    <mx:Button alpha="0" buttonMode="true" x="648" y="6"
    click="this.parentApplication.showPreviousStep(0)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="711" y="6"
    click="this.parentApplication.showNextStep(2)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="651" y="529"
    width="58" click="this.parentApplication.showPreviousStep(0)"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="712" y="528"
    width="54" click="this.parentApplication.showNextStep(2)"
    height="24"/>
    </mx:Canvas>
    // following is the code for page3 (step3) component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step3.jpg" >
    <!-- Step3.jpg image size is width=778, height=660 -->
    <mx:VBox width="763" height="668">
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="644" y="10"
    click="this.parentApplication.showPreviousStep(1)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="708" y="10"
    click="this.parentApplication.showNextStep(3)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" label="Back"
    x="625" y="590" width="58"
    click="this.parentApplication.showPreviousStep(1)" height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="694" y="590"
    width="68" click="this.parentApplication.showNextStep(3)"
    height="24"/>
    </mx:Canvas>
    // following is code for page4 (step 4),
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step4.jpg" >
    <!-- Step4.jpg image size is width=778, height=773 -->
    <mx:VBox width="762" height="792">
    <!-- User interface -->
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="644" y="15"
    click="this.parentApplication.showPreviousStep(2)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="708" y="16"
    click="this.parentApplication.showNextStep(4)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="644" y="710"
    width="58" click="this.parentApplication.showPreviousStep(2)"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="703" y="710"
    width="54" click="this.parentApplication.showNextStep(4)"
    height="24"/>
    </mx:Canvas>
    // Following is code for Page 5 (step 5 ) component.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step5.jpg" width="778"
    height="600">
    <!-- Step5.jpg image size is width=778, height=539-->
    <mx:VBox paddingLeft="170" paddingTop="170" width="778"
    height="522">
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="654" y="41"
    click="this.parentApplication.showPreviousStep(3)" width="72"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="654" y="486"
    width="72" click="this.parentApplication.showPreviousStep(3)"
    height="24"/>
    </mx:Canvas>
    I am getting vertical scrollbar for page3 and page4,
    please tell me how to avoid this, Is their any other method
    to do this.
    Following is the link for my above code
    http://www.emantras.com/flexdemo/sample.html
    in this application one more problem is also their,
    background image loads very slow, before it loads all the flex
    components will load. So when you open this please wait till
    background image loaded, to move to next and back pages.
    Thanks for your time and consideration.
    Regards
    Avanthika

  • Style sheet with Struts frame work

    Hi,
    I am using MyEclipse editor. I am trying to use Style sheet in my JSP page using Struts frame work. I tried several ways but style sheet is not applying on my JSP page. Please look at my code and let me know where is the problem.
    1. I created a project called "AcmiReports". In the webroot I created folder called "CSS". In this folder I created "AcmiReports.css" file. In my JSP I am using like this
    <head>
    <link rel="stylesheet" type="text/css" href="/AcmiReports/WebRoot/css/AcmiReports.css">
    </head>
    Where am I doing wrong? I read somewhere that I need to set some thing in struts-config file. Is this true.
    Please help me.
    Thanks,
    Anamika

    No its not working fine, i m also facing the same problem with my code..
    when ever i come to jsp page through action css works fine, but if i directly forward to jsp page, css doesnt work
    can any body help me, its to urgent.. i need to submit my project till 1st of april... please do the need full asap
    i m copying the code used to apply the css in my jsp file
    <title><bean:message key="login.title" /></title>
    <link href="default.css" rel="stylesheet" type="text/css" />
    <script language=javascript src="clock.js" type="text/javascript"></script>
    same code works fine through action, but through normal forward it doesnt...

  • I am trying to publish a web site using my own domain. How do I transfer my host to mac from another server?

    I am trying to publish a web site using my own domain. How do I transfer my host to mac from another server?

    I've created a CNAME entry to redirect the domain to apple but the site is still not live! Can anyone help please?
    Did you also do what is required in the .Mac account settings?
    http://help.apple.com/mac2/1/help/member/pgs2/memfmsetgen367.html
    Could you provide your urls?

  • How to create web page same as Struts tiles in OPA?

    Hi,
    How to create web page containing consistent Header,Fotter,left right pannel which embed OPA screen?

    Web Determinations uses Velocity templates to configure the appearance of a paritcular page. You can configure these tempaltes to get the look and feel that you like.
    For more information search for "Oracle Web Determinations Template Reference Guide" in the Oracle Policy Automation Developer's Guide (http://docs.oracle.com/html/E38272_01/toc.htm)

  • Can I launch more than 5 web-sites using Muse? how?

    Hi,
    Can I launch more than 5 web-sites using Muse? how?

    You can use Muse to design and build as many websites as you wish; just purchase the URL's and hosting as appropriate. Your subscription to Muse allows for unlimited authoring.
    Now, if you're referring to support via Business Catalyst, that's a different story...

  • How can I see Web sites using Adobe Flash Player with my IPad?

    I've realised that it's not possible to visit web sites using Adobe Flash Player.
    Is There a program by which Apple allows you to solve this problem?

    Not from Apple, no, and probably never will be. You can try one of the third-party app/service combinations for playing Flash such as Skyfire , Puffin, or iSwifter. One of those might work for you, though they all have limitations and do not work with all Flash-based sites and services. You may find other suggestions for apps in the many other threads on Flash in this forum.
    Regards.

  • How can I build a personal web site using...

    Hi,friends on Oracle world.
    I am a new starter in oracle forms and AS.Nowdays,I am interested to build a personal web site using forms and other tech. such as flash. Can I do that ?Would you plz give me some suggestions?

    All the information about running Forms on the web is at:
    http://otn.oracle.com/formsupgrade
    I would also suggest that you would look at Oracle9iAS Portal for the design of your website.
    look at http://otn.oracle.com/products

  • Editing a web site using windows that was made with iweb using a MAC

    I published my web site using iweb with my MBP, but at times would like to edit it when I'm running windows. Anyone know how to do it?

    You can't. To edit a site created by iweb, you must be using a mac with iweb installed and also with the Domain file installed that was used to create the site.
    http://homepage.mac.com/thgewecke/iwebdata.html
    Of course you can mess with the html and other files created by iWeb with any app you please, but any changes will be overwritten if you republish from iWeb later.

  • How to create web services in java?

    Hi,
    I am a newbie to java webservices. Can anybody tell me how to create web services in java?
    Any tutorial link or step by step doc would be useful.
    Appreciate your help in this regard.
    Thanks in advance.
    naymo01.

    Creating web services in Java appears to depend highly upon the server you intend to use.
    Here's a tutorial: http://java.sun.com/webservices/docs/1.6/tutorial/doc/index.html

Maybe you are looking for

  • Macbook Pro with Retina Display suddenly turned off and can't turn on

    I've been very happy with this new baby, for about a week now. It never gave me any problem. Then tonight it suddenly died, without any sign. Then I couldn't turn it back on again, no matter what tricks I tried. Is there any solution besides bringing

  • ICP Top member

    Hi Peers, Before i ask my question what i know before that is very important. In Entity dimension where ever i tagged it as "is ICP", system automatically generated ICP Members. up to this i have done and understand ICP Top how can i understand? Wher

  • I am having Issues with ISAPI_Rewite and Coldfusion

    Hi i have a website and a hosting package with HOSTEK.com which also gives me the option to use the ISAPI_rewrite. I am new to this and the issue i am having is that i have a .htaccess file with the rewrite rules which the Helicon Support helped me o

  • Re: Satellite A - Alarm after an USB modem intallation

    Hello All, I need some help with my notebook. A couple of month ago I installed in my computer an USB modem in my Toshiba, from this moment everytime I want to turno on my computer before I need to remove all plug on it otherwise it will sound a real

  • Insignia tv and sony dvd/vcr

    I purchashed an Insignia tv and I have a sony dvd/vcr, the tv came with a cable with 5 connectors.  I got the dvd to work but the vcr will not, do you think that it is not hooked up right or that maybe I need the cable with the red, yellow and white