Modify MSS with version 60.1.18  ( JSP Dyn Page Concept)

Hi All,
We are working with MSS Business package.Our requirement is to display the custom fields data(infotype P0006) in Emergency contact details in the employee profile details.We were able to track the par file from the business package.
It is com.sap.pct.hcm.eeprofileemergencycontact
Also SAP has not given Source code to modify, can we use de compilers to get the code and modify it as per the requirement.
What needs to be done by us to achieve this.
It is using JCO to connect to SAP.
It is calling the bapi HRWPC_RFC_ADDRESS_GETLIST.
Now if we require those custom fields I think I need to copy the code of the SAP FM and need to change it.And also observed that Class names , data stucture names are hardcoded in the code.
For example Hrwpc_S_AddressType is one of the class used.
How is SAP creating these class files. What I guess there must be standard way to generate the required class files when I need to call a FM in SAP.
Can any one let me know the way to achieve this requirement.
Regards,
ND.

Hello Roy,
Did you create two aliases for the R3 system named "SAP_R3_HumanResources" and "SAP_R3_Finanacials".
Just confirm the names (case sensitive)
Hope this helps..
Pradeep

Similar Messages

  • Where to mention the IP address in a  JSP dyn page

    Hi ,
    I am creating a mail sending system with Javamail.
    Created the JSP dyn page,
    wrote the event handler in the java file. and all.
    now I have to mention the IP address of the SMTP server.
    where should I do this....
    inside the event handler itself?
    Thanks in advance.

    Hi
    The button tag in the jsp looks like this
    <hbj:button
            id="sendEmail"
            text="sendEmail"
            width="125px"
            tooltip="Click here to send mail"
            onClick="sendEmail"
            disabled="false"
            design="STANDARD"
            />
    The function to handle the button eventing occurs in the dynpage  . The function looks like
    public void sendEmail (Event event) { ..coding.. }
    Now when the button is clicked, the control is transferred to this event handler sendEmail and the code with init starts executed.
    Hope it is clear...
    Regards,
    Ganesh N

  • Jsp dyn page open form results in new window

    Hi everybody,
    I have a problem dispaying results in new window.
    My portal component is a dyn page that dispay several jsp pages based on a integer switch parameter checked in the
    doProcessBeforeOutput method.
    One page is a form with a button that call onSearch custom method inside my component; this method process the request,
    fill the bean and set the integer switch that doProcessBeforeOutput check then get the right jsp.
    All works fine but I want to display the onSearch method results in a new window.
    What I have to do?
    Thanks,
    Andrea

    Hi Andrea,
         I am also facing the same issue.
    Were you able to call the component method from the JavaScript code.
    I have to display the results in a new page.
    Will all the methods like doProcessBeforeOutput() be executed when we traverse after the search button is clicked ?
    Thanks in advance,
    Brian.
    Edited by: Brian Fernandes on Mar 30, 2010 12:34 PM

  • Reading R3 table in JSP Dyn Page...URGENT

    Hi All,
    I have created an JSP Dynpage Application after reading this thread:
    <a href="https://www.sdn.sap.com/irj/sdn/thread?messageID=3417619#3417619">https://www.sdn.sap.com/irj/sdn/thread?messageID=3417619#3417619</a>
    <b>My PortalApp.xml file is:</b>
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="InteractiveList">
          <component-config>
            <property name="ClassName" value="com.abb.InteractiveList"/>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/InteractiveList.jsp"/>
          </component-config>
          <component-profile>
                <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    My InteractiveList.java file contains:
    package com.amit;
    import java.util.Vector;
    import com.sap.engine.lib.xml.signature.Data;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.htmlb.table.DefaultTableViewModel;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    public class InteractiveList extends PageProcessorComponent {
      public DynPage getPage(){
        return new InteractiveListDynPage();
      public static class InteractiveListDynPage extends JSPDynPage{
        private DataBean DataBean = null;
        public void doInitialization(){
          IPortalComponentProfile profile = ((IPortalComponentRequest)getRequest()).getComponentContext().getProfile();
          Object o = profile.getValue("DataBean");
          if(o==null || !(o instanceof DataBean)){
               System.out.println("In the IF ");
            DataBean = new DataBean();
            profile.putValue("DataBean",DataBean);
          } else {
              DataBean = (DataBean) o;
           String name = "Amit ";
           DataBean.setname(name);
          // fill your bean with data here...
           //InteractiveList interactive_list = new InteractiveList();     
        public void doProcessAfterInput() throws PageException {
        public void doProcessBeforeOutput() throws PageException {
          this.setJspName("InteractiveList.jsp");
      public DefaultTableViewModel getData(String USER, String PWD,String R3ip) {
                     com.sap.mw.jco.IRepository repository;
                     JCO.Pool pool = JCO.getClientPoolManager().getPool("R3");
                     if (pool == null) {
                          //JCO.removeClientPool("R3");
                          JCO.addClientPool(
                               "R3",
                               10,
                               "120",
                               USER,
                               PWD,
                               "EN",
                               "138.223.4.106",
                               "00");
                     repository = JCO.createRepository("TTL", "R3");
                     JCO.Client client = null;
                     //               Get a function template from the repository
                     IFunctionTemplate ftemplate =
                          repository.getFunctionTemplate("BAPI_SALESORDER_GETSTATUS");
                     //           Create a function from the template
                     JCO.Function function = ftemplate.getFunction();
                                    client = JCO.getClient("R3");
                                    JCO.ParameterList input = function.getImportParameterList();
                     input.setValue("0053100700", "SALESDOCUMENT");
                                    client.execute(function);
                     JCO.Table sales_orders =
                          function.getTableParameterList().getTable("STATUSINFO");
                     Vector row = new Vector();
                     Vector tbl = new Vector();
                     Vector colNames = new Vector();
                     //     Loop over all rows
                     do {
                          //     Loop over all columns in the current row
                          for (JCO.FieldIterator e = sales_orders.fields();
                               e.hasMoreElements();
                               JCO.Field field = e.nextField();
                               row.add(field.getString());
                               //System.out.println(field.getName() + ":\t" + field.getString());
                          } //for
                          tbl.add(row);
                     } while (sales_orders.nextRow());
                     sales_orders = null;
                     sales_orders =
                          function.getTableParameterList().getTable("STATUSINFO");
                     sales_orders.nextRow();
                     for (JCO.FieldIterator e = sales_orders.fields();
                          e.hasMoreElements();
                          JCO.Field field = e.nextField();
                          colNames.add(field.getName().toString());
                     DefaultTableViewModel dtvModel =
                          new DefaultTableViewModel(tbl, colNames);
                     JCO.releaseClient(client);
                     return dtvModel;
    And my Bean Class contains following code:
    package com.amit;
    import java.io.Serializable;
    import com.sapportals.htmlb.table.DefaultTableViewModel;
    public class DataBean implements Serializable {
         public DefaultTableViewModel model;
         public String name;
         public DefaultTableViewModel getModel() {
              System.out.println("Hi There ");
              return model;
         public void setModel(DefaultTableViewModel model) {
              this.model = model;
         public String getname(){
              return name;
         public void setname(String name){
              this.name = name;
    When I try  to Run the par file I am getting the Static Text in TextView but Text from myBean.getname() is not coming.
    Can you tell me the reason. Is there any problem in the code.
    Thanks in Advance,
    Amit
    Message was edited by:
            Amit

    Double post http://forum.java.sun.com/thread.jspa?threadID=647550&tstart=0

  • While Consuming a WebService in JSP Dyn Page - There is an Error

    Hi Friends,
    I have a web service created in ASP.NET web Service.
    And I have Consumed the Web Service using WSDL URL.
    I need to write a code to refer that class in the JSP DynPage
    I have created like this in DoIntialization
    MyServiceName obj=(MyServiceName) PortalRuntime.getRuntimeResources().getService(MyServiceName.KEY);
    int a = 10;
    int b = 20;
    obj.Add1(a,b);
    but it shows an error
    "The method Add1 Method(Add1 Method) is the type. MySErviceName is not Applicable for the arguements(int,int)"
    Please Help me in this regard.
    Thanks in Advance
    Thanks & Regards,
    Palani

    Hi Andy,
    I will let u know the sequence which i followed to consume the Webservice.
    NWDS --> File --> New --> Project --> Portal Application --> Create New Portal App Project.
    The Project is created.....
    After that i want to consume the Webservice for the same project...
    for that...
    NWDS --> File --> New --> Other --> Portal Application --> Create New Portal Application Object --> Selecting My Project?(intended prjct) --> Portal Webservice --> Portal Service from WSDL file - Client Side --> My WSDL URL --> Selecting the methods which i need to expose from the Webservice --> I gave unique name for my 1) Service 2) Alias 3) Package....and that was done....(other way is to add from portalapp.xml ??)
    After that i created a new JSPDyn page for my application in DoInitialization() method i tried to access the method from that webservice using the following code...
    MyServiceName obj=(MyServiceName) PortalRuntime.getRuntimeResources().getService(MyServiceName.KEY);
    I am successfully able to access the method from the webservice using the object which i have created but i am not able to pass arguments to that method...???
    I tried consuming same webservice created in .NET in .NET itself and i am able to pass arguments successfully.
    I tried to consume webservice created in ABAP in .NET and able to implement successfully...
    but the same ABAP webservice when  i tried to consume its not working with this NWDS.
    Is there any thing else i need to follow while consuming a webservice in the EP Perspectice of NWDS ???
    Deployable Proxy is required for that ?? if required how to create and use that ??
    Thanks in Advance,
    Palani

  • JSP Dyn Page want to display "Loading..." img + message

    Hi, we have EP6 SP2 environment. I have a JSPDynPage component that does a lot of preprocessing then loads the jsp page. Most of the time it spends in doProcessBeforeOutput() (has to connect to 2 backends and pull some data out). it is very slow loading. Can anybody tell me how we can show a nice loading image and a message WHILE the preprocessing is done? Thank you in advance.

    Well, was messing with it for a few hours last night since I got no replies - and that is what I did: I am writing out a <span><loading image> Loading...</span> in my doInitialization() function in Java (before it is doing all the backend connect). Then in a .jsp file I am hiding it with ...display ="none" call. It is a hack, but will do for now till I figure out how to display it sooner.
    After deploying this to our dev Portal (which is not slow, the prod is), I realized that most of the "loading" time it spends pregenerating "other" html that is dumped on the page before my code. So will try to figure out how to speed that up. Will keep you posted.

  • Sytax highlighiting for Jsp Dyn Pages for portal development.

    Hey,
    I am doing JSP with the htmlb taglib for portals. When I edit a jsp page in the Developer Studio, I expect syntax highlighting. This is what I see in the documentation for jsp editing as well - you know where the keywords are highlighted.
    Sytax highlighiting for jsp in Developer Studio for portal development.
    http://help.sap.com/saphelp_nw04s/helpdata/en/ce/e0a341354ca309e10000000a155106/content.htm
    OutputSuccess.jsp, OutputSuccessText.jsp are the two jsp's that are syntax highlighted on this page.
    In my Developer Studio this is not the case. Is a JSP editor and its highlighting not part of the Developer Studio. If it is, how do I get it to work.
    I also know that given the right taglib's, the editor also gives autocomplete for taglibs with its settings. I am hoping to speed up my development with this.
    Right now I am using a text editor for this. There are a couple of jsp plugin's such as Exadel or Lomboz which I can integrate if a jsp syntax editor is not there in the Developer Studio. I just wanted to know the right way to go about this.
    Thank you for your help.
    Sumit.

    Never mind. I was in the preview mode.

  • Response object in JSP Dyn page

    Hi SAP EP Gurus,
    I want to use response.setStatus() mehtod in jspdynpage but it is not working as expected. I am able to use other methods of response object like response.write().
    As per my knowledge if i set response.setStatus(200) is should send error to client but it is not seding error.
    It is working as same for both response.setStatus(200) and response.setStatus(500).
    Is there any special way to use response.setStatus() in portal? It is working as expected in normal jsp application.

    I tried but had no luck. Below is my JSPDYNPAGE code...
    <%@ page import="javax.servlet.http.HttpServletResponse" %>
    <%@ page import="com.sapportals.portal.prt.component.IPortalComponentRequest,com.sapportals.portal.prt.component.IPortalComponentResponse"%>
    <HTML>
         <head>
         </head>
         <body>
    <%
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
    HttpServletResponse servletResponse = request.getServletResponse(true);esss
    servletResponse.setStatus(500);
    %>
              </body>
         </HTML>
    It is not working showing portal run time error

  • Pass parameters from JSP Dyn Page to WDJ Application

    Hi,
    I am trying to pass parameters from my JSPDyn Page to WDJ Application.
    I am using NWDS 7.1 EHP1
    My code is :
    function to_WEBDYNHK()
          EPCM.relaxDocumentDomain();
          EPCM.doNavigate
        ('ROLES://pcd:portal_content/Himanshu.Himanshu/TestDynUIApp?DynamicParameter="hkparam%3Dqwertyuio"');
    This method is being called on click of a button.
    hkparam is the parameter in question.
    The JSPDyn page is an iView and the WDJ application is a page and both have been assigned to a role.
    In the properties of the WDJ Page, I have removed DymanicParameter from "Do not Forward These Parameters To Web Dynpro" property.
    However I am getting null as the value of hkparam in my WDJ application.
    The code used is :
    IWDRequest request = WDProtocolAdapter.getProtocolAdapter().getRequestObject();
           String param1= request.getParameter("hkparam");
    What seems to be missing here.
    Please help.
    I went through the documentation on SDN but it does not seem to help.
    TIA,
    Himanshu

    Hi Himanshu,
    Try this code.
    EPCM.doNavigate("ROLES:portal_content/Himanshu.Himanshu/TestDynUIApp?hkparam=Dmypass1123")
    if the parameter is hkparam and the value to be passed is Dmypass1123. You need not change any design time property of the WD page, and WDProtocolAdapter should retrive the parameter.
    Regards,
    Vishweshwara P.K.M.

  • Case #0182844369 : faults with version 5.5 but who do I talk to?

    Hiya
    I have had extensive help from your support - but they still have not found the reason for the problem.
    See the case notes at the bottom of the page
    But I have inadvertantly found the reason the line breaks are being altered by Dreamweaver. See this resoponse from support working on Kaleidoscope:
    Hi Colin,
    Sorry for the confusion. When I said "editor", I meant the program that you're using to edit the files (BBEdit, TextEdit, etc.).
    I've played around with the sample files and it looks like there's actually two problems. The first is the extra line breaks, as I mentioned before. I took a screenshot in TextEdit, so you could see a side-by-side (see screenshot-linebreak.png). As you can see, cw-product.php on the left has an extra blank line between every line, where cw-product-copy.php does not.
    Switching over to TextWrangler, I removed the extra lines (do a grep Find/Replace All for ^\r) then saved the file. When I compared them in Kaleidoscope I got the same result as in your screenshot showing the entire file as different.
    So I checked the files again in TextWrangler and found that it did a funny thing; it saved the document with "Windows (CRLF)" linefeeds, not "Classic Mac (CR)". Although these are hidden characters, Kaleidoscope sees them as different, so it ends up highlighting the entire file as one large diff set. I suspect whatever file editor you are using may have done the same thing.
    I re-saved the file, making sure to set the linefeed property to Classic Mac (CR) and ran a new comparison. This time Kaleidoscope showed the single line change. (My modified files are attached.)
    If you don't already have TextWrangler, I'd recommend grabbing a copy (it's free) to help with troubleshooting. I'm not sure that I would have been able to identify the linefeed type without it.
    I hope that clears up the mystery for you. Let me know if there's anything else I can help you with.
    Regards
    Jack
    Team Kaleidoscope
    kaleidoscopeapp.com
    @kaleidoscopeapp
    Case #0182844369
    Updated
    Friday, February 3, 2012 5:16:20 AM PST
    Opened
    Thursday, December 8, 2011 8:54:04 AM PST
    Status
    Closed
    Product
    Adobe Design Premium CS5.5
    Support contract
    Adobe Support Program
    Subject
    FTP Connectivity Issue
    NOTES & RESPONSES
    Notes from Customer
    Thursday, February 2, 2012 12:55:31 AM PST
    This morning I have now found that 5.5 is back to it's original problem.
    When I uploaded an edited PHP file using 5.5 NOTHING appears in the browser at all.
    When I upload EXACTLY the same file in 5.0 the file displays perfectly in the browser.
    The FTP problem is STILL there. I can't use 5.5.
    Sorry. Problem not solved : (
    Notes from Customer
    Thursday, February 2, 2012 12:53:13 AM PST
    I have found that when we rebuilt the SITE for Maison, I had accidentally put the ROOT DIRECTORY AS / instead of /web/ so in fact we
    were not putting them to the website at all.
    So the reason the file worked is because it was using the one previously uploaded from version 5 and NOT 5.5.
    I have been trying to upload another file and found that the revisions weren't appearing in the browser.
    I looked at the server using Fetch (see screen shot below). Which displayed the problem.
    So I am afraid the problem is NOT SOLVED.
    Please keep the case open. Sorry!
    Notes from Customer
    Thursday, January 19, 2012 1:42:46 PM PST
    Hi again,
    I have now installed ONLY a brand new download of DW 5.5 on my brand new MacBookAir.
    As before I have tried uploading the file from Dreamweaver...
    http://www.maisonhomeinteriors.com/ stores5-5.php
    When the file is uploaded with Dreamweaver the button does NOTHING.
    But when the IDENTICAL FILE is uploaded with FETCH the button works to display a hidden DIV.
    So sadly the problem is NOT resolved still.
    Notes from Customer
    Wednesday, January 18, 2012 8:29:26 AM PST
    Hiya,
    I have been trying to connect to this website ALL DAY. Each time getting error messages or pages not found.
    I have tried to phone you. The first time I was cut off, the second time kept me hanging on so long I gave up.
    Can you give me a direct phone or email address please?
    Anyway, Attached is the error I received when I first used DW 5.5 after installing on my new MacPro. I have now also bought a new ma
    c book air, I had exactly the same error shown there.
    To fix the problem on the MacPro I looked up the older version 5 and copied the file to version 5.5. Perhaps this is what has caused
    the problem?
    Notes from Customer
    Monday, January 9, 2012 6:27:50 AM PST
    Hi Ritesh,
    I am not sure where you have left the voicemail but as before I have no missed calls. Are you sure you are calling the correct numbe
    r? +44 7720 297795.
    As I said in my previous reply the list of suggestions didn't make any difference. Dreamweaver 5.5 is STILL unreliable.
    The problem seems to be in the FTP as I have uploaded the file through FETCH and it did NOT have any problems. I find it hard to ima
    gine other people have not had the same problem!
    I hope you can find a solution soon as it would appear I have wasted about £300 for nothing as I am still using the old version!
    Notes to Customer
    Monday, January 9, 2012 5:31:15 AM PST
    Hi Colin ,
    My name is Ritesh & calling from Adobe Technical Support. This
    call is in regards to your to case number 182844369. We tried contacting
    to you however not able reach you somehow so left a voice mail. However,
    if the issue still persists, please feel free to call us back at 1-
    800-833-6687 or 02073650735. We are open from Monday to Friday at 9 AM
    to 5 PMT BST as you can reopen the case within 14 days for further
    assistance.
    Thank you for doing business with Adobe and have a nice day
    Regards,
    Ritesh
    Adobe Support
    Notes from Customer
    Sunday, January 1, 2012 5:05:10 AM PST
    Hiya,
    Well I have tried everything you suggest and I am afraid it has made no difference.
    Whichever file gets uploaded using version 5.5 does not work.
    Interestingly I have uploaded the SAME two files using FETCH instead and both of them WORK.
    So as you say the problem is something to do with FTP not working properly in 5.5...
    To answer your specific questions... My ANSWERS IN CAPS AFTER YOUR QUERIES...
    3) Since when you have this issue? has it ever worked right after the first installation.
    EVER SINCE I INSTALLED 5.5 VERSION 5 WORKS FINE STILL
    4) Is the issue happens in live View in Dreamweaver?
    IN VERSION 5 CLICKING LIVE VIEW DOES NOTHING.
    IN VERSION 5.5 CLICKING IT OFFERS TO UPLOAD THE FILES, BUT CLICKING THE BUTTON DOESN'T WORK
    5) Please create a local web server using any of the third party server tools and test the issue on local machine.
    I HAVE NEVER MANAGED TO DO THIS SO NOT TRYING AGAIN, IT NEVER SEEMS TO WORK FOR SOME REASON
    6) Please make sure that all the dependent files are accessible and present while he uploads the “stores.php” files. IT seems that t
    his issue is somewhere related to the JavaScript files incorrect path.
    NOT SURE I AGREE. I THINK THERE IS A FAULT IN THE FTP UPLOAD WITH VERSION 5.5
    I hope this all helps!
    Thanks for your support!
    Happy new year!
    x
    Notes to Customer
    Thursday, December 29, 2011 4:48:03 AM PST
    Hi Colin ,
    My name is Ritesh & I am calling from Adobe Technical Support.
    This call is in regards to your to case number 182844369. We tried
    contacting to you however not able reach you somehow so left a voice
    mail.
    1) We were unable to reproduce the issue on test machine here at our
    end. We have tried it with both WIN (stores5_5_win.php) and MA
    C(stores5_5_mac.php) to upload the files using CS5.5 and have no issues viewing the page in any of the browsers.
    Please follow these steps to resolve the issue:-
    1) Please reset the preferences by deleting the files and folders listed
    below.
    • /Users/**username**/Library/Preferences/Adobe Dreamweaver CS5.5 Prefs
    /Users/**username**/Library/Preferences/com.adobe.Dreamweaver.11.5.plist
    • /Users/**username**/Library/Application Support/Adobe/Dreamweaver
    CS5.5
    • /Users/**username**/Library/Application Support/Caches/
    com.adobe.Dreamweaver.11.5
    • Macintosh /Library/Preferences/ Application Support/Adobe/Dreamweaver
    CS5.5 Prefs (if any)
    • Macintosh /Library/Preferences/com.adobe.Dreamweaver.11.5.plist
    3) Since when you have this issue? has it ever worked right after the
    first installation.
    4) Is the issue happens in live View in Dreamweaver?
    5) Please create a local web server using any of the third party server
    tools and test the issue on local machine.
    6) Please make sure that all the dependent files are accessible and
    present while he uploads the “stores.php” files. IT seems that this
    issue is somewhere related to the JavaScript files incorrect path.
    However, if the issue still persists, please feel free to call us back
    at 1- 800-833-6687 or 02073650735. We are open from Monday to Friday at
    9 AM to 5 PMT BST as you can reopen the case within 14 days for further
    assistance.
    Thank you for doing business with Adobe and have a nice day
    Regards,
    Ritesh
    Adobe Support
    Notes from Customer
    Tuesday, December 27, 2011 1:36:41 PM PST
    Hi Nimish,
    Thank you for your reply, but I really don't know wht I am meant to do with the response!
    You say:
    Please call us at 800 833 6687 ( Monday to Friday, from 0500 hrs till
    1900 hrs PST.)
    What is the code for where you are? If I dial this number all I get is number unobtainable.
    PLEASE CALL ME +44 7720 297795
    This number should work world wide unlike yours, I am afraid.
    PLEASE REALISE THERE ARE PEOPLE IN THE WORLD OUTSIDE USA !!!!!
    You keep saying you have phoned me and got through to my voicemail - but why have you not left me a message?
    Frankly I don't think you have successfully contacted me at all !
    Why can't you just email me with instructions about what I am mean to do?
    Have you found a solution yet?
    I am SERIOUSLY fed up with this.
    Please endeavour to contact me properly!
    Kind regards
    Colin
    Notes from Customer
    Thursday, December 22, 2011 1:10:48 AM PST
    Hiya,
    I have heard nothing from you! what is happening?
    Why have I been left with a BRAND NEW PRODUCT that does not work.
    Where is the support?
    You say you have phoned but I have NO missed calls. I think you are phoning the wrong number. If you got through to voicemail why no
    t leave a message?
    PLEASE HELP !!!!!
    I Bought the upgrade in good faith expecting it to work, but I can't use it at all. This is hopeless!
    I have done everything you suggested but it STILL uploads creating a non-working file!
    If there is nothing you can do I would like my money back please.
    Notes to Customer
    Thursday, December 15, 2011 3:38:36 PM PST
    Hello Colin,
    Thank you for contacting Adobe Technical Support. We are responding in
    reference to your case 182844369 regarding Dreamweaver We tried
    contacting you however reached voice mail. Therefore I would like to
    inform you that asper your feedback we are again escalating the case to
    the higher level.
    Please call us at 800 833 6687 ( Monday to Friday, from 0500 hrs till
    1900 hrs PST.)
    You can also visit www.adobe.com/go/supportportal for any assistance
    regarding Adobe products. You may also visit www.forums.adobe.com as
    it’s a useful resource for self-help.
    Nimish
    Adobe
    Notes to Customer
    Thursday, December 15, 2011 10:50:35 AM PST
    Hello Colin,
    Thank you for contacting Adobe Technical Support. We are responding in
    reference to your case 182844369 regarding Launch issue with Flash Pro
    We tried contacting you however reached voice mail. Therefore I would
    like to inform you that asper your feedback we are again escalating the
    case to the higher level.
    Please call us at 800 833 6687 ( Monday to Friday, from 0500 hrs till
    1900 hrs PST.)
    You can also visit www.adobe.com/go/supportportal for any assistance
    regarding Adobe products. You may also visit www.forums.adobe.com as
    it’s a useful resource for self-help.
    Nimish
    Adobe
    Notes from Customer
    Thursday, December 15, 2011 2:49:14 AM PST
    Hiya
    Well I have tried all you suggest and the problem is still the same. The OLD version 5 uploads the file perfectly and clicking the b
    utton reveals the div:
    http://www.maisonhomeinteriors.com/stores.ph p
    When I then upload the IDENTICAL file using 5.5 clicking the button does nothing.
    To make it easier for you to see the effect I have duplicated the stores.php file so that there is one called stores5.php and one ca
    lled stores55.php.
    Each one is IDENTICAL no changes have been made. The one entitled stores5.php has been uploaded by version 5 and the one called stor
    es55 has been uploaded by version 5.5
    I hope you can see the problem!
    I have found other problems with other sites too. I simply can't trust version 5.5 !!!!
    I hope you can help further!
    Out of interest I have sent via FTP two zip files of the prefs screen shots from both versions.
    Notes to Customer
    Wednesday, December 14, 2011 11:55:11 AM PST
    Hello Colin,
    Thanks for contacting adobe..!!!
    we tried contacting you many times but reached voicemail.
    Colin, we want you to follow instructions given below :
    >> On your project please try to link <stores.php> page in place
    of <stores.html>
    >> Try to reset the preferences for both versions of Dreamweaver.
    {follow:- http://kb2.adobe.com/cps/839/cpsid_83912.html }
    >> Then try to compare preferences of both version on a New Document.(
    create a new document, go to : Edit> preferences)
    >> If there is any difference please let us know.
    If this will not help you resolving your issue, you can call us back.
    Nimish
    Adobe
    Notes from Customer
    Tuesday, December 13, 2011 2:35:41 PM PST
    I don't understand!!!
    Your message says...
    "Open - Pending Your Response"
    Response to WHAT? you haven't asked me anything. Are you asking me to do something? please be specific as to what you want me to do!
    Regards
    Notes from Customer
    Monday, December 12, 2011 11:49:40 PM PST
    Er.. but you haven't said anything!
    What are you asking for?
    What am I meant to do?

    Hi Fastdak25,
    Please go to your profile page for the forum by clicking on your name, and look at the top of the middle column where you will find an area titled "My Private Support Cases". There you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.

  • Problem with displaying BLOB images on JSP page using a servlet

    hi. I have a big problem with displaying BLOB images using JSP. I have a servlet that connects to the oracle database, gets a BLOB image , reads it, and then displays it using a BinaryStream. The problem is , this works only when i directly call that servlet, that is http://localhost:8080/ImageServlet. It doesn't work when i try to use that servlet to display my image on my JSP page (my JSP page displays only a broken-image icon ) I tried several coding approaches with my servlet (used both Blob and BLOB objects), and they work just fine as long as i display images explicitly using only the servlet.
    Here's what i use : ORACLE 10g XE , Eclipse 3.1.2, Tomcat 5.5.16 , JDK 1.5
    here is one of my image servlet's working versions (the essential part of it) :
                   BLOB blob=null;
              rset=st.executeQuery("SELECT * FROM IMAGES WHERE ID=1");
              while (rset.next())
                   blob=((OracleResultSet)rset).getBLOB(2);
              response.reset();
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition","filename=42.jpeg");
                    ServletOutputStream ostr=response.getOutputStream();
                   InputStream istr=blob.getBinaryStream(1L);
                    int size=blob.getBufferSize();
              int len=-1;
                    byte[] buff = new byte[size];
                         while ((len=istr.read( buff ))!=-1 ) {
                   ostr.write(buff,0,len);
             response.flushBuffer();
             ostr.close(); and my JSP page code :
    <img src="/ImageServlet" border="0"  > If you could just tell me what i'm doing wrong here , or if you could show me your own solutions to that problem , i would be very greatful ,cos i'm realy stuck here , and i'm rather pressed for time too. Hope someone can help.

    I turns out that it wasn't that big of a problem after all. All i had to do was to take the above code and place it into another JSP page instead of into a servlet like i did before. Then i just used that page as a source for my IMG tag in my first JSP. It works perfectly well. Why this doesn't work for servlets i still don't know, but it's not a problem form me anymore . Ofcourse if someone knows the answer , go ahead and write. I would still appriceatte it.
    here's the magic tag : <img src="ImageJSP.jsp" border="0"  > enjoy : )

  • "Another program on your computer would like to modify Firefox with the following add-on" - how to disable?

    I am using the latest Firefox (28.0) on Windows XP in a shared computer environment. Although I do not have Administrator access, I installed Firefox myself and can change whatever Firefox config settings I want (including about:config and mucking with the files in the installation directory).
    I want to disable the tab that appears on Firefox startup, "Another program on your computer would like to modify Firefox with the following add-on". This tab usually appears once per day (the first time I startup Firefox each day). I want the tab not to appear at all, from now on.
    The "another program" in question is some program that is used in the facility where I'm using the computer, so I can't just uninstall that program. Although this is a shared computer environment, they don't "wipe" the machine every day, just reboot. So the Firefox I installed is still there with all my config settings intact. As far as I know, I'm the only person who uses Firefox on this computer.
    Solutions that don't work:
    "Just click Continue" -- but then I still see the "Another program" tab every day, and don't want to see it.
    "Click Remove in the Add-ons list" -- I removed the Add-on in question but the tab still appears every day.
    I would like a solution that either eliminates the Add-on request for that particular application, or eliminates all such requests ("Another program...") regardless of what application requested it. The ideal solution would be if the request itself had a checkbox for "never ask this again" but, alas, no such luck.

    Gosh... I spent about an hour preparing a response, then accidentally did control-something or alt-something which took me back a page and I lost everything I typed (even after I clicked Forward to try to get back to where I was). If anyone knows of a config setting like "don't ever trash an entire page of user input unless the user explicitly confirms it", or, "keep form input data even if the user goes Back or Forward", I think that would be a great feature.
    OK, back to the original question...
    I appreciate the responses thus far, but I think there have been some misunderstandings. Maybe a multiple-choice version would help:
    Question: Is there a way to suppress the appearance of the notification tab that says, "Another program on your computer would like to modify Firefox with the following add-on" (meaning, any request from another program to install an add-on is to be silently ignored and discarded)?
    Answer:
    (A) Yes, you can suppress that notification (please state how).
    (B) No, but you can request that feature (please state where).
    (C) No, you can't do that or request that feature.
    That's basically my question in a nutshell. If the answer is (B), I might envision a boolean about:config setting like "extensions.allowProgrammaticAddonRequests" that defaults to "true" and can be set to "false" manually. I think that would be the most direct solution (if it were possible).
    I will respond to some comments from above:
    "I don't understand why you are using a mozilla.cfg file to lock those preferences when you can modify the preferences for your current Firefox profile via about:config" -- This is because the "other program" in question (iCafe Manager) was setting certain config options (browser.startup.homepage, and browser.newtab.url) on every reboot (which happens every morning at that facility). I got tired of manually changing the settings back every day. Using the above-mentioned files, I successfully defeated iCafe Manager's daily interference with those config settings. The other things (like stuff related to Socks tunnelling) I probably could have just set once in about:config but doing a lockPref seemed to do no harm. The settings for "enabledScopes" and "xpinstall" were to see if they'd help with the problem I originally asked about, but they did not.
    "I would look in about:config to make sure those preference modifications are in effect" -- yes, I confirmed that the settings are in effect and locked. That much works as expected.
    "A) removing the iCafe Toolbar extension from the Firefox Addons -> Extensions panel results in the "Another program" tab at startup" -- true, but I think it would be more accurate to say: while the toolbar extension is not installed (due to either having been removed, or, never having been installed at all), the "Another program" tab appears on at least the first startup of Firefox after every reboot.
    "B) when you allow the installation it shows up as "(disabled)" in the Extensions list but the unwanted toolbar still shows up (correct?)" -- yes, correct.
    "You could explain the problem to the system administrator of your facility" -- unfortunately, there's no administrator on site, only a person who makes sure the lights are on. They'll call a tech if there's a catastrophic problem (like the net connection goes dead). Since I installed Firefox myself, and since iCafe Manager is a program they installed, I don't think they'll go out of their way to help me with Firefox (especially if I'm trying to defeat iCafe Manager's attempts to interfere with Firefox). From their point of view, their systems are working just fine.
    "allow the installation and then see if you can go to the Firefox Customize menu and HIDE the toolbar as a workaround" -- since I'm not in that facility now (and probably won't be again until this summer or so), I can't experiment with those systems now. But I do recall clicking just about everything I could, including "View - Toolbars" (which seems to be the same menu as when I right-click on a toolbar line). That menu allows hiding toolbars, but from my recollection, the offending toolbar was not displayed in the list, so I could not hide it that way. Also, the Customize menu ("View - Toolbars - Customize") seems to allow only modifications to a toolbar, and not a way to hide an entire toolbar.
    "it might help if you could post a new troubleshooting information list after you allow the iCafe Toolbar installation" -- ok, that troubleshooting report is included below.
    Thanks again for your help.
    Application Basics
    Name: Firefox
    Version: 28.0
    User Agent: Mozilla/5.0 (Windows NT 5.1; rv:28.0) Gecko/20100101 Firefox/28.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: iCafe Manager Toolbar
    Version: 5.2.0.6
    Enabled: false
    ID: {C058FE28-1E07-4FD1-8092-046F8A964D12}
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    browser.newtab.url: about:blank
    browser.places.smartBookmarksVersion: 6
    browser.sessionstore.upgradeBackup.latestBuildID: 20140314220517
    browser.startup.homepage: http://www.google.com/ncr
    browser.startup.homepage_override.buildID: 20140314220517
    browser.startup.homepage_override.mstone: 28.0
    dom.mozApps.used: true
    extensions.lastAppVersion: 28.0
    gfx.blacklist.direct2d: 3
    gfx.blacklist.layers.direct3d10: 3
    gfx.blacklist.layers.direct3d10-1: 3
    gfx.blacklist.layers.direct3d9: 3
    gfx.blacklist.layers.opengl: 3
    gfx.blacklist.stagefright: 3
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.blacklist.webgl.angle: 3
    gfx.blacklist.webgl.msaa: 3
    gfx.blacklist.webgl.opengl: 3
    network.cookie.prefsMigrated: true
    network.websocket.enabled: false
    places.database.lastMaintenance: 1398414928
    places.history.enabled: false
    places.history.expiration.transient_current_max_pages: 53428
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    plugin.state.npgoogleupdate: 1
    privacy.sanitize.migrateFx3Prefs: true
    privacy.sanitize.sanitizeOnShutdown: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1396778909
    Graphics
    Adapter Description: Intel(R) G33/G31 Express Chipset Family
    Adapter Drivers: igxprd32
    Adapter RAM: Unknown
    Device ID: 0x29c2
    Direct2D Enabled: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    DirectWrite Enabled: false (0.0.0.0)
    Driver Date: 11-3-2008
    Driver Version: 6.14.10.5009
    GPU #2 Active: false
    GPU Accelerated Windows: 0/1 Basic Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    WebGL Renderer: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    Vendor ID: 0x8086
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSSMIME
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSSSL
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSUTIL
    Expected minimum version: 3.15.5
    Version in use: 3.15.5

  • Message "another program on your computer would like to modify Firefox with the following add-on" appears every time a new user logs in... Bad problem

    I have just deployed an image to over 500 workstations, and they are all deep frozen using deepfreeze.
    When users are logging in, and open Firefox they are getting the message "another program on your computer would like to modify firefox with the following add-on:" Adobe Acrobat - Create PDF 1.2
    Yes I know u can do a one-time click and allow, but we have potentially 50,000+ students logging into these PCs and it is unacceptable that they are greeted with this message rather than the Homepage.
    This is very dissapointing, as we upgraded to the latest version of firefox in preperation for rollout, and then added some software like adobe.
    The profile is kept in the default user, so everytime a user logs in, they will get prompted with the message, and this will always happen because we use deepfreeze.
    I need a FIX ASAP from mozilla on how to disable this pop-up via Group Policy...
    Not at all happy,
    Sharpy

    Hi,
    One way you could try is to install Firefox on a fresh PC/image which has the same Adobe software versions installed as the clients. You may also have to install the same extensions as well as software for any additional plugins as on the clients. Start Firefox and make sure everything is okay. After that you can copy and overwrite the '''extensions.ini''', '''extensions.sqlite''' and '''pluginreg.dat''' files and probably the '''extensions''' folder and any supporting files of the extensions from this fresh profile, onto a client profile after temporarily disabling/unfreezing Deep Freeze. If everything is okay you can then push the changes onto the other clients via a logon/startup script after temporarily disabling Deep Freeze and then re-enable Deep Freeze.
    [http://kb.mozillazine.org/Profile_folder Firefox Profile Folder]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]

  • Can't do a save as with version 11.0.10

    Since updating  to version 11.0.10 we cannot do a save as with PDF documents created in Esker's Vsifax program.  I have submitted a case with Esker but after poking around on Google finding others with the same issue. When we try to do a save as we get the message "The document could not be saved.  There was a problem reading this document(21)".   A further click shows "Insufficient data for an image".  Nothing has changed with the Esker package - no updates, etc.  I can do a save as on an older laptop with version 11.0.9 so it does seem to point to the reader program.  Please help

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • IDSM-2 and VMS problem with version software

    I use a IDSM-2 with software ver. 4...
    IDSM-2 is managing by VMS ver. 2.0.
    Since 2006 I couldn't taking new signature
    What can I do to upgrade IDSM to higher version ( IPS ver 5...) and which version VMS manage properly IDSM-2 with version software 5...
    I still have a maintenance SMART NET to 2008 year.
    If I need upgrade what can I do.
    Mirek

    Hi John Thank you for your Reply,
    On my jsp page, i get the warning reference, " backingBeanScope.mybean.varname" not found.
    In expression builder, though I can see and select the BackingBean but i can not see the below variables!!!!
    It appears only the Beanname and not the plus sign to expand it.
    This happens only for backingbeanScope...
    best regards

Maybe you are looking for

  • How to invoke a java webservices in flex

    hi people.I am new to ths flex.How to invoke java web service in flex .please reply .Thanks in advance.

  • SQL Server 2012 with SP2 Slipstream ISO images do not install SP2

    We see the same issue as described here: http://support.microsoft.com/kb/2783963 when using the newly posted en_sql_server_2012_enterprise_edition_with_service_pack_2_x64_dvd_4351704.iso from MSDN. We end up with SQL Server 2012 RTM instead of SP2 an

  • Could not create JVM Virtual machine(While starting soa managed server)?

    Hi, While starting managed server I am getting following errors: Could not commit 1048576KB heap memory at 0x0000000004790000. Could not create JVM Virtual machine. After above error SOA managed server is to be down. Please help me that how can i res

  • Where can I find the Oracle Clusterware 11.1.0.7 for Linux x86

    Hello, I am testing upgrading Oracle 11g RAC from 11.1.0.6 to 11.1.0.7 on Linu x86 (RedHat 5.3/OEL 5.3) I haven't been able to find the Oracle Clusterware 11.1.0.7 for Linux x86 download, which is required for the RAC upgrade. Could someone tell me t

  • How to run windows inside mac

    Want to run windows 7 inside the Lion OS 10. of my macbook pro. I understand some products like Parallels are helpful, but I want to know which is the most reliable and easy to use product that would seamlessely work between Mac and Windows. Thank yo