Can we access WebShop on Dialog Java Instance?

Hello
      I had already installed ABAP+Java system on the system and already configured the WebShop completely. However I have a problem that system only access from user internal zone but I want Customer to access Webshop themself by URL. Can I install only Java Dialog instance in external zone in order to allow Customer to access Webshop by this server? If not, do you have any idea for this?
Thanks,
Beaw

Hi
  I had already solved the problem, weI only setup SAP Web Dispatcher to be a gateway.
Have a nice day
Chaiyong S.

Similar Messages

  • Can't open Aperture and can't access first aid dialog -- fixed by deleting .plist file

    Friends,
    I have the latest updated version of Aperture running on an imac i7 and mountain lion.  When I try to open Aperture I receive an error message that says the library can't be opened/program quit unexpectedly.  Eventually it asks me if I want to repair the data base -- I say yes.  It runs the repair routine, but the problem remains.  I am unable to access the first aid dialog by cmd./option clicking on the library -- I receive the same error messages. 
    However, I am able to open the library in iphoto, so something is working right. 
    Any ideas?  I suppose I could uninstall/reinstall the program, but since I loaded it from a DVD, that would be cumbersome (unless everything's been transferred to the app store).
    Any thoughts?
    Thanks!
    Steve

    As I said above, you do not need your DVDs at all. You can download the Trial from here:
    Aperture 3.1 Trial.
    That will install Aperture 3.1, after you moved your current Aperture to the Trash - see my post above. To upgrade from 3.1. go to the Apple menu - software update (this will redirect to the AppStore and you should be able to use it this way)- or use the download at the support page:
    Aperture 3.4
    Regards
    Léonie
    Added: don't even try to open the Aperture 3.1 application after installing - it will not be able to open your current library - update immediately to aperture 3.4.

  • CAN ADS BE INSTALLED ON ANY JAVA INSTANCE

    If I have ECC 6.0 installed with ABAP only, can I install ADS on another system with Java installed to be used with ECC60 or does it need to be in the same system to work.   Only looking for PDF output and display of HR reports.
    Thanks,
    Tania

    Tania,
      Technically yes you can. In such a case you need to publish the ADS to the SLD. Please look at the section 3.4 of the ADS config guide for 2004
    Publishing the Adobe Document Services to the System Landscape Directory
    This procedure applies only if you have installed the Adobe document services and the Web Dynpro runtime environment on different J2EE Engines and if the communication between these engines uses the System Landscape Directory (SLD).
    Prerequisite
    A System Landscape Directory (SLD) must be already configured.
    If not already done, perform the necessary activities according to the documentation SAP System Landscape Directory, section Administrative Activities, chapter:
    • Start and stop the SLD service
    • Configure the SLD server
    • Configure data persistence
    • Make settings for the SLD bridge
    You can find this documentation by calling the following URL in your web browser (you must have a SLD administrator account):
    http://<host>:<HTTP_port>/sld
    where <host> is the host name of the SLD host and <HTTP_port> is the HTTP port of the SAP J2EE engine (The following naming convention applies: 5<J2EE_instance_number>00. 50000, for example, if your J2EE instance is 00).
    Thanks!
    Surya.

  • How can i access any kind of java control inside ejb

    I want to access an ejb control of a session bean inside another session bean. Can anybody tell me how can i do that as the weblogic workshop doesnot give any option to add that.
    Thanks
    Sachin

    Hi,
    We can not able to add any type of javaControls inside the ejb project.
    Instead of that we can write our own code to get ejbs in an existing ejb's.
    Regards
    Anilkumar kari

  • Opening the firewall for programs you can't access via the dialog?

    I have a server program located in /usr/var/ (cumulus) and I need to open the firewall for it. Because Leopard seems to block access to the / directory how can I add that application to the firewall? I can't seem to browse to it...
    Better question still, how can I browse to / directory in the Finder?
    Thanks all!

    schleppy wrote:
    I have a server program located in /usr/var/ (cumulus) and I need to open the firewall for it. Because Leopard seems to block access to the / directory how can I add that application to the firewall? I can't seem to browse to it...
    Better question still, how can I browse to / directory in the Finder?
    Thanks all!
    You cannot browse these hidden system directories using Finder.
    You need to use the Terminal.
    There are free firewall add-ons for Leopard that give you a better control over the firewall. There are also stand-alone firewall replacements. You can google for them, but be careful when you modify the OS. Be sure it is fully backed up, preferably with a bootable clone, just in case.

  • Can servlet access Serializable Bean ?

    This is my bean below.. My jsp pages can access this bean but my servlet cannot... Do I need to make remove the Serializable interface that I am implementing right now so servlet can access ? Can serlvet access beans ?
    import java.io.*;
    import java.sql.*;
    import javax.sql.*;
    import java.util.*;
    * Re-usable database connection class
    public class ConnectDB implements Serializable{
    // setup connection values to the database
    static final String DB_DRIVER = "";
    static final String myURL = "";
    static final String USERNAME = "";
    static final String PASSWORD = "";
    static Connection con = null;
         public ConnectDB(){}
         /* Returns a connection the file that calls the method*/
         public static Connection getConnection()
              try
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                   con = DriverManager.getConnection("......");
              catch (Exception e)
                   e.printStackTrace();
              finally
              return con;
         /*Closes Connections*/     
         public static void closeConnection(Connection con)
              try
                   if (con != null)
                   con.commit();     
                   con.close();
              catch (Exception e)
                   e.printStackTrace();
    }

    A Servlet is just a Java class and so can access beans. Also, a JSP is translated to a servlet before execution so you already have a servlet accessing the bean.
    Can you post relevant code and error message?

  • Can't access flash settings to disable acceleration

    Hello,
    I am getting the "black rectangle" on youtube videos, and I have narrowed the cause down to my lack of hardware acceleration.  Unfortunately, despite clicking "settings" by right-clicking where the video should be, no settings dialog opens up.
    How can I access the settings dialog to turn off hardware acceleration? 
    This is using a Mac OSX Snow Leopard with the latest Adobe Flash plugin and this happens on both the latest Firefox and Chrome.
    Thanks for any help,
    K

    Thanks. That allowed me to get to the font settings and realise that that wasn't the problem. It was actually Display/Resolutions, which I thought I had already checked.

  • Can u access Oracle9i Reports objects from Java Code?

    Hi,
    How can you access Oracle9i Reports (Rel 2) objects like Body, DataSource, Groups etc from Java Code?
    What are the available APIs?
    I went thru the APIs at http://otn.oracle.com/products/reports/htdocs/getstart/docs/Javadocs/oracle/reports/plugin/definition/package-summary.html
    However various constructors stated in these APIs are using classes from "oracle.reports.definition" package which are difficult for me to locate.
    For eg. Report constructor is using oracle.reports.definition.RWReport and there is no API documentation available for RWReport class.
    Please suggest me the site for the above APIs or the method to get a reference to "Report" instance.
    Thanks
    Rakesh.

    Thanks Tugdual for your quick reply.
    Thats exactly what I am trying to do. I want to develop a utility which can have a subset of Report Developer's functionality.
    Currently using Reports Developer & Report Wizard, I can create a report by providing SQL statement and few parameters (like Report Style, Calculated Fields, Template file etc). I want to put all these parameters in a XML file and run my java utility (based on the APIs which I am looking for) which will use these XML parameter file and generate a '.rdf' file.
    Also, could you please suggest me the site for oracle.reports.definition package API or the way to get a reference to oracle.reports.plugin.definition.Report instance.
    Thanks,
    Rakesh

  • JMS: can I access SAP messages from extenal Java

    - Can I access SAP Messages from an external (non-SAP) java program?
    - Do I use JNDI or can I call using a jar file from my java invocation?
    - Do I have to define a queue (or does SAP JMS have queues)
    - What port do I use?
    Thanks

    Hi John,
    > - Can I access SAP Messages from an external
    > (non-SAP) java program?
    >
    Yes, you can use the JMS provider on the Web AS from a standalone java program.
    > - Do I use JNDI or can I call using a jar file from
    > my java invocation?
    You connect your remote java client to the server by getting an InitialContext. The you lookup the JMS resources (such as Topic- or Queue ConnectionFactory, etc.) from the JNDI. You can have a look at <a href="http://help.sap.com/saphelp_nw04/helpdata/en/25/bf8f44540c469abc19fb6ac3ac7885/frameset.htm">this</a> page for more info.
    >
    > - Do I have to define a queue (or does SAP JMS have
    > queues)
    >
    The JMS Provider on the Web AS provides default connection factories that you can use to create a topic ot queue. The lookup strings you have to use are
    jmsfactory/default/TopicConnectionFactory
    for topics and
    jmsfactory/default/QueueConnectionFactory
    for queues.
    > - What port do I use?
    >
    You use the P4 port (50004 by default for instance number 00) when obtaining the InitialContext with this code:
    java.util.Properties properties = new Properties();
    // set the properties of the connection
    properties.put("Context.INITIAL_CONTEXT_FACTORY", "com.sap.engine.services.jndi.InitialContextFactoryImpl");
    properties.put(Context.PROVIDER_URL, "<Server_Host>:<p4_port>");
    properties.put("Context.SECURITY_PRINCIPAL", "Administrator");
    properties.put("Context SECURITY_CREDENTIALS", "admin_password");
    // start initial context with the properties specified
    InitialContext context = new InitialContext(properties);
    Hope that helps!

  • How can I correlate an Java instance number with a server id?

    I have 6 Web App Server running ABAP and the JAVA stacks. I can log into the Central Instance server and run /usr/sap/<SID>DVEBMSG00/j2ee/configtool/configtool.sh and bring up the GUI interface to "see" all the instances and their variables. I don't see an easy way to trace back the Java INSTANCE to the physical server's hostname.
    Is there a central repository to correlate a Web App Server Java instance number to the actual hostid/hostname of the target server? I realize I can log into each Web App Server and look at the /usr/sap/<SID>D00/j2ee/cluster/instance.properties and find the Instance number, but I was wondering if this information was held in the SAP Central instance or SAP Database somewhere.

    Hi Timothy,
    The instance ID used for the JAVA cluster is generated at installation time, and -amongst other things- takes into account the time it was generated. We installed two instances in parallel (on different hosts) and ended up with almost the same instance ID.
    Because this can be very confusing, we asked SAP if this was changable - in theory it is only an ID which could be changed as long as it is updated on all places the identifier is stored - but SAP indicated that that is not possible, nor supported. We ended up with a diagram of the system architecture with all the identifiers on our desk.
    Note that in the config tool - all instances are displayed with their system instance number. If you were to install a new system it might be usefull to install all instances with different instance numbers so you and distinguish more easily between them.
    Hope this helps,
    Cheers,
    Walter

  • Can not access the Instance Data of a Singleton class from MBean

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

  • I'm note a firefox geek, but ever since my friend told me to install NoScript I can not access my msn and hotmail page. It tells me that Java Script is required, what ever that is. What do I do next. Do I uninstall the No Script. Thanks Ed

    I'm note a firefox geek, but ever since my friend told me to install NoScript I can not access my msn and hotmail page. It tells me that Java Script is required, what ever that is. What do I do next. Do I uninstall the No Script. Thanks Ed edit
    Details

    You are on Windows 2000, you do not have a "Firefox" button, and should consider yourself to be fortunate in that you still have menus and don't have to do anything to get the menus back instead of the "Firefox" button. (The same applies to Windows XP users).
    Use the "File" menu to get to Import. You are not on Windows 7 or Vista, and don't have to put up with the nonsense added for Aero.
    If you want the "Firefox" button you can get it with View -> toolbars -> (uncheck) Menu Bar. The menu bar and the "Firefox" button were supposed to be mutually exclusive (which is impossible in some cases without being incompatible).
    Once you are using the "Firefox" button ...
    Use the "Alt" key to view the menu bar (temporarily) containing File, Edit, View, History, Bookmarks, Tools, and Help. On Windows 7 and Vista, the menu bar was hidden by default in Firefox 4 and above. These menu items are more or less available under the "Firefox" button which has the most used of the built-in Firefox menu items available in a different format.
    To get back to having menus again. "Firefox" button -> Options (second column) -> (check) Menu Bar
    You can make '''Firefox 7.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • How can we access network signal strength of pocket PC in java 1.1.8?

    can anyone tell me if there is any way i can access the signal strength of a wireless access point by a java program for a pocket PC (Compaq iPaq)?
    the iPaq only supports java 1.1.8

    Hello,
    I'm a french student and I have exactly the same problem as you.
    It has been 3 weeks I'm searching, but I have not results.
    Today, do you have the solution????? If yes, can you tell me something about that??
    Thank you very much!!!
    Yohan
    can anyone tell me if there is any way i can access
    the signal strength of a wireless access point by a
    java program for a pocket PC (Compaq iPaq)?
    the iPaq only supports java 1.1.8

  • (how) can I access Java APIs from web-page-hosted JavaScript?

    Can I access Java APIs from a web-page via JavaScript if I have a JRE installed on the client machine? And if so, how?
    Thanks in advance for your time and consideration.

    John L. wrote:
    Can I access Java APIs from a web-page via JavaScript if I have a JRE installed on the client machine? And if so, how?As far as I can remember that was actually possible in the very first versions of Netscape because Netscape really wanted to pretend Javascript and Java were meant to be used together. But they soon removed that functionality. Can you guess why?
    Because people were using the File/IO classes to easily steal or remove files on the harddrive, among other such niceties. You do NOT want to have such control from a web application. People will abuse it.

  • Can an AS-Java instance be added to an existing AS-ABAP?

    Hi everyone!
    I'm facing the following situation: can an AS-Java instance be installed on a existing AS-ABAP instance?
    My development team wants to activate the AS-Java in order to "publish" some ERP transactions to some web applications but that one has not been installed with the AS-ABAP instance we already have.
    Can I add this Java instance to the ABAP instance or should I create an Java instance separately?
    Any info or help is appreciated.
    Best regards,
    Paulo

    Ok, Manoj. Thanks for your answer.
    But I forgot to mention that my system is NW 7.0, not Web AS 6.20 or 6.40.
    I have followed the link you sent and searched for the SAP note mentioned there - 914486 - but the info is restricted to Web AS 6.20/6.40 platforms, and there is nothing mentioned for NW 7.0.
    I was reading some docs for NW 7.0, explaining the "usage types" of SAP systems. It says that a SAP system can be installed as a single AS ABAP or AS Java or altogether.
    Since my system was installed as a single AS ABAP, now I'm not sure if I can simply add an AS Java instance to it. I'm considering now to install a separated AS Java instance and then make the appropriated "links" between those instances.
    What do you think?
    Have you ever been through such thing?
    Sorry I'm bothering you with it but sometimes we haven't got noboby to discuss such things like that. Somebody's else experiences can always help us to make an appropriated decision.
    Thanks in advance.
    Paulo

Maybe you are looking for

  • Data not reflecting in ECC

    We have cycle of material or vendor creation as given below. New vendor/material creation on portal > Approve on portal > Check in MDM data manager > PI > Check ECC > Table Entry. In many cases we have found Materials or vendors are reflecting in MDM

  • Open a file

    LCD gurus: what is the script to open an external file?  I have yet to find anything concrete that will do this via Acrobat 9 - we cannot use Acrobat X. The situation I have is I need to enforce that a procedure document is open on the screen while a

  • BEX Analyzer: Error when clicking in a filter hierarchy

    Hello, I am using the SAP BI7 version and I have a problem in the BEX anayzer. When I click in the filter zone and when I choose a filter caracteristic that contains a hierarchy I have the following error message and i am killed: <b>Class RSBOLAP 000

  • Podcasts don't download

    Hi! I have been trying to update some of my podcasts for several days with the latest version of iTunes, and it constantly drops out before download is completed... It reads error 502 or error 9006. I can't figure out what is wrong. Especially that i

  • Can't create new bookmarks in safari. Lost all my existing book marks

    Lost all bookmarks, cannot create new ones.