Need help!!!! Best solution for a web application to customize teamsport apparel online

Help!!!!
Hi I am a web designer at beginners stage with web
devlopment. I am seeking guidance on how to develop a customized
interactive web application so that the end user can change color
and patterns of apparel on vector images such as teamsports
uniforms and tshirts. Once the design is customized to their liking
they can save it with all of the spec information in a file to
there desktop or to a database to send to the manufacturer.
Also looking for a possible way to use a CMS so I can upload
templates of the garment easily for the end user to customize
online. Can this be done and if so how? This is an example the kind
of application I am looking for:
http://www.dynamicteamsports.com/elite/placeorder.jsp
I am in desperate need of some brilliant developer to help
with this.
Thanks in advance for anyone who is willing to assist or give
me guidance,
Danka
"Reap what you sew"

Something like what you are attempting is not simple.
Flash, Flex would be ideal for creating the UI and
manipulating the vectors.

Similar Messages

  • Need help with a customized interactive web application for  apparel

    Help!!!!
    Hi I am a web designer at beginners stage with web
    devlopment. I am seeking guidance on how to develop a customized
    interactive web application so that the end user can change color
    and patterns of apparel on vector images such as teamsports
    uniforms and tshirts. Once the design is customized to their liking
    they can save it with all of the spec information in a file to
    there desktop or to a database to send to the manufacturer.
    Also looking for a possible way to use a CMS so I can upload
    templates of the garment easily for the end user to customize
    online. Can this be done and if so how? This is an example the kind
    of application I am looking for:
    http://www.dynamicteamsports.com/elite/placeorder.jsp
    I am in desperate need of some brilliant developer to help
    with this.
    Thanks in advance for anyone who is willing to assist or give
    me guidance,
    Danka
    "Reap what you sew"

    some parts of that are doable using non-advanced skills, but
    will be difficult and unwieldly if there are more than a few
    colors/patterns.
    saving the image to the server is a bit more advanced and
    you're going to need some server-side scripting like php, perl, asp
    etc. in addition to some flash programming ability.

  • Help: Best Solution for Auditing??

    Hi,
    Scenario: We are in the process of implementing a large scale application utilizing BC4J and Struts. Our client has about 100 users on the system daily, they are authenticated at the application tier (username is stored throughout the session in a user object). We will NOT be creating database users for each application user.
    Issue: Our database tables have audit columns to monitor who is performing the data manipulation. Each table has an audit trigger that populates the audit columns, but this obviously is meaningless since everyone is connected to the DB under the same user.
    Our Current Solution: We have disabled our audit triggers, and we are setting the audit columns equal to the application user at the application tier level. This has been tedious to implement since we have 100s of different classes that perform DML that needed additional setAttribute calls for the audit columns.
    Other Solutions???
    Thanks in advance,
    Andy Hamilton
    TUSC

    Hi,
    Below is a reply I have emailed to Matt last week for anyone who are interested.
    Matt,
    I think the best is to implement prepareSession in the root app module
    and do your own authentication in the middle-tier rather than querying
    vo from client. Attached is a copy of app module impl and the login jsp
    I used for the test. If you need the tables or the entire bc4j project
    I used for this test please let me know. I can zip it up and mail it to
    you.
    Let me know if this is a workable solution. I still think a custom JAAS
    login module is the right solution because it doesn't tie to a
    particular business package or application.
    Thanks,
    Yvonne
    Below are the custom application module and LoginPage.jsp I have tested
    package mypackage1;
    import oracle.jbo.server.ApplicationModuleImpl;
    import oracle.jbo.Session;
    import oracle.jbo.ViewObject;
    import oracle.jbo.JboContext;
    import oracle.jbo.JboException;
    import java.util.Hashtable;
    import oracle.jbo.common.PropertyMetadata;
    import oracle.jbo.common.PropertyConstants;
    import oracle.jbo.common.CommonMessageBundle;
    // --- File generated by Oracle Business Components for Java.
    public class Mypackage1ModuleImpl extends ApplicationModuleImpl
    * This is the default constructor (do not remove)
    public Mypackage1ModuleImpl()
    protected void prepareSession(Session session)
    super.prepareSession(session);
    authenticate(session);
    void authenticate(Session session)
    Hashtable env = session.getEnvironment();
    String userName = (String) env.get(JboContext.SECURITY_PRINCIPAL);
    if (userName != null)
    ViewObject usersView = getUsersView1();
    usersView.setWhereClause("USERID = '" + userName + "'" );
    usersView.executeQuery();
    if (usersView.hasNext())
    System.out.println("Authentication Success");
    else
    System.out.println("Authentication Failed");
    throw new JboException(CommonMessageBundle.class,
    CommonMessageBundle.EXC_SECURITY,
    new Object[]{env.get(JboContext.SECURITY_PRINCIPAL)});
    * Container's getter for DepthistoryView1
    public DepthistoryViewImpl getDepthistoryView1()
    return (DepthistoryViewImpl)findViewObject("DepthistoryView1");
    * Container's getter for UsersView1
    public UsersViewImpl getUsersView1()
    return (UsersViewImpl)findViewObject("UsersView1");
    * Sample main for debugging Business Components code using the tester.
    public static void main(String[] args)
    launchTester("mypackage1", "Mypackage1ModuleLocal");
    <%@ page contentType="text/html;charset=windows-1252"
    import="oracle.jbo.http.HttpContainer,oracle.jbo.JboContext"
    %>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
    <TITLE>Login</TITLE>
    </HEAD>
    <BODY>
    <%
    // If this is a post request then assume that it is the result
    // of a form submit. Attempt to login.
    if (request.getMethod().equalsIgnoreCase("POST"))
    // Invalidate any previous "am" application SessionCookie
    // which may exist for this session.
    HttpContainer c = HttpContainer.getInstanceFromSession(session);
    c.setSessionCookie("am", null);
    // Cache the principal and credentials in the session.
    session.setAttribute(JboContext.SECURITY_PRINCIPAL, request.getParameter("username"));
    session.setAttribute(JboContext.SECURITY_CREDENTIALS, request.getParameter("password"));
    try
    %>
    <!-- Use the ApplicationModule tag to force a connection attempt. -->
    <jbo:ApplicationModule
    id="am"
    configname="mypackage1.Mypackage1Module.Mypackage1ModuleLocal"
    releasemode="Stateful" />
    <!-- Immediately release the application module so that the release
    mode of this page does not interfere with the release mode of the
    page to which we are forwarding. The session cookie will remain
    authenticated, and since we are using pooling it should not consume
    significant CPU cycles in reacquiring an ApplicationModule instance.
    Stateful is also preferred because it does not incur additional
    cycles to reset the ApplicationModule state between this page and
    the page to which we are forwarding. -->
    <jbo:ReleasePageResources appid="am" />
    // If login is successful, then forward to the application entry point.
    <jsp:forward page="DepthistoryView1_Browse.jsp" />
    <%
    catch (oracle.jbo.JboException e)
    // If login fails, then invalidate the session cookie that was
    // implicitly created by the ApplicationModule tag above.
    c.setSessionCookie("am", null);
    %>
    <h2>Login Failed. Please Try Again.</h2>
    <%
    %>
    <table width="300" border="0" cellspacing="2" cellpadding="2">
    <form method="post" action="LoginPage.jsp" name="Login">
    <tr>
    <td align=right valign="middle"><span>Username  </span>
    </td>
    <td align=left valign="top" colspan="2">
    <input name="username" size=15 maxlength="100"> </td>
    </tr>
    <tr>
    <td align=right valign="middle"><span>Password  </span> </td>
    <td align=left valign="top">
    <input type=password name="password" size=15 maxlength="100"> </td>
    <td align="left" valign="middle" width="15%">
    <input type="submit" value="Login">
    </td>
    </tr>
    </form>
    </table>
    </BODY>
    </HTML>

  • SharePoint 2013 Central Admin says port 80 for three web applications, but IIS says they have different ports

    Hello,
    I have three web applications on a SharePoint 2013 servers.  In Central Administrators on the Application Management page where it lists all of the web applications, it shows Port 80 being used 2 3 sites.  When I go to IIS, 2 of the 3 are using
    different ports, 81 and 82.  So, only one site IIS says is using port 80. Why is this?  The host file has no entries in it.  Where these web applications extended?
    Thanks,
    Paul
    Paul

    Hi Paul,
    From the URL of the web application in Central Administration in the image, you have configured the Alternate Access Mapping for the web applications.
    And the URL configured is by default using port 80 if you don’t 
    assign other ports for the web application, so the port is changed to 80 in Central Administration.
    To be able to access the web application, you need to add binging for the web application in IIS(please make sure that you have added the host name in DNS).
    For example, SharePoint – 32298, you need to create the binding for the web application in IIS as the image below:
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • TA24002 My 500 GB can't verify nor repair. I have photoshop work that I need to recover. I would like to know which erase option would be the best solution for this problem.

    My 500 GB can't verify nor repair. I have photoshop work that I need to recover. I would like to know what option would be the best solution for this problem?

    You appear to have two issues: 1) a hard drive that is not working properly and 2) files you wish to recover.
    Re 1) you need to answer Kappy's questions.
    Re 2) does the drive load and can you see your photo files? If so can you copy them to another drive?
    Do you not have a backup of the photo files?

  • This is my first Mac, I need on best site for Help me.

    This is my first Mac, I need on best site for Help me. Video is Better.

    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/ (for PC-Windows switcher)
    http://www.apple.com/findouthow/mac/ (videos)
    Stefan

  • What is teh best solution for my Problem??

    hello everyone
    i'am planing to develop a Patient Management System (PMS)
    since i 'm not that guru in the J technologies i would like you to get me some help with this decision:
    what is the best solution for developeing an intranet "PMS" which should handles data (connection to postgresql) and runs some algorithm (for planing puropose) im background ??
    1 developeing a web based solution (servlet and jsp and and ..)
    2 developeing an application wich will be manging everything ??? (a kind of programm with its own GUI)
    3 you may have an other idea solution and ill be gald for any advices
    ps sorry for my english its not that great ;)

    Web applications are all the rage these days and IMO rightly so as they greatly reduce deployment cost and headaches.
    They do have some drawbacks though which for you might be important.
    I can imagine that sooner or later (probably sooner in my experience) a requirement to interface with hardware installed on the client machines will emerge.
    Whether this is a barcode scanner or a chipcard reader to get client information from some form of card issued to the client, or maybe a label printer to print out labels for medication bottles doesn't matter, you need to access the client machine directly.
    Web applications have great difficulty with that (in fact, it's all but impossible).
    You could go for an applet solution but that's contrived at best and still leaves the same problems.
    So in your situation an old-fashioned client/server application (maybe using web services to communicate with the serverside application) is likely the best longterm solution.
    You'd have the database remote so everyone has access to the same data, being accessed through processes run on the server and called by the clients. These can also do most of the business logic, leaving the clients relatively dumb responsible mainly for data validation and entry and presentation of the results.

  • Best practice for consuming web services

    Hi
    we are consuming web service in orchestration by "Add Generated Item".By using this option it creates 1 orch,1xsd file and some bindings.
    we have different projects for schemas,maps and orchestration under our solution in visual studio.
    Now i need to know that what will be the best practice for consuming web service in orchestration i mean in which project should i use "add generated item" (in orchstration project or in schemas project) coz it generates both 1 orch and 1
    schema.
    thanks

    From a service orientation perspective you should abstract the service artifacts from the other artifacts. Otherwise it will be very difficult to update the service interface without affecting the other artifacts. For example you don't want to have to redeply
    your entire application if only one field changes in the service you consume.
    So I typically generate the items, remove the unnecessary stuff, and put them in a separate project.
    Depending on the control you have over the services you want to consume, it would even be better to create another layer of abstraction. By that I mean create your own interface (schema) and map that one to the one the service exposes. This basically
    is only necessary if you consume external services that are beyond your control. By abstracting the interface it exposes, you limit the impact of changes of that interface on the rest of your system. All changes are abstracted behind your own interface.
    If you consume internal services, you can probably control the way the interface is defined. In a service oriented world all internal services expose a well known interface, based on the domain objects you have within your organisation.
    Jean-Paul Smit | Didago IT Consultancy
    Blog |
    Twitter | LinkedIn
    MCTS BizTalk 2006/2010 + Certified SOA Architect
    Please indicate "Mark as Answer" if this post has answered the question.

  • Do I need Bea Weblogic Portal for simple web site ?

    I have a decision making situation here to use or not to use Bea Weblogic portal 8.1 for my web application along with struts.
    Situation : Application has service( batch process with client applications, hand held devices ) and web ( browser based interaction ) oriented architecture. Data flows into centralized system and this data being diagnosed for analysis and displayed on web ( text and as graphical charts ).
    I do not see much content management required like Yahoo, but have lots of configurable dynamic presentation . ( dynamic page views DHTML, graphical charts etc,�.).
    Question : Is Bea Weblogic Portal 8.1 of any use in this situation ?
    Thanks in advance.

    First let me thank you("duffymo") for your interest in responding to this post.You're most welcome.
    I am in elementary at BEA WLP, trying to understand and use it for the first time.
    I am analysing at very high level view of architecture.Thinking before doing is an excellent idea. I commend you for exploring it before plunging in.
    Struts brings the frame work for web application that controls flow and model.
    Seems to be WLP brings the personalization to the web site.I think that's correct. Struts is a JSP/servlet-based Web presentation framework that helps you maintain MVC separation using a Model-2 scheme. (Google for unfamiliar terms.)
    Bringing WLP in to the picture makes any sense.I agree if you meant "does not make any sense". You don't need a portal, based on your earlier description. Roles might be in play here. You'll have one for each of the three scenarios that you described in your earlier response.
    You'll NEVER have a situation where someone will have the client and admin views visible at the same time. It sounds like your three roles are mutually exclusive. In that case a portal isn't necessary.
    Do they;( Bea WLP, Struts ) go hand in hand in the same architecture. Can I achieve the same by just
    using struts with out WLP.You can certainly use Struts with BEA's WebLogic. That's a J2EE app server, which has a servlet/JSP engine built in. Maybe that's the confusion here. Is your client insisting that you use WebLogic or the Portal product? They work together. I don't believe you can use the Portal product without WebLogic, but you can use WebLogic without the Portal. Clarify that point with your customer. Maybe they're just asking that you deploy on WebLogic. THAT is quite sensible.
    You need to ask your customer another question: do they already have a license for WebLogic and Portal, and is the software installed and running, or are they planning to buy one for the sake of this project? If they want to spend the money and give you a chance to learn WebLogic by all means let them, but know that there are other, free alternatives. (e.g., Tomcat, JBoss, etc.)
    Here's one for you: how familiar are you with J2EE? Have you done any projects with EJBs? Will this project require them? How well do you know Struts/servlets/JSPs/JSTL, or will this be your first time with them, too?
    I would like to learn WLP feature, but trying to save money for my client by not using too many
    technologies.I agree. It's something you can add on later if you need it. Best to get the base application up and running first.

  • One Search service application for multiple web applications in a single server

      We are planning to host 17 Web applications in a single Server. Do I need to create search service application for each web application or I need to create one  Search service application , create a Content source for each web
    application and create a Result source for filtering. Which is the best approach. And which approach takes more RAM memory.
       In my application I am using Search web part, "Recently Changed Items", "Popular Items" web parts. when I created only one one  Search Service application for all web applications and using Result sources ,
    I am not getting the results. What could be the problem.

    Hi,
    One SSA is ok, but you should think about access rights. If the access is clear cut between all the web apps you should be ok with one SSA. Multiple result sources limiting on content source also works, but could easily be bypassed.
    Multiple SSA's will eat up RAM/CPU like a mother :)
    As for popular etc.. it could be due to how those sources are set up, but haven't investigated or tested this much.
    Thanks,
    Mikael
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • SQL Server 2012 - Wat Is The Best Solution For Creating a Read Only Replicated/AlwaysOn Database

    Hi there I was wondering if someone may have a best recommendation for the following requirement I have with regards setting up a third database server for reporting?
    Current Setup
    SQL Server 2012 Enterprise setup at two sites (Site A & Site B).
    Configured to use AlwaysOn Availability groups for HA and DR.
    Installed on Windows 2012 Servers.
    This is all working and failover works fine and no issues. So…
    Requirement
    A third server needs to be added for the purpose of reporting, to be located on another site (Site C) possibly in another domain. This server needs to have a replicated read only copy of the live database from site A or Site B, whichever is in use. The Site
    C reporting database should be as up-to-date to the Site A or Site B database as possible – preferably within a few seconds anyway….
    Solution - What I believe are available to me
    I believe I can use AlwaysOn and create a ReadOnly replica for the Site C. If so do I assume Site C needs to have the Enterprise version of SQL server i.e. to match Site A & Site B?
    Using log shipping which if I am correct means the Site C does not need to be an Enterprise version.
    Any help on the best solution for this would be greatly appreciated.
    Thanks, Steve

    for always on - all nodes should be part of one windows cluster..if there site C is on different domain - I do not think it works.
    Logshipping works --as long as the sql on site C is is same or higher version(sql 2012 or above).  you can only do read only.
    IMHo, if you can make site C in the same domain then, Always is better solution else log shipping
    also, if your database has enterprise level features such as - partitonin, data compression -- you cannot restore the database on lower editions- so you need to have enterprise edition.
    Hope it Helps!!

  • What is the best solution for me to run Microsoft Access on my brand new iMAC?  Assume I'm a casual user.

    What is the best solution for me to run Microsoft Access on my brand new iMAC?  Assume I'm a casual user.
    I am lead to believe by some real smart guys on the Apple site that If I have the Apple Store partition my iMAC and add the full suite of Office products on that partition, I can run the few Access programs I have and need to run.
    Comments encouraged.  Thank you in advance for your consideration and help.

    You would have to install Windows, then install Microsoft Office Professional for Windows on it  To install Windows you will have to choose between Boot Camp (faster, free) and a Virtual Machine (simpler, slower, easier to backup)
    You should try LibreOffice (free), it can open Access files, it may not have all Access's feature set though, worth a try.
    www.libreoffice.org

  • Best Solution for Archiving Table data

    Hi All,
    I have a table with huge data. It is not partitioned table.
    On an average per day 10000 records will be inserted into this table. Now I want to archive(backup)
    every one years data manually and keep in safe location and hence delete those archived rows
    from the table. Whenever required it should be easily imported back to this table. All this happens through
    Application.
    One appraoch in my mind right now, is transferring the data from table to flat file with comma separted,
    and whenever required again importing back to the table from Flat file using external tables concept.
    Can any body suggest what is best solution for this.
    Thanks

    The best solution would be partitioning.
    Any other solution requires DML - running DELETE and INSERT transactions to remove a data set and to add a data set (if need be) again.
    With partitioning this is achieved (in sub-seconds) using DDL by exchanging a partition's contents with that of a table. Which means that after the archived data has been loaded (SQL*Loaded, Import, etc) into a table (and indexes created), that table (with indexes) is "swapped" into the partition table as a partition.

  • What is best solution for backup ?

    Our environment consisted of RAC (2 nodes). we are trying to back up our database using RMAN with NetBackup.
    we also have other different databases need to be backed up.
    In RAC case, what is best solution for backing up the database ?
    As I mentioned above, we are using RMAN for backup our RAC with NetBackup.
    Actually, the RMAN is not simple utility for me.
    Is there any other way to back up the database in our situation without rman.
    I need some advice from all of you.
    Thanks in advance.

    Hi Justin
    There are many possible ways to backup your database. You must decide the one that suits your environment.
    Following is the list of options that you have.
    1. Take Online Backups
    Issue this command to freeze tablespaces
    SQL> ALTER TABLESPACE tblspcname BEGIN BACKUP;
    Copy all the files belonging to this tablespace to your backup location using OS commands.
    Release the tablespace by using this command.
    SQL> ALTER TABLESPACE tblspcname END BACKUP;
    To find the data files belonging to a particular tablespace you can issue this statement
    SQL>SELECT file_name, tablespace_name FROM dba_data_files ORDER BY tablespace_name;
    2. If your db size is not BIG then you can take logical backups. Logical Backups can be FULL or incremental. In 10g you can have filesets to spilit your logical backups in more than one file with specified sizes. (By Logical Backups I mean EXPORT).
    To take export for example issue this command.
    ORACLE_HOME\bin\exp file=fullpath+filename.dmp log=fullpath+logfilename.log FULL=Y userid=system/pwd@dbconnectstring
    To get full list of export parameters type
    ORACLE_HOME\bin\exp help=y
    3. RMAN (Strongly recommended) but you ruled out its possibility so I won't elaborate on that.
    4. COLD BACKUP
    To perform this type of backup you will need to shutdown your database by issuing this command.
    SQL>SHUTDOWN IMMEDIATE;
    (On RAC you will need to shutdown all the instances before copying files to the backup location).
    Use OS copy command to copy files to backup location.
    (This method is not recommended as it will flush your SGA and your client will complain about performance for the first few hours).
    Let me know if you need more details.
    Hopefully this helps.
    Rgds
    Adnan

  • Query for log Parser to get number of hits in a day or week for particular web applications or site collection

    Hi All,
    Want to get the number of hits in a day for a web application with IIS logs. so need to know Query for log Parser to get number hits in a day or week for particular web applications or site collection. Kindly help
    Regards,
    Naveen

    I'm trying to get this from WSS 3.0, Hence using the Log Parser

Maybe you are looking for

  • Issue in Installing Oracle Service Registry 10.1.3.1 on Soa Suite 10.1.3.3

    Hi, I am facing issues while installing OSR 10.1.3.1 on soa suite 10.1.3.3 Below is the log message - Configure Systinet Registry module .. Configuring Registry... [java] [java] ERROR: account.com.systinet.uddi.account.AccountCoreApiImpl - Initializa

  • Download to excel in background

    Hi I want to download data to Excel as a background job. Are there any FM's that can be used for the same. I can not use GUI_DOWNLOAD in this case. I am working on a CRM5.0 system. Any pointers on the same would be really helpful. Regards Avinash

  • Headphones & speaker q on the xfi extreme ga

    i have the evga 680i mobo as well as the creative xfi soundcard. i have been unable so far to get the mic on my headset recognized in windows, but the headphones (i have a sennheiser headset that has a mic and headphones, each with their own stereo c

  • Shockwave Plug in problem

    Hello, I am trying to access a page that contains a game. When trying to naviagate to this page it comes up saying this: "The page "iSketch" has content of MIME type "application/x-director", but you don't have a plug-in installed for this MIME type.

  • Budget control check - error message below 100%

    Dear Experts, I am facing a problem in th budget check, I have the tolerance settings as below: 90% - 1 Warning message 101% - 3 Error message But system is giving me error message even when it reaches 98% itself, its not allowing to create the PO. I