Sample Web Interaction code

hi sun community,
I just want to interact with my own website through j2me. Is it possible to do that ?
if yes, then what are the steps to do that and what are the APIs which will be used, and the major question is how do i find the different APIs available..
Please help me asap !
thanks in advance :)

Yes the is possible.
First define the contract between your mobile application and your site. You will need to consider the protocol including authentication and authorization, efficiency, etc.
Please see the Java ME section of this site. Sun offers tutorials on midlet/server communication.

Similar Messages

  • Can i have a sample BSP INTERACTIVE Reports with step by step.

    Hi Friends,
    Can i have a sample BSP INTERACTIVE Reports with step by step.
    Moosa

    Hello,
    Please find the sample Code below.
    FIRST PAGE
    Layout Code.
    <htmlb:label for="emp" text="Employee id" width="10"/>
          <htmlb:inputField id="emp"  value="<%= w_input1%>"/>
          <p>
    <htmlb:label for="Employee Details"/>
           <htmlb:button   id = 'get'
                           text = 'Display'
                           on Click = 'OnInput Processing' />   <p>
    <h1>Employee Details</h1>
    <htmlb:tableView id="Employee"
                     table="<%= ZTABLE%>"  <- Give the table name
                     selectionMode = "lineEdit"
                     design="ALTERNATING">
    ONINITILIZATION EVENT.
    data:
      fs_yhtable like line of TABLE.
        select * from yhtable into table ZTABLE.
    ONINPUT PROCESSING CODE:
    * event handler for checking and processing user input and
    * for defining navigation
    class cl_htmlb_manager definition load.
    case event_id.
      when cl_htmlb_manager=>event_id.
      data: event  type ref to if_htmlb_data,
            fs_yhtable like line of t_yh1205,
            selrow type ref to cl_htmlb_tableview.
      event = cl_htmlb_manager=>get_event_ex( request ).
      selrow ?= cl_htmlb_manager=>get_data( request = request
                                            name    = 'tableView'
                                            id      = 'Employee' ).
      data: tv_data type ref to cl_htmlb_event_tableview,
             t_tab type int4_table.
    *        tv_data1 type ref to cl_htmlb_event_tableview.
      tv_data = selrow->data.
       t_tab = selrow->selectedrowindextable.
      if  event is not initial
      and event->event_name = 'tableView'.
        w_int = tv_data->rowselection.
        navigation->set_parameter( 'Employee' ).
        navigation->set_parameter( name = 'w_int'
                                   value = w_int ).
        navigation->set_parameter( name = 'table'
                                   value = table ).
        navigation->goto_page( 'second.htm' ).
      endif.
    endcase.
    SECOND PAGE CODE:
    LAYOUT CODE:-
    <htmlb:content design="design2003">
      <htmlb:page title = "Employee Details">
        <htmlb:form>
    <h1>Employee Details</h1>
    <htmlb:tableView id="Employee"
                     table="<%= t_yh1205%>"
                     selectionMode = "lineEdit"
                     design="ALTERNATING">
    </htmlb:tableView>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    Hope this is helpful.Let me know if you need any more help.
    Thanks
    kalyan

  • Captivate 7 Web Interaction and HTML5 (Mobile Devices)

    Hi All
    Does anyone know if the Web Interaction widget introduced in Captivate 7 will work in HTML5?
    I try testing it in HTML5 from Captivate, and it does not work. Only the border and the loading animation show up, the website never actually loads.
    I read in another post that you may need to upload it to a web server to work. If this is true, will it work if I publish it to an app on mobile devices? I use phonegap to push Captivate projects onto mobile devices, and currently it is not working when testing on iOS devices. Does anyone know what the problem is?
    Should I look at this instead? http://captivatedev.com/2012/08/07/adobe-captivate-6-x-widget-web-page-widget/
    Or will I have the same problems?
    Cheers
    Lewis Carey

    Here is the reply (in bold) I got from Suresh Jayaraman from Adobe when I logged this as a bug.
    "The issue you are facing has nothing to do with SCORM setting. Probably you might have heard about Click Jacking , One of the ways web sites prevent themselves from this attack is by not displaying when loaded in a Frame or iFrame. They achieve this by setting the X-Frame options. They website you were trying to load in Web object was Adobe forums which has this protection and it is the case with some other websites like Google.com, facebook.com as well. As Web object interaction on run time loads the website in an iFrame such protected websites when loaded doesn’t show up."
    "I have attached a test file which would help you to determine whether the website you are loading is Click Jacking protected or not. Change the website address and launch the page from a web server and if it loads all is well, it would load in your Web Object interaction as well. Now enable reporting and try the same page from SCORM.com and It should display the page."
    The test file he is referring to is a html file. Since I cannot attach the file here, I am copy-pasting the source code:
    <html>
       <head>
         <title>Clickjack test page</title>
       </head>
       <body>
         <iframe src="http://www.google.com" width="500" height="500"></iframe>
       </body>
    </html>
    To test, first I changed the website address in the above code to that of Adobe forums. When I had inserted this site in my Web Object interaction, this site failed to show up (see my previous posts). When I launched this test file shared by Suresh from a webserver, the result was same... the site did not open.
    Next, I changed the website address to http://infosemantics.com.au. This site worked in Web Object Interaction and it worked here as well.
    I did not test it in SCORM Cloud as I was convinced by the reason Suresh provided. (I hope I am not wrong.)
    Sreekanth

  • A sample web.xml

    a sample web.xml
    <!DOCTYPE web-app PUBLIC
    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    // bla blahi use this type of web.xml .
    my problem is to see the DTD "http://java.sun.com/dtd/web-app_2_3.dtd"
    why it is "http://java.sun......." ??
    does it read the DTD via internet ONLINE when i run my application ?
    when i put this same web application in a no-internet connected machine, the web application works.
    why then it is "http://java.sun......." ?
    can i download that DTD in my hard disk and put "file:///dtd_location_in_my_drive" ?

    You are definitely a java guru . Thank you, but I am still a novice.
    BTW, you have told
    I never encountered the case when it is not.1) r u sure all know professional servers keeps a
    copy of that DTD .
    if the server is not registered and dont have a copy
    , then what you would do ? Any J2EE compliant application server should have this. I am not sure if this is mentioned in the specifications, but this is the way it goes. I have seen it in Tomcat, JBoss, Sun One, Weblogic and Websphere. I think this sample is representative enough for the family of J2EE application servers.
    Logically, someone must have thought of the fact that people cannot be online all the time and they need to validate their deployment descriptors. The best way to achieve this is to provide a local copy.
    because in that case server is going to throw an
    exception as soon as you are going to start the
    e server .
    How do you solve this problem I don't know, honestly. Maybe I would copy it somewhere on the local drive and write the code like the application servers do.
    will you copy the DTD file from tomcat and put it in
    your WEB-INF directory and metion this path in your
    web.xml ? In the worst case, yes. But that's irrelevant. If something like this is happening to the application server, it is better to find a new one. :)
    in any case, i am surprised to see that i am not been
    able to download this DTD fle from Sun website. why?
    It is alwasy better to download this stuff and keep
    it in the hard disk and specify the path in the
    web.xml . i hope, this will resolve all the problems
    of whether the server is registered or not.As I mentioned, you need not bother about that unless you are a fervent advocate of Murphy's law.
    unfortunately, i am not been able to download this
    stuff from Sun !Just paste that URL in the browser when you have an internet connection, you will be able to get the DTD.

  • Web Interaction widget not working.

    I am having an issue with the "Web Interaction" widget. When I enter a link, the link shows a 404 error and does not display. however I have tested this link in multiple browsers and operating systems and have verified it to work in all of them. Any reason why it isn't showing in the widget?

    Hi,
    Regarding Web Analysis- I believe- It's a problem of JRE.
    - Just remove/uninstall the JRE from your Currently installed Programs. You may want to reboot the m/c
    - Open Web Analysis Studio in the Web browser. Now, since it can't find JRE, it'll set up the relevant JRE for you & you may continue using Web Analysis.
    - Please note- Unless you've changed to a different one during configuration, Web Analysis operates on 16000 port.
    Check the following regarding Workspace-
    - Your service may be down, thus, throwing Network error
    - You may've to re-configure Workspace. Start the service & wait for few mins. before opening Workspace.
    - Natesh

  • Getting an error while building a sample web service

    Hi,
    I am beginner in web services and started working on a sample application in a web service tutorial.
    Build is failing in build.xml file while building sample web service using ant tool.
    antBuildfile: build.xml
    clean:
    setup:
    [mkdir] Created dir: /tmp/output/WEB-INF/classes
    [mkdir] Created dir: /tmp/client_classes
    compile.server:
    [javac] Compiling 1 source file to /tmp/output/WEB-INF/classes
    webservice.build:
    webss.build:
    BUILD FAILED
    Z:/JAVA-COBOL/sample1/tutorial/sample1/build.xml:43: The following error occurred while executing this line:
    Z:/JAVA-COBOL/sample1/tutorial/sample1/build-webss.xml:10: Problem: failed to create task or type source2wsdd*_
    Cause: The name is undefined.
    Action: Check the spelling.
    Action: Check that any custom tasks/types have been declared.
    Action: Check that any <presetdef>/<macrodef> declarations have taken place.
    Can anyone look into this and let me know if you have any idea on this?
    Thanks,
    SRoop.
    Edited by: SRoop on Jun 20, 2008 9:11 AM
    Edited by: SRoop on Jun 20, 2008 9:14 AM
    Edited by: SRoop on Jun 21, 2008 5:51 AM

    Hi,
    I am beginner in web services and started working on a sample application in a web service tutorial.
    Build is failing in build.xml file while building sample web service using ant tool.
    antBuildfile: build.xml
    clean:
    setup:
    [mkdir] Created dir: /tmp/output/WEB-INF/classes
    [mkdir] Created dir: /tmp/client_classes
    compile.server:
    [javac] Compiling 1 source file to /tmp/output/WEB-INF/classes
    webservice.build:
    webss.build:
    BUILD FAILED
    Z:/JAVA-COBOL/sample1/tutorial/sample1/build.xml:43: The following error occurred while executing this line:
    Z:/JAVA-COBOL/sample1/tutorial/sample1/build-webss.xml:10: Problem: failed to create task or type source2wsdd*_
    Cause: The name is undefined.
    Action: Check the spelling.
    Action: Check that any custom tasks/types have been declared.
    Action: Check that any <presetdef>/<macrodef> declarations have taken place.
    Can anyone look into this and let me know if you have any idea on this?
    Thanks,
    SRoop.
    Edited by: SRoop on Jun 20, 2008 9:11 AM
    Edited by: SRoop on Jun 20, 2008 9:14 AM
    Edited by: SRoop on Jun 21, 2008 5:51 AM

  • Web interaction in local HTML5 publish

    Hi,
    I have a bit of a hard time to get web interaction working in local html5 publish.
    We have embedded a web page interaction widget in our presentation.
    The interaction works fine in LMS, but we need to deliver the content on CD, so the presentation has to run offline.
    I have found this article:
    http://forums.adobe.com/message/5629903#5629903
    which suggests that it could work in firefox, but that is unacceptable, since ff is not supported browser and a lot of other things we used doesn't work there (the only browser we can use is chrome).
    According to this thread:
    http://forums.adobe.com/message/5912649#5912649#5912649
    it might have something to do with security settings. But it is only a simple web page with no security measurements taken.
    Although html5 publish is highly preferable, we tried exe and swf publish as well. No luck there either.
    Can someone, please, help me with this problem?
    Thank you

    I think your issue is definitely going to be related to browser security.
    Take a look at this article related to Flash security:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/how-to-set-up-flash-global -security
    Although HTML5 is not using Flash the issue is basically the same.  Sandboxing of the content.  Anything that the browser does not regard as belonging to the same sandbox is going to be blocked.
    Your definition of "security" and the browser's definition of security are likely to be very different.  But the result will be the same (it won't work) unless you deliver your HTML5 content from a web server where the cross domain security issues can be eliminated.

  • Web Dynpro Code Wizard doesn't have context tab

    When doing web dynpro development and when clicking the Web Dynpro Code Wizard, I can't see the context tab.  It looks like this: [http://twitpic.com/z2q92].  In other SAP systems I have seen the wizard look like this, where it has two tabs one of which is the context tab: [http://twitpic.com/z2qgh].  As the context tab is very useful, I would like to know how to get it to display. 
    I have searched in the SE80 settings and can't find any option related to this.  I also searched the forums here and could not find any related posts.  We're using the 700 release level 13 (as seen in this screenshot: [http://twitpic.com/z2qkf]).  Is there something I can do to make this tab appear?  If we need to implement a note or a newer support pack, which one would it be?

    As you stated the system without the context tab is NetWeaver 7.0.  The context tab and the extra wizards were new features in NetWeaver 7.0 Enhancement Package 1.  Your system would have to be updated to this NetWeaver Enhancement Package level in order to have this functionality.

  • MSS Web Dynpro code modification

    Hi,
    We are using XSS component on top of ECC 5.0. I need to make a small change to the standard Web Dynpro code delivered by SAP. Is there is an alternate way to modify the code without implementing JDI? Your thoughts are welcome...
    Regards,
    GN

    Hi Raju,
    Could you please gice me pointers on how to go about modifying the standard SAP ESS/MSS Web Dynpro applications?
    Is there any documentation for doing the same?
    Thanks and Regards
    Paddie

  • Web Part specific DOM Manipulation. Two identical Script Editor Web Part code blocks.

    We have a script editor web part with javascript that references some jquery libraries.  The code creates web part properties and hides  DIV tag in the web part based on some conditions.  It works great until I try to place the same exact
    web part / code block on the same page twice. The way we are rolling this out we don' t users messing the code and we want the WP properties UI to be identical on both Web Parts.
    Given all this.. is it possible with jquery code to perform Web Part specific DOM manipulation without any conflict with other similar Web Parts and Script editor code blocks on the page?  Possible to dynamically change DIV Tag IDs, Jquery Variables
    and WP Properties to have the unique web part GUID?
    Possible?  Any ideas would be appreciated.
    demo of issue here:
    http://screencast-o-matic.com/watch/coeUlneNT6
    Code in question:

    Hi,
    I suggest you debug your code using IE F12 developer tools. Based on your description, you can try to add some conditions base on the web part ID.
    Or you can share your full code for further research.
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to write a Web service Handler without modifying the Web service code

    Hi,
    How can I write a SOAPHandler without modifying the Web service code. I want to add a generic handler which will take care of SOAPHeader for all the webmethods. To add a handler is it necessary to modify the web service code?

    You will find answer in [implementing_handlers_using_jaxws_2|http://blogs.sun.com/sdimilla/entry/implementing_handlers_using_jaxws_2]

  • Web Server code !!

    hi friends !!
    can any1 provide a simple http web server code which also acts as a servlet container. it should also access the form data.
    pls help me...i am in urgent need !!!
    with regards,
    n@v

    Stupid dolt! Ever heard of Tomcat???

  • PL/SQL website with sample PL/SQL codes from real life examples

    Hi All,
    Can any one guide me and suggest me on the website where they post sample PL/SQL code. Thanks much in advance.
    AL

    Something like this ->
    UPDATE PRODUCT e
    set e.new_id = (
                      SELECT distinct i.id||i.code
                      FROM item i, product pi
                      WHERE i.ccode = '12'
                      AND i.scode = 'ACTIVE'
                      AND i.id IS NOT NULL
                      AND pi.id = i.id
                      AND i.id IN (
                                      SELECT DISTINCT ri.item_id
                                      FROM category ri
                                      WHERE ri.category_code = 'RRR'
                      AND pi.id = e.id
    WHERE e.new_id IS NULL;N.B.: Not tested...
    Please post your table structure. Otherwise it is very difficult to find out the exact reason.
    Regards.
    Satyaki De.

  • Open Web Server code has been updated

    This is to announce that [Open Web Server|http://wikis.sun.com/display/wsFOSS/Open+Web+Server] code has been updated. It has all relevant bug fixes that went into Sun Java System Web Server 7.0 update 4 and 5 releases.

    Arvind_Srinivasan wrote:
    Merging the changes that rcrit and river tarnell contributed is in the plan.
    [For River Tarnell's changes|http://loreley.flyingparchment.org.uk/pages/ows], we do not have IPS repository for HP-UX. So how do I make defines*.mk? Where should I get components from and what should be the default location of those?
    The following diffs look ok.
    diff -cr webserver/src/server/plugins/fastcgi/Makefile webserver-old/src/server/plugins/fastcgi/Makefile
    *** webserver/src/server/plugins/fastcgi/Makefile     Tue Feb 17 08:10:44 2009
    --- webserver-old/src/server/plugins/fastcgi/Makefile     Mon Feb 16 13:19:21 2009
    *** 50,55 ****
    --- 50,63 ----
      LOCAL_LIBDIRS+=../../libserverxml/$(OBJDIR)
      LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      LOCAL_LIBDIRS+=../../../support/support/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
      DLL_TARGET=fastcgi
      DLL_OBJS=errortypes util fastcgii18n serverconfig fcgirequest fcgiparser serverchannel
    diff -cr webserver/src/server/plugins/htaccess/Makefile webserver-old/src/server/plugins/htaccess/Makefile
    *** webserver/src/server/plugins/htaccess/Makefile     Tue Feb 17 08:10:45 2009
    --- webserver-old/src/server/plugins/htaccess/Makefile     Mon Feb 16 13:18:22 2009
    *** 43,48 ****
    --- 43,57 ----
      LOCAL_LIBDIRS+=../../libcrypt/$(OBJDIR)
      LOCAL_LIBDIRS+= ../../webservd/$(OBJDIR)
      LOCAL_LIBDIRS+= ../../../support/support/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      DLL_TARGET=htaccess
      DLL_OBJS=http_access http_auth http_config http_register util main list
    diff -cr webserver/src/server/plugins/shtml/Makefile webserver-old/src/server/plugins/shtml/Makefile
    *** webserver/src/server/plugins/shtml/Makefile     Tue Feb 17 08:10:46 2009
    --- webserver-old/src/server/plugins/shtml/Makefile     Mon Feb 16 13:17:29 2009
    *** 47,52 ****
    --- 47,62 ----
      DLL_LIBS+=$(DAEMON_DLL)
      LOCAL_LIBDIRS+=../../webservd/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/support/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      DLL_NONPARSED_OBJS=../../shtml/$(OBJDIR)/ShtmlPlugin.$(OBJ)
      SHIP_PUBLIC_DYNAMIC_LIBRARIES=$(DLL_TARGET)
    $diff -wr webserver/templates/Makefile webserver-old/templates/Makefile
    75,77d74
    < ifeq ($(OS_ARCH), HP-UX)
    < WS_SERVER_TEMPDIR=$(shell mktemp -d /tmp -p $(WS_INSTANCE_NAME)-)
    < else
    79d75
    < endif

  • Web Dynpro Code Wizard - code patterns

    Hello,
    the code patterns that are generated by the very helpful Web Dynpro Code wizard seem to be a little inconsistent in their syntax structuring.
    If I were to ask the wizard to read me a context node - I would get something like (some bits removed for brevity):
    data lo_nd_result type ref to if_wd_context_node.
      data lo_el_result type ref to if_wd_context_element.
      data ls_result type wd_this->element_result.
    * navigate from <CONTEXT> to <RESULT> via lead selection
      lo_nd_result = wd_context->get_child_node( name = wd_this->wdctx_result ).
    * get element via lead selection
      lo_el_emp_search_result = lo_nd_emp_search_result->get_element( ).
    * get all declared attributes
      lo_el_emp_search_result->get_static_attributes(
        importing
          static_attributes = ls_emp_search_result ).
    Yet if I were to ask the wizard to generate a message I would get:
    *  get message manager
    data lo_api_controller     type ref to if_wd_controller.
    data lo_message_manager    type ref to if_wd_message_manager.
    lo_api_controller ?= wd_this->wd_get_api( ).
    call method lo_api_controller->get_message_manager
       receiving
         message_manager = lo_message_manager
    *  report message
    call method lo_message_manager->report_t100_message
       exporting
         msgid                     =
         msgno                     =
         msgty                     =
    *     p1                        =
    *     p2                        =
    *     p3                        =
    *     p4                        =
    *     msg_user_data             =
    *     is_permanent              = ABAP_FALSE
    *     scope_permanent_msg       = CO_MSG_SCOPE_CONTROLLER
    *     view                      =
    *     show_as_popup             =
    *     controller_permanent_msg  =
    *     msg_index                 =
    *     cancel_navigation         =
    *     enable_message_navigation =
       receiving
         message_id                =
    Edited by: Thomas Jung on Apr 27, 2010 8:56 AM

    post  split to avoid silly size/formatting limits
    Ok - both work - but one is using the:     
    result = class_ref->methodname( parameters = paramvalue )
    and one is using 
    call method class_ref->methodname
                                      exporting parameters = paramvalue
                                    receiving result = result.
    As I often have to review code written by others, I encourage them to use these wizards - it helps speed code and prevents simple mistakes.  But code that contains multiple different syntax structure approaches is harder to read (albeit only slightly), moreover - it looks sloppy.
    But why are they not consistent in their syntax structure? (one could also argue why do we have multiple syntax structures for the same operation - but that's a different discussion).
    Is there some way customers can update these structures to match with their own internal coding standards - or something we can change so that they go one way or another?
    I look forward to other's thoughts on the same topic.
    Cheers,
    Chris

Maybe you are looking for

  • Printing problem for elements 10 in windows 8

    I just bought a new computer with windows 8..My old computer was a windows XP. I reinstalled the disc .Everything works well until I wanted to PRINT..Completely different, can not change paper type, paper size, no print management etc.Is there someti

  • I have a problem when I updated CS6:

    hi, I have a problem when I updated CS6: Extension Manager 6.0.5 Update Installation failed. Error Code: U44M1P7 Adobe Photoshop 13.0.5 Done with Errors. Error Code: U44M1P6 What is it? Thx Message was edited by: PhotoPlusMore

  • Cfqueryparam problem

    While cleaning up some sql injection problems, I found I had to rewrite how the inserts were working. I do not know in advance what fields need to be populated for inserts so I mad a generic function to make my inserts. <cffunction name="insertIntoTa

  • Picklist printing from Sales Order screen with Crystal Report

    When attempting to print a Sales Order, we get a dialog box that allows us to choose either Sales Order or Picklist.  Prior to moving to a Crystal Report based report, this dialog box would appear each and every time we tried to print the Sales Order

  • Changes to Broadband Services - Billing Question

    "Monthly usage limit – If you want to use more than the monthly usage allowance included in your broadband package, from 1 November 2010 additional usage will be charged at 5GB for £5 (instead of 1GB for £1)." Does this mean that if you only go a lit