Application designer connection to App Server

Hii,
I have a very basic level doubt, we all know that App Designer is 2 tier application/editor. But I observed lot of times, if I shutdown App server and try to connect through App designer, I get some debug error.Please can anybody tell me App server process connectivity with App Desigenr
Thanks in Advance

Thanks a lot Ajit and Nicolos.. Please find below error message
"Debugging disabled.Communication failure during rec(): WSAECONNRESET(10054) connection reset by peer
(143,41)"
How I am getting this error:
After login in App designer (in 2 tier mode), when I am shutting down App server (normal mode), I am getting this error only one time.
So my confusion here is how App designer debugging feature depends on App server?
Thanks

Similar Messages

  • Can not connect Weblogic App Server 10.3 from Jdeveloper 10.1.3.5

    Hi Friends,
    I am trying to connect JDeveloper 10.1.3.5 to WebLogic server 10.3.
    I am facing some problems.
    I used JDeveloper 11g to do the same and it worked.
    I found that JDeveloepr 10.1.3.5 does not have any wizard for Weblogic 10.3 connection, all the available wizards are
    for server version 10.1.X.
    So Please tell me if it is at all possible to do this.
    The reason I am trying to do this is because I can not create composite applications, as my project works only with esb projects.
    As I am new to Oracle SOA suite, I accidentally downloaded JDeveloper 11g and SOA Suite 11g etc.
    But I found that JDEveloper 11g can not create any ESB projects, it can only create composite projects.
    So I downloaded JDeveloper 10.1.3.5. So please help me configure this IDE with the Weblogic server I have.
    If it is not possible, please suggest which App Server and OSB version I need to install.
    Many thanks in advance.
    Edited by: user10935249 on Aug 27, 2011 5:11 AM

    @sweetfa:
    Thanks a lot for your reply.
    Although, I have to work only with 10g, but this info is helpful in that I will not try doing something that is not possible anyway.
    And Mediator revealing the ESB project after migration was a completely new info to me and a pretty helpful one.
    Edited by: user10935249 on Sep 1, 2011 4:03 AM

  • Communication between two web applications deployed on same app server

    I need to update the war file of one application(say Application A) from another application(say application B). Actually application B is the admin application of application A.
    In order to achieve this, I need to get the ServletContext of A from B. How can I do that?
    P.S: Both the applications will be deployed on the same app server and they are app server independent.

    from the JavaDocs:
    http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/ServletContext.html
    getContext
    public ServletContext getContext(java.lang.String uripath)
    Returns a ServletContext object that corresponds to a specified URL on the server.
    This method allows servlets to gain access to the context for various parts of the server, and as needed obtain RequestDispatcher objects from the context. The given path must be begin with "/", is interpreted relative to the server's document root and is matched against the context roots of other web applications hosted on this container.
    In a security conscious environment, the servlet container may return null for a given URL.
    Parameters:
    uripath - a String specifying the context path of another web application in the container.
    Returns:
    the ServletContext object that corresponds to the named URL, or null if either none exists or the container wishes to restrict this access.
    See Also:
    RequestDispatcher

  • Can't connect to apps server

    New iPad.  When I try to open app store message reads "Cound not connect to the server". Yet when prompted by iPad to get facebook app, it will download free apps. Any suggestions?

    By resetting network settings I am now able to connect to macbook pro using bluetooth. However, when wifi is up on the iPad (lots of bars), I can't connect to apps store. Same message "Could not connect to the server". I can easily connect to the apps store using the macbook pro. I verified my apple ID in general>iTunes & App Store and the payment info, but still no luck.

  • How to Non-ACC Client connect Sun App Server 8 with SSL

    I have create a Rich Client(Non-ACC) that connect to Sun App Server 8 with IIOP(8001) and is working fine. However, when I try to connect to same server with using SSL (8002) and throw exception during lookup a Bean as below.
    Please help!!
    Server Configuration
    ================
    IIOP Port(s): 8001, 8002, 8003
    All listener ports are enabled
    Client Coding
    ===========
    env.put(javax.naming.Context.PROVIDER_URL, "iiop://"+url);
    env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY,"com.sun.appserv.naming.S1ASCtxFactory");
    System.setProperty("javax.net.ssl.keyStoreType", "jks");
    System.setProperty("javax.net.ssl.keyStore", "D:\\Sun\\AppServer\\domains\\adsr\\config\\keystore.jks");
    System.setProperty("javax.net.ssl.keyStorePassword", "password");
    System.setProperty("javax.net.ssl.trustStore", "D:\\Sun\\AppServer\\domains\\adsr\\config\\cacerts.jks");
    System.setProperty("javax.net.ssl.trustStorePassword", "password");
    System.setProperty("com.sun.CORBA.connection.ORBSocketFactory", "com.sun.enterprise.iiop.IIOPSSLSocketFactory");
    ic = new InitialContext(env);
    Object objref = ic.lookup("ejb20/statelessSession/EntControllerHome");
    Exception
    ========
    [java] Mar 18, 2005 4:43:59 PM com.sun.corba.ee.spi.logging.LogWrapperBasedoLog
    [java] INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/4645"
    [java] Mar 18, 2005 4:44:00 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl readFully
    [java] WARNING: "IOP00410215: (COMM_FAILURE) Read of full message failed :
    bytes requested = 12 bytes read = 7 max wait time = 300 total time spent waiting = 364"
    [java] org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 215 completed: No
    [java] at com.sun.corba.ee.impl.logging.ORBUtilSystemException.transportReadTimeoutExceeded(ORBUtilSystemException.java:2629)
    [java] at com.sun.corba.ee.impl.logging.ORBUtilSystemException.transportReadTimeoutExceeded(ORBUtilSystemException.java:2655)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.readFully(SocketOrChannelConnectionImpl.java:676)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.read(SocketOrChannelConnectionImpl.java:545)
    [java] at com.sun.corba.ee.impl.protocol.giopmsgheaders.MessageBase.readGIOPHeader(MessageBase.java:119)
    [java] at com.sun.corba.ee.impl.transport.CorbaContactInfoBase.createMessageMediator(CorbaContactInfoBase.java:153)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.readBits(SocketOrChannelConnectionImpl.java:325)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.handleEvent(SocketOrChannelConnectionImpl.java:1175)
    [java] at com.sun.corba.ee.impl.transport.SelectorImpl.run(SelectorImpl.java:275)
    [java] javax.naming.CommunicationException: Can't find SerialContextProvider [Root exception is org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 208 c
    ompleted: Maybe]
    [java] at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:133)
    [java] at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:290)
    [java] at javax.naming.InitialContext.lookup(InitialContext.java:347)
    [java] at com.shkco.jaf.test.JAFLogonTest.connect(JAFLogonTest.java:110)
    [java] at com.shkco.jaf.test.JAFLogonTest.setUp(JAFLogonTest.java:134)
    [java] at junit.framework.TestCase.runBare(TestCase.java:125)
    [java] at junit.framework.TestResult$1.protect(TestResult.java:106)
    [java] at junit.framework.TestResult.runProtected(TestResult.java:124)

    I don't think tomcat supports the ejb-ref portion of web.xml. If you're using ejbs your best bet is to use a web container within a J2EE implementation.
    --ken                                                                                                                                                                                                                                                                                                                                           

  • Web server connecting to App Server

    I want to config Tomcat as Webserver connecting to Sun Enterprise 7 App Server (i.e. access EJB component). How should I configTomcat and Sun Enterprise 7 App Server ?

    You should not configure anything special. Just lookup you'r EJBs as you do from any standalone client.

  • Deploying a web application on Sun One app server 7

    Hi,
    I am not able to deploy a web application on sun one server using Sun java studio.
    I have created Jsp, Servlet, Session bean and entity bean.
    When I am creating a web_module in the directory where JSP are kept, it is giving me error "directory is already mounted.
    I have already created EJB modules for both the Session and entity bean.
    Can some one tell me the cause / solution of this problem.

    Hi Amol,
    Thank you very much for replying my question. The contents in my application.xml are:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN" "http://java.sun.com/dtd/application_1_3.dtd">
    <application>
    <display-name>testwsapp</display-name>
    <description>J2EE Application testwsapp</description>
    <module>
    <web>
    <web-uri>testws_War.war</web-uri>
    <context-root>testws</context-root>
    </web>
    <alt-dd>testws_War.xml</alt-dd>
    </module>
    </application>
    The contents in jaxrpc-ri-runtime.xml are:
    <?xml version="1.0" encoding="UTF-8"?>
    <endpoints xmlns='http://java.sun.com/xml/ns/jax-rpc/ri/runtime' version='1.0'>
    <endpoint
    name='testws'
    interface='contactws.testwsGenServer.testwsRPC'
    implementation='contactws.testwsGenServer.testwsRPCBean'
    tie='contactws.testwsGenServer.testwsRPC_Tie'
    model='null'
    wsdl='/WEB-INF/testws.wsdl'
    service='{urn:testws/wsdl}Testws'
    port='{urn:testws/wsdl}testwsRPCPort'
    urlpattern='/testws'
    </endpoint></endpoints>
    I tried to access and check the web service using:
    http://servername:port/testws/testws
    The first testws is contextroot named and the second testws is url pattern, which was exactly like what you mentioned but I got "404 Not Found" error.
    By the way, using the same ear to deploy to Windows Sun ONE App. Server 7 env. and then using the same url, I can access the web service. I am wondering if there is any special for deploying Web Service on Unix Sun ONE app. Server 7 env. or I missed something?
    I hope I can hear from you soon.
    Thank you again,
    Jackie

  • Error in creating connection to app server  (10.3.4) from JDev 11.1.1.4.0

    Hi Everyone,
    I am trying to create a application server connection (weblogic server 10.3.4) from JDeveloper 11.1.1.4.0. but when I test the connection, I get status/response as " 0 of 0 tests were successful".
    Can anyone pls shed some lights on the issue? When I look into the Weblogic console, I do not get any kind of error. I am using Oracle SOA Suite 11.1.1.4.0.
    Pls note that, I have already disabled the proxy settings from the JDevelope (Tool -> Preferences -> Web Browser & Proxy) as suggested by someone to resolve this issue, and so far, this has not helped me. :-(
    Pls help, I am stuck in my work because of this.
    Thanks
    Jameel

    Frederic,
    The DVT components use Java's AWT (Abstract Window Toolkit) to show the corresponding images. By default, the Java Virtual Machine tries to use the hardware-based graphical capabilities of the
    machine to implement AWT. I could find the error, "java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11GraphicsEnvironment" reported for UNIX machines in which the display wasn't set. So let me ask, is your problem on Windows or on Unix ?
    I found the following WLS parameter that you can set in the WLS doamin cmd file to make the JVM setting up the awt libraries
    -Djava.awt.headless=true
    Frank

  • Error with JSF application on SAP NetWeaver  App Server  7.3

    Hello Gurus,
                             I have a JSF web application which I have deployed on the SAP NetWeaver Server 7.3 , but when trying to access the same I get the error
    Cannot process an HTTP request to servlet [Faces Servlet] in [SecurePro] web application. [EXCEPTION] javax.servlet.ServletException: com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error in executing the compilation process: [ Compilation Failed! Exit Code=1
    Has anybody else also got the same error earlier?, I am using Mojarra  implementation for JSF.
    I had earlier deployed the same application in an earlier JSF version and it worked on NWAS7.0 but Now I need to upgrade that, Please help
    Thanks
    Somil Agarwal

    Hi Ingo,
    Yes - Ive tried every possible combination and here is my findings...
    I don't think the 32-bit version of the SAP Java Connector (2.1.8) works on a Windows 2003 x64 SAP J2EE 7.0, i.e. the sapjco.jar file. I created a directory and added it to the CLASSPATH of the J2EE server (server and instance) and I also added it to the Java classpath using: java -jar <path+sapjco.jar> -classpath. Executing this command brings up a SAP Java connector window where it displays information of the version, location of the sapjcorfc.dll file etc. This windows opens, but is not able to display the information. If I do exactly the same with the x64 bit version of the SAP Java connector (2.1.8) it displays the information correctly in the SAP Java connector popup. I've tried copying the sapjcorfc.dll and the librfc32.dll to both the /system32 and the SYSWOW64 directory on the server.
    HOWEVER, in CMC the Role Import tab still does not work - I just get the text null (in red). Before adding the sapjco.jar to the java classpath I got another error on the Role import tab - something like /com/sap/mw/jco/$JCOFunction. So it seems like it is now able to find the sapjco.jar file, but can not use it properly.
    The big question is now: Should the sapjco.jar file actually be on the Application server or on the BOE Server? I know it says on the application server in all documentation, but that generally assumes Tomcat and all installed on one server.
    BOE uses the sapjco.jar file to connect to the BW system to import the roles and that must be the BOE server doing that job and not the Application server???
    Just my thoughts - maybe we can discuss this at Teched in Phoenix? :o)
    Best regards,
    Jacob

  • Can't connect to apps server on iphone 5s

    Hi, I bought a new iphone 5s. I downloaded apps like viber and instagram but when i want to sign in both give me"can't connect to server check your connection". message. But my connection is perfectly work.
    Please Help me.
    Thnx

    - Try when connected to another networ.
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - Can other devices use those services? If not there may be a problem with their servers

  • Connection to app server fails?

    Hello All!
    I have an Tarantella 3.40.911 running on Suse 9.0. Application Server is
    an MS Terminal Server.
    Everything worked out fine for month until this weekend. Now connections
    to the application server cant be established.
    The ONLY message i get is:
    Starting the application...
    Connecting to Protocol Engine...
    Requesting application server authentication...
    Waiting for the server to respond...
    And thats it! I wait but nothing happens. Using RDP-Client everything
    works out fine.
    Who can help?
    Thank you,
    Patrick

    Patrick wrote:
    Hello All!
    I have an Tarantella 3.40.911 running on Suse 9.0. Application Server is
    an MS Terminal Server.
    Everything worked out fine for month until this weekend. Now connections
    to the application server cant be established.
    The ONLY message i get is:
    Starting the application...
    Connecting to Protocol Engine...
    Requesting application server authentication...
    Waiting for the server to respond...
    And thats it! I wait but nothing happens. Using RDP-Client everything
    works out fine.
    Who can help?
    Thank you,
    Patrick
    Patrick,
    are you still experiencing this problem ?
    Best,
    Rob
    Roberto Zini - r.zini<@AT@>strhold.it
    "Has anybody around here seen an aircraft carrier?"
    (Pete "Maverick" Mitchell - Top Gun)

  • ADF application deployment on Oracle Apps server?

    OAFramework is used to create and deploy oracle application pages...can ADF framework be used instead of OAFramework and be deployed and accessed in Oracle Applications? or as both OAF and ADF have different structures/framework they are for different purposes?
    Thanks,
    Tanveer
    Message was edited by:
    Tanveer

    As of R12, OAF can only be used for Oracle Applications development/extensions.
    Oracle ADF is an end-to-end J2EE framework. ADF is currently not used for Oracle Apps. Development / extensions. It is expected to be the case in Fusion and is a part of the Oracle Fusion Middleware.
    Hope this clarifies.

  • WebSphere jars required for JNDI connection factory (App server, not file)

    I need to configure an initial context to a JNDI-defined WebSphere Topic Connection Factory. I believe the class needed is "com.ibm.websphere.naming.WsnInitialContextFactory", but I cannot determine the specific jars required to successfully execute the connection.
    Any help at all would be deeply appreciated.

    I have the same question. Who knows answer please reply

  • Problem running a sample application in sun app server PE 8

    Hi,
    I am trying to run the petstore application with oracle 9i. It's a demo application that comes with app server. I set the classpath in the app server to the oracle driver files. I am able to deploy it successfully. But, when I run it it gives me this error:
    java.sql.SQLException: Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : oracle.jdbc.xa.client.OracleXADataSource
    I am using oracle thin driver.
    Rgds,
    shipf1

    Yes, I am deploying the application as an ear.You would need to configure the JAR as a module within the EAR. If it is required only by a web app, you could add it to the WEB-INF/lib for the web app.

  • Does moving SP code from DB to App Server help scale an application?

    We have an application developed using Oracle 10g Forms / 10g DB? All our processing is done using SPs. So they all run in the DB server. Even our Inserts/updates/deletes to a table are handled by SPs.
    The site with the maximum simultaneous users (i.e. concurrent users) is one with 100 concurrent users.
    We have prospective customer whose requirement is 300 concurrent users. Our application won't be able to handle it since the DB server is a single processor server with limited memory.
    One suggestion was move the SPs to the App Server by moving them to the Form. Since OAS has a PL engine they will run in the App Server and hence remove the workload of the DB.
    I don't buy this. My point is, even if SPs are moved to the app. server still the SQLs will run in the DB server, right?
    So what is the advantage?

    christian, I just modified the original post thinking nobody will reply since it's very long. Thanks a lot for the reply. For others and myself also here is my original question.
    I have a problem like this: Take this scenario. We have a TELCO app. It is an E-Business Web Application (i.e. Dynamic Web Site) developed using ASP.Net/C#. App. Server is IAS and DB is Oracle 10g. IAS and the DB reside in 2 servers. Both are single processor servers.
    The maximum simultaneous user load is 500. i.e. 500 users can be working in the system at one time.
    Now suppose 500 users login at the same time and perform 500 different operations (i.e. querying, inserts, updates, deletes). Now all 500 operations will go to the App Server. From there the C# code will perform everything using Oracle stored procedures (SP). I.e. we first make a connection to the DB, SP is invoked by passing parameters, it will perform the operation in the DB, send the output to the App. Server C# code and we will close the Oracle connection (in App Server. C# code).
    Now, the 500 operations will obviously have to wait in a queue and the SQLs will be processed in the DB server.
    Now, question is how does CONNECTION POOLING help in this situation?
    I have been told that the above method of using DB SP to perform processing will make the whole system very slow since all the load of the processing has to borne by the DB Server and since DB Operations involve disk I/O it will be very slow. They say you cannot SCALE the application with this DB Processing mode and you have to move to App. Server processing mode in order to scale your application. I.e. If the number of users increases to 1000 our application won’t be able to handle it and will get very slow.
    What they suggest is to move all the processing to the App. Server (i.e. App. Svr. Memory). They also say that CONNECTION POOLING can help even further to improve the performance.
    I have some issues with this. First of all to get all the data to the App server memory for each user process from the DB will not only require disk I/O, it will also involve a network trip. That will obviously take time. Again the DB requests to fetch the data will have to wait in the DB queue. Then we do the processing in the App. Server memory and then we have to again write to the DB server which again will require a network trip and disk I/O. According to my thinking won’t this take MORE TIME than doing it in the DB server??
    Also how can CONNECTION POOLING help. In C# we OPEN a connection ONLY just before run the SP or get the data and we close the connection just after the operation is over.
    I don’t’ see how CONNECTION POOLING can improve anything?
    I also don’t see how moving data into the App. Server from the DB Server can improve the performance. I think that will only decrease performance.
    Am I right or have I missed something?
    Edited by: user12240205 on Nov 17, 2010 2:04 AM

Maybe you are looking for

  • How can I attach multiple photos to an e-mail

    I would like to attach multiple photos which are already in the photos file on my ipad to e-mails I am sending from the ipad.  Is there a place in the e-mail where you can attach photos.  The only way I have found to do it is to send from inside the

  • Verizon's Run Around With the "Activation Charge"

    So I called in about a million times since the build was completed for verizon fios.  I was told each week that I would be contacted when it was going to be available.  I received 0 calls for 2 months. Fast-forward 2 months later and I call in just t

  • How do I install PS from CS 4 discs?

    Ok, this may be the dumbest question of the day. I have student version of CS 4 with three discs - App 2, Content and Learning. I put each of the first two in the CD drive and it spins but no install message. I look at the top files: AUTORUN & an ico

  • MaxL Error Codes

    Hi, We have many MaxL scripts to load, calculate, export databases etc.... The client wants more precise error messages in the emails the scripts send out to help them decipher what the problem may be in case of a WARNING or ERROR. Is there a list of

  • AV3 question

    hi friends: I am been looking into AVTransmit2.java, AVReceive2.java and AVTransmit3, AVReceive3 can your tell me what is the input and output of this function where can I change to transmit and receive my DataSource and Then presenting them AVTransm