3rd party Java Application Cannot connect to inter...

3rd party application like gmail, orkut or 160by2 which are java ME application cannot connect to internet in my Nokia 2700 classic, when connecting it only prompts "Application wants use Network. Allow?" like this, I press the allow button still it cannot connect to the internet, my Operamini and all other nokia apps are working correctly.. Please Help.. 

sandeep_extreme wrote:
3rd party application like gmail, orkut or 160by2 which are java ME application cannot connect to internet in my Nokia 2700 classic, when connecting it only prompts "Application wants use Network. Allow?" like this, I press the allow button still it cannot connect to the internet, my Operamini and all other nokia apps are working correctly.. Please Help.. 
These apps might not be compatible with your 2700 even though it's installed.
‡Thank you for hitting the Blue/Green Star button‡
N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

Similar Messages

  • Open a form from a 3rd party Java/Web based application

    Hi All,
    I am working for a client who has a 3rd party web application built in Java.
    For one of his requirements, he wants to open a form, an apps standard form on the click of a button/url in their application.
    This appears like a normal form opening from the single-signon screen where you have the self service single sign-on page, it opens the apps forms on click of the url. Can we use the same logic here? This being the case, just curious to know how is the url to open the form built? (I see that the function name, resp id etc are there in the url) So that, I can actually manipulate the url to open the forms from a url. Please see that the custom application also is included into our Oracle apps, so the user is already logged in. We just need to open the form from the click of a url/button.
    Thanks,
    Srini.
    Thanks,
    Srini.

    If the ICX_SESSION is already available then the form(I am assuming you are refering to a web based form here) should open directly if the function should be accessible to the user logged in. When you say your custom application is included in Oracle apps are you launching these pages from the Ebiz home page through menus and functions ?

  • IPICS 3rd Party PTT Application

    Hello,
    Is there a way to access VTG on IPICS system in order to send and receive PTT streams from using a thrid party application?
    Cisco IPICS API Reference Guide doens't seem to clearly include any API call that allows that! http://www.cisco.com/en/US/docs/interoperability_systems/c_ipics/221/api/guide/api.pdf
    Thanks

    sandeep_extreme wrote:
    3rd party application like gmail, orkut or 160by2 which are java ME application cannot connect to internet in my Nokia 2700 classic, when connecting it only prompts "Application wants use Network. Allow?" like this, I press the allow button still it cannot connect to the internet, my Operamini and all other nokia apps are working correctly.. Please Help.. 
    These apps might not be compatible with your 2700 even though it's installed.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Java application to connect to AP 7.00 (IPC)

    Hi,
    I have to develop standalone java application that connects to IPC and does configurations via the IPC Server (via the RFCs the IPC Server exports).
    I have JCo connection to the SAP ECC system (only one server. I assume the IPC server is running on the same host)
    I then tried to call the "CREATE_SESSION" command. Repository returned null.
    Do I need to set a special SystemNr in JCODestination? (To connect to the IPC Server)
    Or is it possible to make a connection to SAP ECC system and then call the IPC RFCs?
    Does SAP provide a function/transaction to retrieve a list of functions that a RFC destination supports?
    Is there a Howto document on how to call the IPC server from a standalone (Java) application?
    I hope somebody can help me!
    Thanks!
    BR Georg

    Error messages tell you everything you need to know (usually).
    Student.java:13: cannot find symbol
    symbol : class ControlPanel
    location: class Student
    private ControlPanel controls;
    ^
    This means that the compiler cannot find the class ControlPanel. Does it exists. Is it in the same directory as your other files. Has it compiled correctly.
    Student.java:38: cannot find symbol
    symbol: method GridLayout(int,int,int,int)
    frame.add(panel, GridLayout(4,2,5,5));
    ^
    This tells you it cannot find the method GridLayout. I presume you meant to have a new in front of it. Besides the layout manager code should have been done prior to this and your code should be
    frame.add(panel);Student.java:49: cannot find symbol
    symbol : method addWindowListener(<anonymous java.awt.event.WindowAdapter>)
    location: class javax.swing.JMenuItem
    exititem.addWindowListener(
    ^
    Once again the method addWindowListener cannot be found. JFrame has this method not JMenuItem. Probably need an ActionListener.
    Student.java:69: cannot find symbol
    symbol : method JMenuItem(java.lang.String)
    location: class Student
    JMenuItem queryItem = JMenuItem("Query");
    ^
    Once again the compiler thinks you are trying to call a method called JMenuItem. You forgot new.
    Student.java:78: cannot find symbol
    symbol : method showMessgaeDialog(<nulltype>,java.awt.Component,java.lang.String,int)
    location: class javax.swing.JOptionPane
    JOptionPane.showMessgaeDialog(null, add(queryoutput), "QUERY RESULTS", JOptionPane.INFORMATION_MESSAGE);
    Spelling!

  • Java Application to connect to vdb3 database

    Hi Folks,
    I have to create a java application to connect to vdb3 oracle databse to support various transactions with menu options as below:
    File menu(ALT F)
    ---Connect (ALT L)
    ---Exit (ALT E)
    Data menu(ALT D)
    ---Query(ALT Q)
    ---Add Student(ALT A)
    ---Delete Student(ALT T)
    ---Update Student(ALT U)
    Option menu(ALT O)
    ---Color(ATL C)
    ---Font (ATL N)
    There is a STUDENT table with studid, firstname, lastname, major and age.
    I have the following code for the GUI. I am getting the following errors. How do I go about from here? Please help.
    Student.java:13: cannot find symbol
    symbol : class ControlPanel
    location: class Student
    private ControlPanel controls;
    ^
    Student.java:38: cannot find symbol
    symbol: method GridLayout(int,int,int,int)
    frame.add(panel, GridLayout(4,2,5,5));
    ^
    Student.java:49: cannot find symbol
    symbol : method addWindowListener(<anonymous java.awt.event.WindowAdapter>)
    location: class javax.swing.JMenuItem
    exititem.addWindowListener(
    ^
    Student.java:69: cannot find symbol
    symbol : method JMenuItem(java.lang.String)
    location: class Student
    JMenuItem queryItem = JMenuItem("Query");
    ^
    Student.java:78: cannot find symbol
    symbol : method showMessgaeDialog(<nulltype>,java.awt.Component,java.lang.String,int)
    location: class javax.swing.JOptionPane
    JOptionPane.showMessgaeDialog(null, add(queryoutput), "QUERY RESULTS", JOptionPane.INFORMATION_MESSAGE);
    import javax.swing.*;
    import java.sql.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Student extends JFrame
         private JTextArea out;
         private JDesktopPane desktop;
         private JTextArea queryoutput;
         private ControlPanel controls;
         public Student()
              super(" Student Database");
              //container c = getContentPane();
              desktop = new JDesktopPane();
              add(desktop);
              JMenu fileMenu = new JMenu("File");
              fileMenu.setMnemonic('F');
              JMenuItem connectItem = new JMenuItem("Connect");
              connectItem.setMnemonic('L');
              fileMenu.add(connectItem);
              connectItem.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
                        JInternalFrame frame = new JInternalFrame("Login", true, true, true, true );
                        MyPanel panel = new MyPanel();
                        frame.add(panel, GridLayout(4,2,5,5));
                        frame.pack();
                        desktop.add(frame);
                        frame.setVisible(true);
              JMenuItem exititem = new JMenuItem("Exit");
              exititem.setMnemonic('E');
              fileMenu.add(exititem);
              exititem.addWindowListener(
                   new WindowAdapter()
                        public void WindowClosing (WindowEvent event)
                             System.exit(0);
              JMenuBar bar = new JMenuBar();
              setJMenuBar(bar);
              bar.add(fileMenu);
              queryoutput = new JTextArea(5,20);
              JMenu dataMenu = new JMenu("Data");
              dataMenu.setMnemonic('D');
              JMenuItem queryItem = JMenuItem("Query");          
              queryItem.setMnemonic('Q');
              dataMenu.add(queryItem);
              dataMenu.addSeparator();
              dataMenu.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
                        JOptionPane.showMessgaeDialog(null, add(queryoutput), "QUERY RESULTS", JOptionPane.INFORMATION_MESSAGE);
              JMenuItem addstud = new JMenuItem("Add Student");
              addstud.setMnemonic('A');
              dataMenu.add(addstud);
              dataMenu.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
              JMenuItem delstud = new JMenuItem("Delete Student");
              addstud.setMnemonic('T');
              dataMenu.add(delstud);
              dataMenu.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
              JMenuItem updatestud = new JMenuItem("Update Student");
              addstud.setMnemonic('U');
              dataMenu.add(updatestud);
              dataMenu.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
              JMenu options = new JMenu("Options");
              options.setMnemonic('O');
              JMenuItem color = new JMenuItem("Color");
              addstud.setMnemonic('C');
              options.add(color);
              options.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
              JMenuItem font = new JMenuItem("Font");
              addstud.setMnemonic('N');
              options.add(font);
              options.addActionListener(
                   new ActionListener()
                        public void actionPerformed(ActionEvent event)
    class MyPanel extends JPanel
              private JLabel L1;
              private JLabel L2;
              private JLabel L3;
              private JTextField userid;
              private JPasswordField pw;
              private JTextField database;
              private JButton ok;
              private Connection connect;
              private JTextArea output;
              private String url;
         public MyPanel()
              L1 = new JLabel("User Id:");
              add(L1);
              userid = new JTextField(10);
              add(userid);
              L2 = new JLabel("Password:");
              add(L2);
              pw = new JPasswordField(10);
              add(pw);
              L3 = new JLabel("Database Name:");
              add(L3);
              database = new JTextField(10);
              add(database);
              ok = new JButton("OK");
              add(ok);
              ok.addActionListener(     
              new ActionListener()
                   public void actionPerformed(ActionEvent event)
                   try {
         url = "jdbc:odbc:Student";
         Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
         connect = DriverManager.getConnection( url );
         output.append( "Connection successful\n" );
              catch ( ClassNotFoundException cnfex ) {     
         // process ClassNotFoundExceptions here
         cnfex.printStackTrace();     
         output.append( "Connection unsuccessful\n" +
    cnfex.toString() );
         catch ( SQLException sqlex ) {
         // process SQLExceptions here
         sqlex.printStackTrace();
         output.append( "Connection unsuccessful\n" +
    sqlex.toString() );
         catch ( Exception ex ) {
         // process remaining Exceptions here
         ex.printStackTrace();
         output.append( ex.toString() );
    import javax.swing.*;
    public class MainWindow
         public static void main( String args[])
              Student student = new Student();
              student.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              student.setSize(500,200);
              student.setVisible( true);
    }

    Error messages tell you everything you need to know (usually).
    Student.java:13: cannot find symbol
    symbol : class ControlPanel
    location: class Student
    private ControlPanel controls;
    ^
    This means that the compiler cannot find the class ControlPanel. Does it exists. Is it in the same directory as your other files. Has it compiled correctly.
    Student.java:38: cannot find symbol
    symbol: method GridLayout(int,int,int,int)
    frame.add(panel, GridLayout(4,2,5,5));
    ^
    This tells you it cannot find the method GridLayout. I presume you meant to have a new in front of it. Besides the layout manager code should have been done prior to this and your code should be
    frame.add(panel);Student.java:49: cannot find symbol
    symbol : method addWindowListener(<anonymous java.awt.event.WindowAdapter>)
    location: class javax.swing.JMenuItem
    exititem.addWindowListener(
    ^
    Once again the method addWindowListener cannot be found. JFrame has this method not JMenuItem. Probably need an ActionListener.
    Student.java:69: cannot find symbol
    symbol : method JMenuItem(java.lang.String)
    location: class Student
    JMenuItem queryItem = JMenuItem("Query");
    ^
    Once again the compiler thinks you are trying to call a method called JMenuItem. You forgot new.
    Student.java:78: cannot find symbol
    symbol : method showMessgaeDialog(<nulltype>,java.awt.Component,java.lang.String,int)
    location: class javax.swing.JOptionPane
    JOptionPane.showMessgaeDialog(null, add(queryoutput), "QUERY RESULTS", JOptionPane.INFORMATION_MESSAGE);
    Spelling!

  • TNS-12154...3rd Party tools won't connect to 9.2iEE

    Platform:
    Pentium 4 2.4GHz
    Windows 2000 (SP2)
    Oracle 9iEE 9.2
    OWB 9.2
    Quest Software Data Dictionary for Oracle
    Other 3rd party tools accessing Oracle RDBMS
    We have installed Oracle 9iEE, and OWB 9.2. OWB Client and Server components have been installed into their own 'oracle_home' directories. All software is installed on the one machine.
    We have also installed Quest Software Data Dictionary for Oracle on the machine.
    We have found 2 TNSNAMES.ORA files on the machine....one for the database itself, and the other in the OWB Client 'Oracle home'
    The OWB client connects with the database ok, but the Quest software and other 3rd party tools come back with the error of TNS-12154. 3rd party tools were ok while we had 9iPE installed. But have stopped connecting with the oracle database since the installation of 9iEE and OWB, and come up with the TNS-12154 error each time we try.
    We have 3 'Home' entries in the Registry under HKEY_LOCALMACHINE>SOFTWARE>ORACLE. One for 9iEE, and 2 others each for the OWB Server & Client.
    Below are the TNSNAMES.ORA, SQLNET.ORA, and LISTENER.ORA contents for the 9iEE installation:
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ora92ee.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora92ee.mydomain)
    INST1_HTTP.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    EXTPROC_CONNECTION_DATA.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    # LISTENER.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\ora92ee)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ora92ee.mydomain)
    (ORACLE_HOME = C:\oracle\ora92ee)
    (SID_NAME = ora92ee)
    # SQLNET.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    NAMES.DEFAULT_DOMAIN = mydomain
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    Below is the TNSNAMES.ORA for OWB Client:
    # TNSNAMES.ORA Network Configuration File: C:\oracle\OWB92_C\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    OWB92NETSERVICE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ora92ee.mydomain)
    When LISTENER is started, the following is displayed.....
    LSNRCTL> Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    System parameter file is C:\oracle\ora92ee\network\admin\listener.ora
    Log messages written to C:\oracle\ora92ee\network\log\listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    STATUS of the LISTENER
    Alias listener
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    Start Date 28-AUG-2003 22:51:52
    Uptime 0 days 0 hr. 0 min. 4 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\oracle\ora92ee\network\admin\listener.ora
    Listener Log File C:\oracle\ora92ee\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "ora92ee.mydomain" has 1 instance(s).
    Instance "ora92ee", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    NOTE THE STATUS OF THE INSTANCES!...Can't get them to start as READY.
    After a minute or two, status check shows (without any other action)......NOTE THE ADDITIONAL INSTANCE ENTRIES THAT APPEAR.
    LSNRCTL> Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    STATUS of the LISTENER
    Alias listener
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    Start Date 28-AUG-2003 22:51:52
    Uptime 0 days 0 hr. 1 min. 10 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\oracle\ora92ee\network\admin\listener.ora
    Listener Log File C:\oracle\ora92ee\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "ora92ee.mydomain" has 2 instance(s).
    Instance "ora92ee", status UNKNOWN, has 1 handler(s) for this service...
    Instance "ora92ee", status READY, has 1 handler(s) for this service...
    Service "ora92eeXDB.mydomain" has 1 instance(s).
    Instance "ora92ee", status READY, has 1 handler(s) for this service...
    The command completed successfully
    THE NEW INSTANCE STATUS COME UP AS READY, UNLIKE THE PREVIOUS STATUS OF UNKNOWN!
    My guess is the 2 TNSNAMES.ORA files on the machine, and the contents of the Registry 'Home' entries are causing the issues. But I'm not sure of what actions to take, and why initially the service instances come up as 'UKNOWN', and then the other 2 appear as 'READY'. ora92ee.mydomain has 2 instances of the service....baffling.
    Is it to do with installing 9iEE on a single machine, rather than a Client/Server environment?
    Any ideas upon how we can get our 3rd party tools to successfully connect to the Oracle database again will be greatly appreciated!
    Thanks!

    problem solved

  • DST changes impact on third party java applications

    Currently we are running the following versions...
    O\S Windows Server 2003
    JRE 1.4.2_11
    JDK 1.4.2_11
    Should the JRE \ JDK be patched with tzupdater utility in case of running the third party java application?

    You don't have to apply tzupdater tool.
    Already JDK1.4.2.11 have the updated DST Time Zone Entries.
    Ref: http://java.sun.com/developer/technicalArticles/Intl/tzupdatertool.html
    Regards,
    Vel

  • Integrate SAP BI with third party Java application

    I want to display reports from SAP BI to third party java application. I have found many javadocs, but have not found any document that helps with this problem.

    Not much information provided.
    BO Version?
    Reports in question?
    There are different set of SDKs for different reports. Also there might be changes in the API's between different BO products.
    As suggested by Jawahar, its better if you post your query to SDK forum for better response as it is the dedicated forum for BusinessObjects Java SDK queries.
    Thanks,
    Prithvi

  • Sso with third party java application.

    hi all,
    I want to have single signon for third party java application deployed on websphere 5.0 advanced server .
    I am using SAP EP6.0 SP13 .
    Can anybody help me out.
    thanx in advance.....
    Sarang

    Hi Sarang
    Please refer to the following thread. It should answer your question.
    SSO between SAP EP and JAVA app on WebSphere Application Server 5.1
    Also refer to the following document.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/nw/ibm/how to set up sso between sap enterprise portal and ibm websphere portal using tai.pdf
    Hope that was helpful.
    Warm Regards
    Priya

  • 3rd Party Email Application for CF

    I know there are 3rd party email applications for CF ... Can
    anyone point me to them and/or let me know if they have worked
    better. I'm looking for more power with email (tracking, sending,
    routing, etc).
    Thanks,
    Joe

    Yeah, that might be to much. Normally, CF will directly send
    to your mailserver (usually IIS mail services) and if something
    goes wrong your only options reside in looking at the CF logs if
    you're logging mail. But I know there are some third party apps
    that do more tracking/resending then send to your mail server (and
    or better bulk mail processing). In your case you've just handled
    it more complexly by using an Exchange Server. That will be
    overkill for me plus a good amount of time learning and installing
    (not to mention price tag).
    Joe

  • How many 3rd party displays can be connected to MBP retina 15"

    I was just wondering how many 3rd party displays can be connected to the MacBook Pro with Retina Display 15" and 16GBs of ram. I have contacted the Apple Online Chat and every time I get a different awnser. I know that there are 2 Thunderbolt ports and a HDMI port on the machine. Can someone help me please?
    Thanks,
    Jayden

    Near all screens. You can use the HDMI port to connect the MacBook Pro with Retina display to a HDMI screen, but you have got Thunderbolt.
    Thunderbolt is compatible with Mini DisplayPort, so you can use Mini DisplayPort adapters to connect your MacBook to a DVI or VGA screen too

  • HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA APPLICATION

    HI expects,
            HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA or . DET APPLICATION.please provide me some scenarios and documents.please help me.

    Hi,
    In the sender side i.e. in SAP system you can use IDoc/RFC/Proxy to push the data to XI.
    IDoc supports only Async communication and in Sync case performace is good using Proxy.
    In the receiver side you can use Java Proxy to connect to the Java application or you can even bulid a webservice over the Java/.Net application and use SOAP adapter to post data to it.
    Thanks
    SaNv...

  • Are there any 3rd Party Cloud Application Readiness Assessment tools in the market today?

    I have couple of interrelated questions here:
    1
    Are there any 3rd party tools, which do Cloud Readiness  Assessments for on-premises Applications. I am looking for names of any such tools, if they exist, which thoroughly analyse on-premises applications, and generate detailed reports on whether the
    application is ready for moving to the cloud (and why?), or if it needs some changes before moving (which changes?), or if the application needs major changes (which?) or cannot be move to cloud in its present form. The cloud here could be Azure (1st pref)
    or AWS (2nd pref).
    2
    From the tools named in response to above questions, which are the ones which can be used for doing applications assessments for a large number of on-premises apps in most efficient way? Do such tools actually exist? Imagine scenario that an enterprise customer
    comes to me and asks that they want to check the cloud readiness for 3000 applications in shortest possible time - What tool will you recommend for such massive assessments?
    Thanks, LH

    Hi,
    I would suggest you to check this Microsoft Cloud Self Assessment Tool.
    For more information on this, refer this link:
    http://blogs.technet.com/b/schadinio/archive/2012/07/09/microsoft-cloud-self-assessment-tool.aspx
    Regards,
    Azam Khan

  • Unable to open files from 3rd party websites/applications

    Hi all,
    My new macbook arrived with QT 7.0.4, I used it perfectly for a week with no problem, but now after carrying out a 'software upgrade' via system preferences to QT 7.1.1 I now find that Quicktime will not open hardly anything!!!! Not bad considering Apples information at the download window states that 7.1.1 was implemented to fix bugs that prevented QT from opening files in 3rd party applications. Whats going on?.......
    In the mean time I've had to carry out a system reboot to go back to QT 7.0.4 and now its back to how it should be. What version of Quicktime 7 am I going to have to wait for before this issue if rectified?
    Cheers
    Smarteee

    Thanks all

  • Several 3rd party apps can't connect to internet?

    Recently, several 3rd party apps on my mbp have been unable to connect to the internet. These include but are not limited to: Dropbox, Google Drive, Skype, Transmission, Evernote, Steam, Trillian, plex, several little useful apps such as mailtab for gmail. The Mac App Store is also having issues. I can, however, use Safari to browse with no issue at all. I'm connecting via wifi, no proxies or vpns or anything like that. Can anyone help me out here?

    You don't give any examples of the apps that are not working.
    Some public WiFi networks will only have certain network ports open, like those for web and mail. If an app uses an unusual network port then it may not work on the public WiFi network.

Maybe you are looking for

  • How to run a batch file

    Hi, How to run a batch file from Oracle. Is it possible directly from PLSQl, or should I write the java code. Oracle Version: 10g 2.0.1.0. Thanks in advance Rizly

  • 'undefined' in webmail body

    one of our users went away (using laptop/internet explorer/wireless) said several messages in uwc show up with 'undefined' in the body. i believe this coincides with my application of t patch -60 to the messaging server. Sun Java(tm) System Messaging

  • Upgraded 3GS phone to 4.1.2, now ringer goes on and off intermittently.

    Is anyone else having this problem? I upgraded my 3GS phone, per iTunes prodding, to 4.1.2 Now the phone buzzes intermittently and I see the icon displayed for the "ringer on" and "ringer off". It doesn't do it because of any particular thing that ha

  • RMAN in DataGuard Technology

    Hi, our Business requirement is: 1-having Full backup on Sat on produciton side and incremental backup every day. 2- Having Full backup on Sun on Standby database and incremental backup every day. to fulfill these requirement i did the following: 1-

  • How do I get a layer to be a width/height % of the canvas size?

    I am trying to create an action for watermarking.  However, I would like to be able to size my logo to be a specific % of the entire canvas size, i.e. 20% width to be a part of my action so that the logo is always proportional to the image size.  Is