Any 1!!! Help for a generic ecommerce engine

Hi
i am trying to develop an ecommerce engine. was just wondering if its possible to make it server independent i-e can also plug into ASP/IIS Server, Cold fusion etc.

Hi
i am trying to develop an ecommerce engine. was just
wondering if its possible to make it server
independent i-e can also plug into ASP/IIS Server,
Cold fusion etc. Actually, the company I work for has recently released a Java ecommerce solution priced for the mid-market: MerchantSpace.
It is comprised of over 80 components and its J2EE compliant framework makes legacy systems and third party tools easily accessible for integration. It is server independant and has many successful installations on application servers such as IIS, Caucho Resin, and JBoss.
The front end display pages are controlled by JSP making it accessible to most java developers.
Check out the product website and view the documentation: features, DB Schema, class diagram, API and integration manual.
http://www.merchantspace.com

Similar Messages

  • Is any HTML help for ABAP???

    Is any HTML help for ABAP??? Are any HTML help downloads there in anywhere?? if anyone knows let me know.

    Are you asking for help documentation on ABAP?  If so....
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    Regards,
    RIch Heilman

  • CAN ANY body Help for service request conversion

    HOw we can start service request convesion. Breif info please.
    I know that we need to use api. CS_servicerequest_pub.create_servicerequest
    and jtf_task_pub,
    jtf_notes_pub.
    how can i start the base tables and some info about calling these apis. Do i need to call jtf apis also or only need to call service request pub is ok.

    Hi,
    1)You need to start with preparing a mapping between data in your legacy/old system and SR fields in Oracle apps. You may have to default few required fields in Oracle SR if you dont have them in legacy.
    2)Then identify which APIs to be used. This will depend on what SR related objects like notes, tasks, attachments etc. you have to create. You will have to call seperate APIs for each object. CS_servicerequest_pub.create_servicerequest creates only SRs, And not notes , tasks etc..
    3) You may have to create staging tables to import data from your legacy system. Plan and prepare the structure of these tables carefully to import all required information from legacy. Keep in mind the data types of these columns to map columns in Oracle tables. Also have extra columns for record status (new, error, success etc. ) and for error message if any.
    4) Prepare code(package and procedure) to call and run all required APIs to process your data from legacy system available in staging table. You can refer to Oracle documentation for info on APIs. Keep in mind to capture errors and failures due to different reasons.
    5) Register this procedure as program in Oracle apps and run it when data is available in staging table.
    6) You may have to run program multiple times after correcting any error records in each run.
    Hope it helps..
    Regards,
    Mohammed

  • X-Fi: Please your help for figuring out SRC engine prob

    Being in Entertainment Mode, if you choose ASIO output in Foorbar and try to play a Windows sound or any file in 22 kHz, do you get a playback error like this http://img223.imageshack.us/img223/328/capture60nn8.jpg ? [ you can find the Windows sounds in C:\WINDOWS\Media ]

    Thanks for reminding me of the card's specifications. I should have checked that. However, I don't understand your last remark, what does windows' kmixer have to do with what sampling rates the card supports in ASIO? I don't think kmixer is relevant here.
    If you suggest Kernel Streaming for avoiding kmixer's resampling, according to Microsoft kmixer's resampling kicks in only when audio files of different sampling rates meet in the audio stream. I'm under the impression, however, that Creative drivers have taken care of that situation also so as all sample rate conversion to be perfomed in hardware regardless of the output method (Direct Sound, Wave Out or whatever). Isn't that right?
    Another thing, is it necessary to use ASIO in audio applications in order to get real bit accurate playback in audio creation mode (for info on bit accurate playback on X-Fi see http://ask.americas.creative.com/SRVS/CGI-BIN/WEBCGI.EXE?New,Kb=ww_english_add,U={B8F6030-DA4F-D3-94F4-00500463020E},Company={CEAE26D-879-4C00-AC9F-03BC258F7B70},d=3025443648,VARSET=ws:http://us.creative.com,case=9925)?
    It seems so, because, when I use the ASIO plugins in Winamp and Foobar, changing between songs of different sampling rates gives me a pop sound (supposedly indicating a change in the audio engine's sampling rate)and I see the sampling rate change automatically in the control panel from 44kHz to 48kHz in accordance with the sampling rate of the playing file. None of the above happen if I use Wave Out, Direct Sound or Kernel Streaming. This leads me to believe that you don't get bit accurate playback unless you use ASIO.
    Please correct me if I'm wrong.

  • Help for correct generics syntax

    I'm trying to write a generics version of an old non-generics program. But after a few hours trials in this afternoon, I still fails in compile.
    Error message from javac is:
    Library3.java:55: cannot find symbol
    symbol  : constructor SoftReference(BookShelf,java.lang.ref.ReferenceQueue<BookShelfReference>)
    location: class java.lang.ref.SoftReference<BookShelf>
        super(shelf, collectedQueue);
        ^
    1 errorAnd below is the code:
    /* Library3.java
    * from Item 11, Java Pitfalls, M.Daconta et al
    * John Wiley & Sons, 2000
    * trying to adapt to Java Generics feature
    * hiwa, 13 Aug. 2007
    import java.util.Random;
    import java.lang.ref.SoftReference;
    import java.lang.ref.ReferenceQueue;
    class TextPage
      char[] symbols = new char[300];
    class Book
      String      name;
      TextPage    pages[] = new TextPage[100];
      public Book ()
        for (int i = 0; i < pages.length; i++)
          pages[i] = new TextPage();
    class BookShelf
      String subject;
      Book[] books = new Book[100];
      public BookShelf (String subject)
        this.subject = subject;
        for (int i = 0; i < books.length; i++)
          books[i] = new Book();
        if (subject.equals("Sports"))
          books[0].name = "History of Ping Pong";
    class BookShelfReference extends SoftReference<BookShelf>
      String subject;
      //?? what should be the correct syntax here?
      static ReferenceQueue<BookShelfReference> collectedQueue
        = new ReferenceQueue<BookShelfReference>();
      public BookShelfReference (BookShelf shelf)
        //?? and here?
        super(shelf, collectedQueue);
        this.subject = shelf.subject;
    class GarbageMonitor extends Thread
      ReferenceQueue queue;
      public GarbageMonitor (ReferenceQueue queue)
        this.queue = queue;
      public void run ()
        while (true)
          try
            BookShelfReference shelfRef =
              (BookShelfReference) queue.remove(5000);
            System.out.println("Monitor: Shelf subject '" +
                shelfRef.subject + "' was collected.");
          catch (Exception e)
          {   break;  }
    public class Library3
      public static void main (String args[])
        String subjects[] = { "Sports", "New Age", "Religion",
          "Sci-Fi", "Romance", "Do-it-yourself",
          "Cooking", "Gardening", "Travel",
          "Mystery", "Fantasy", "Computers",
          "Business", "Young readers", "JW Books" };
        GarbageMonitor monitor =
          new GarbageMonitor(BookShelfReference.collectedQueue);
        monitor.start();
        BookShelfReference[] shelves = new BookShelfReference[25];
        int checkIndex = 10 + getRandomIndex(15);
        for (int i = 0; i < shelves.length; i++)
          String subject = subjects[getRandomIndex(subjects.length)];
          System.out.println("Creating bookshelf: " + (i + 1) +
              ", subject: " + subject);
          // Keep track of shelves as SoftReference objects
          shelves[i] = new BookShelfReference(new BookShelf(subject));
          // at a random interval check to see where the last
          //  "Sports" shelf was
          if (i == checkIndex)
            System.out.println("Checking for Sports...");
            for (int j = i; j >= 0; j--)
              // get BookShelf reference from SoftReference
              BookShelf shelf = (BookShelf)shelves[j].get();
              if (shelf != null)
                if (shelf.subject.equals("Sports"))
                  System.out.println();
                  System.out.println("Shelf " + (j + 1) +
                      " is Sports");
                  System.out.println("First book is: " +
                      shelf.books[0].name);
                  System.out.println();
                  break;
                else
                  System.out.println("No match. " +
                      "Subject was: " + shelf.subject);
      private static Random rnd = new Random(System.currentTimeMillis());
      private static int getRandomIndex (int range)
        return ((Math.abs(rnd.nextInt())) % range);
    }

    About ten minutes after posting previous post, I found the correct syntax by chance:
    The previous code
      static ReferenceQueue<BookShelfReference> collectedQueue
        = new ReferenceQueue<BookShelfReference>();should be:
      static ReferenceQueue<BookShelf> collectedQueue
        = new ReferenceQueue<BookShelf>();But I still don't understand why the content of the referencequeue is specified as a referent type, not a reference type.

  • Reporting a bug benefits Adobe as it should, but there isn't any actual help for customers.

    After numerous attempts to get through to support, I actually ftp'd a Muse file to Muse support to demonstrate the problem. After testing herself she says:: "This is a bug" It came with a Muse update. Software releases are clearly not beta tested. You the customer are the beta tester. In this case my websites were all ruined during the conversion process. Functions such as the bevel effect, fail with the update, and a master page does not transfer acdurately to multiple pages within the site. This is major error. I found a work around, but I had to rebuild each and every page of each and every website. Thank you Adobe. What's ironic is I paid them to do this to my business. I paid them to frustrate my clients.
    See response below.
    From: [email protected]
    To: [email protected]
    Hi Paul,
    Regarding our conversation, the issue has been lodged as a bug with bug # 3942664. The dev teams are testing it.
    As of now, you may have to use the work around to copy and paste in place. I apologize for this inconvenience.
    Regards,
    Neha

    Not really a correct answer. If the software is tested very well, then why would you want me to consider joining Muse Prerelease? This would be a time consuming job with no pay correct? Not ever free Creative Cloud? Is that not so?
    Trying to follow your logic here. Either you need more help to test, because testing isn't good enough or everything is just fine and new release don't harm customer's businesses. It's one or the other.
    Testing isn't good enough and "very well" is a poor and incorrect description. Don't you think?
    Paul Russell

  • Does any one help for SDO_WITHIN_DISTANCE query?

    I tried to use SDO_WITHIN_DISTANCE to find all records that fall in 5 mile radius from the location I searched. The results return the records of Longitude + 5 instead of 5 mile of the location.
    My query was:
    SELECT *
    FROM BH_ORDER_T
    WHERE SDO_WITHIN_DISTANCE(od_pair_geometry,mdsys.SDO_GEOMETRY(2001, 8307, mdsys.SDO_POINT_TYPE(-81.4373367,41.3875542,null), null,null),'DISTANCE=5 UNIT=MILE') = 'TRUE'
    This location is SOLON City Hall, SOLON, OH
    The output results are all records that od_pair_geometry column Longitude between -81 and - 84. For example:
    Sandusky OH (2002,8307,Null,(1,2,1),(-75.46,41.24,-82.71,41.45))
    Elyria OH (2002,8307,Null,(1,2,1),(-75.46,41.24,-82.12,41.38))
    Cleveland OH (2002,8307,Null,(1,2,1),(0,0,-81.7436,41.4336))
    What was wrong with my Query?
    Thanks in advance

    Hi,
    Can you describe what are you doing.
    HSQL demo environment have been startted and when you
    run a job, it's closed DB?
    Regards,
    MAI wanna do data integration from Oracle to HSQLDB, but when connect to hsqldb, it had something wrong just like i had described.
    I fixed it by using demo environment of hsqldb 1.7 instead of 1.8.0, it runs ok.
    but still don't know why v1.8.0 is wrong.

  • I can't get FireFTP to connect today, does anyone have any advice/help for me? On a Mac. Been using it for a year no prob.

    Every time I hit "connect", it says: unable to make a connection. Please try again.

    [discussion moved to Installing Flash Player forum]

  • Can't get any decent help for a simple question...

    I would like to buy albums and music from Armada Music on Itunes. But they are only found in european stores. I was wondering if it possible to still buy them through Itunes even though they are on a foreign?

    No.
    You can ONLY buy from the itunes store in your country of residence.

  • System requiremen​t for Labview run-time engine 8.6

    Hello
    is there any system requirements for LabVIEW Run-time engine 8.6? for example, same system requirements for LabVIEW 8.6? Internet Explorer 5 is fine? or Internet Explorer 6.0 or higher is fine? Does it work for Firefox on an Athena Linux mechine?
    Thanks
    Cynitha
    Solved!
    Go to Solution.

    The system requirements can be found in the Release Notes. Pages 2 and 3 indicate the specific requirements for the Run-Time Engine per platform.

  • F4 Help For the Custom Fields

    Hi Experts
    I have added few custom fields in custom includes (INCL_EEW* )  
    Those fields are like (LAND1, BLAND) from the T005S.
    I have used the same Data element for these fields.
    But I didnu2019t get any F4 help for these fields in the screen?
    These fields having the Value table for these elements?
    Do I need to do anything, to get the F4 help for these fields?
    Can anybody suggest me?
    Thank you,
    Bharathi

    Hi Baarti,
    Go through the following links,
    F4 help and drop down menu to Customer fields in Manage business partner
    Supplier Relationship Management (SAP SRM)
    Re: F4 for customer table fields
    Hope this helps.
    Thanks,
    Pradeep

  • Search help for currency field

    I am not able any search help for currency field , CUKY of lenght 5
    If anyone knows it please tell

    You can use the data element WAERS / refer to field BKPF-WAERS.  The search help will show up automatically as the field BKPF-WAERS, has check table TCURC.
    Also see the "Origin of Input help" column in "Entry help/ check" tab in SE11 for table BKPF, it says - "Input help implemented with check table".
    For example in tcode FB01, the currency field on the selection screen is BKPF-WAERS. The search help is displayed
    Hope it helps

  • Search help for Material long text ?

    Hello,
    A given material code MATNR is linked a material short text ( MAKT_MAKTG for example) which is on max 40 characters.
    Where can i maintain the material long text ( around 100 characters) which is available in a search help in standard SAP ?
    Note : in the material master data, i know the view Purchase order text, but is there any search help for this ?
    Or do you have to develop an own search help ?
    Thank you in advance,
    Isabelle

    Thank you Jürgen,
    OK, i understand that a search help on long text is not a good idea
    Nevertheless, 40 characters to name a material is too short for our users. Do you know any other text field that we can use ? because i imagine it is not possible to extend MAKTG to more that 40 char.
    Our issue is that we upload our material data from some manufacturer material file, and their material description (even the one called " short text" is often more than 40 char.
    Do you see any possible solution ?
    Thank you,
    Isabelle

  • Search Help For Position

    Hi ,
      I am looking for search help for Positio field.  But I have not find any search help for the positon in SRM.  Please let me know if you knows.
    Regards,
    Ganesh

    Hi,
    You can use any of these search helps:
    HRBAS00OBJID
    HRBAS00OBJID1
    HRBAS00OBJID1RC
    HRBAS00OBJID2
    HRBAS00OBJID3
    HRBAS00OBJID4
    BR,
    Disha.

  • Search help for files

    Hello, is there any search help for searching files in local pc?
    I need it for a dynpro.
    Any help?
    Thanks!

    Hi ,
    Try this way...
    PROCESS ON VALUE-REQUEST.
    FIELD <DYNPRO-FIELDNAME>  MODULE F4_filename.
    MODULE F4_filename INPUT.
    * Drop down to retrieve File Path
      DATA: w_lcnt      TYPE i,
            t_lfilename TYPE filetable,
            w_lfilename LIKE LINE OF t_lfilename.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = 'Find File Path'
        CHANGING
          file_table              = t_lfilename
          rc                      = w_lcnt
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc <> 0.
      ENDIF.
      READ TABLE t_lfilename INTO w_lfilename INDEX 1.
      IF sy-subrc NE 0.
        CLEAR w_lfilename.
      ENDIF.
      <DYNPRO-FIELDNAME> = w_lfilename-filename.
    ENDMODULE.
    regards,
    Prabhudas

Maybe you are looking for

  • How to find out what is slowing down your wireless speed

    The first thing you need to do is when setting up your wireless internet is do it right from the beginning. For starters unplug and remove the batteries from all the cordless phones. If you have a wireless door bell or a repeater shut it off and unpl

  • Define logical Key on Logical Dimension Table

    It's recommended to define a logical key for any logical dimension table - in 10g there was a function on the right mouse button, as far as I remember - but in 11g there is no such functionality ? the foreign key can be added by "green plus" button,

  • Error After sharing work book

    Hello All, I modifed a report by adding 2 news columns from a folder(which is based on table2). I am able to genrate the work book successfully. So i shared the same work to another user , but while user is running the report he came across an error

  • Where can I find cheap iPad Mini cases?

    I recently got an iPad Mini and a case from Nordstorm. It was the only iPad Mini case that didn't cost over $50. Unfortunately, the bargain wasn't a bargain for long. Along the sides of the case, the leather started to peel off and I am unable to rea

  • How can I change the title I see on my application

    I'm aware it may seem a silly question, but I don't know how to change the title I see on my application. I don't mean the name of the application, but the one appears above on the page. If I change simply the name of the application this dosn't chan