J2EE GUI client login

Hi:
I wrote a GUI client for a EJB running on SJSAS7. It works fine. Now I would like to put some security on it. How do I let users login? Do I create a JAAS module or just set up the security restrictions on the EJB's methods?
Sam

Thanks. This is important piece of the puzzle. I got some more question about this. On the server development guide says:
custom realms must extend com.sun.enterprise.security.auth.login.PasswordLoginModule class. This class extends javax.security.auth.spi.LoginModule. Custom realms must not extend the JAAS loginModule directly
Now here comes the question. The JAAS login module suppose to obtain the user's password and user name in login() Since you don't extend login module, how do you obtain user name and password? Does that mean the only way to pass user name and password to login module is by appclient script? Thanks
Sam

Similar Messages

  • Oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fau

    Hi Kiran,
    I setup a soa server on label DEVHCM, and I am using rel7 zip db because rel8 zip db has series performance issue.
    I login as worker and create a goal , and submit for manager’s approve. But when manager trying to approve the goal, the access denied error happen, do you have suggestions on this.
    <messages>
    <input>
    <approvalResult_InputVariable>
    <part name="parameters">
    <approvalResult>
    <transactionId>300100015330778</transactionId>
    <taskId>d39d4ca1-04cb-4709-b471-4020e236c5b8</taskId>
    <result>APPROVED</result>
    </approvalResult>
    </part>
    </approvalResult_InputVariable>
    </input>
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <remoteFault>
    <part name="summary">
    <summary>access denied (oracle.wsm.security.WSFunctionPermission http://xmlns.oracle.com/apps/hcm/talent/common/transactionService/TalentTransactionService#approvalResult invoke)</summary>
    </part>
    <part name="detail">
    <detail>oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : access denied (oracle.wsm.security.WSFunctionPermission http://xmlns.oracle.com/apps/hcm/talent/common/transactionService/TalentTransactionService#approvalResult invoke)</detail>
    </part>
    <part name="code">
    <code>{http://schemas.xmlsoap.org/soap/envelope/}Server</code>
    </part>
    </remoteFault>
    </bpelFault>
    </fault>
    <faultType>
    <message>0</message>
    </faultType>
    </messages>
    Here is my wf_client_config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <workflowServicesClientConfiguration xmlns="http://xmlns.oracle.com/bpel/services/client">
    <server name="default" default="true" clientType="REMOTE">
    <localClient>
    <participateInClientTransaction>false</participateInClientTransaction>
    </localClient>
    <remoteClient>
    <serverURL>t3://slc03zii.us.oracle.com:7012/soa-infra/</serverURL>
    <initialContextFactory>weblogic.jndi.WLInitialContextFactory</initialContextFactory>
    <participateInClientTransaction>false</participateInClientTransaction>
    </remoteClient>
    <soapClient>
    <rootEndPointURL>http://slc03zii.us.oracle.com:7012/soa-infra/</rootEndPointURL>
    </soapClient>
    </server>
    </workflowServicesClientConfiguration>
    And when I deploy talent application I check the mid tie of the talentTransactionService.

    Hi,
    I am also facing a similar issue after deploying the web-service onto WebLogic Server. Not sure if it is related to deployment or security-related issue. Here are the exception details:
    oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : access denied (oracle.wsm.security.WSFunctionPermission http://xmlns.oracle.com/apps/scm/dos/supplyRequestDecomposition/receiveSupplyRequests/decompRcvService/ProcessSupplyOrdersService#createSupplyOrderHeaders invoke)
    Anyone faced the similar issue? Help appreciated.
    Thanks in advance,
    Bhushan

  • Client logins

    How could I implement client logins to a RMI application in Java? What should I use?
    I (will) have a RMI application and i want dude A when he loggs in to be able to call only some methods on the stubs. However, I want dude B to be able to access all the methods. How could I possibly do that?
    Thank you.
    Adi.

    Yes it does. Thank you very much. So here is my complete idea:
    Every module will have a XML descriptor. Within that descriptor, every component of the module will have to have a descriptor with every remote method and every group that can execute it. This will be stored in a HashTable on the server. The primary key is the Class + "." + methodName and the value is an array of strings with the name of the groups that can execute it. Every "secure" remote method will check the module for the right permissions:
    The username/password combination will generate a unique key (J2EE JSESSIONID cookie springs to mind) that will be passed to the client and stored in a hashtable on the server. The HashTable will have as primary key the string (or Long) and as values the group under which the user is situated. The checkCredentials functions will get the group for a uniqueID, then it will check the credentials of that group.
    For let's say 30 users I don't think (read "hope") this won't be too much of a slow down.
    =======
    A more efficient way would be to create three interfaces (as posted here) RemoteRead, RemoteWrite (extends RemoteRead) and maybe RemoteCreate (extends RemoteWrite) to be passed to the client. This would eliminate the need to check the credentials for every remote procedure call but I'm still left to wonder whether the client would be able to create a Write interface for something that he doesn't have write access (anymore)? Let's assume he creates such an interface: it would need to have a corespondant on the server, right? I mean object A has full acces to the database. User U has only Read acces and the object gives him the read interface.
    1) Is it possible for him to programatically create a Write interface?
    2) Suppose he can can he somehow link it with the remote object and obtain Write privileges?

  • GUI Client for Oracle 8.1.5 on R.H. Linux!

    Hello all,
    I have had Oracle 8.1.5 on my Red hat Linux 6.2 server for a while now. Everything works great but I would like to know if this version of Oracle comes with a GUI client that will allow me to view tables, make changes, drop tables and such through (basically a GUI administrative tool) GUI interface as opposed to the regular command line I have been using.
    If there isnt one, anyone know of a free third party software that will enable me do these tasks with a GUI client.
    Thanks, All!

    I have such a thing it is called Orasoft.
    It is some kind of GPL software that is easy to compile and works like a charm (make sure you have enough ram).
    I don't know where I got it but I'm sure you can find it it in a search engine.

  • Cannot connect a Java GUI client to an EJB

    I am having problems trying to make a Java GUI client connect to an EJB. I am using JRun4.
    At first, I tried making the Java GUI client a part of the enterprise application that I am building (of which the EJB is a part of). I included the client as a Java module in the application.xml of the enterprise application.
    However, when I try to start the server, containing this application, I get an error saying:
    Application authentication required. Incorrect method call.
    Now when I try to execute the application from the console, it works fine except when it comes to the part when it has to connect to the EJB. At this point I get an java.lang.reflect.UndeclaredThrowableException. Here's the stack trace:
    java.lang.reflect.UndeclaredThrowableException
    at $Proxy1.create(Unknown Source)
    at mds.Caller.actionPerformed(Caller.java:135)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: jrun.ejb.invocation.ContainerNotFoundException: The EJB container for boss-ejb#Boss could not be found.
    at jrun.ejb.invocation.AbstractInvocationProxy.findContainer(AbstractInvocationProxy.java:58)
    at jrun.ejb.invocation.LocalInvocationProxyImpl.invoke(LocalInvocationProxyImpl.java:53)
    at jrun.ejb.invocation.ClientInvocationHandlerImpl.invoke(ClientInvocationHandlerImpl.java:198)
    ... 25 more
    Since the bean is local, I am using a local reference to the bean in the lookup in the code of the client:
    Object o = context.lookup("local/BeanTest")
    I tried to use:
    Object o = context.lookup("java:comp/env/ejb/BeanTest")
    and added an ejb-local-ref in the application-client.xml file of the client. But when I try executing the client in this case, I get an error saying:
    No such binding: ejb
    I wish someone can help me out with this. My main aim is to get the app client talk to the EJB. Thanks a lot in advance.
    Soham

    I am not sure of a tool to view the JNDI tree. I have one in Weblogic console. But you can check the JNDI names with a small sample code.
    import java.util.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    public class TestEnvironment {
        public static void main(String[] args) {
            Context context   = null;
            Object object     = null;
            // Hashtable for environment properties.
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL, "t3://localhost:7001");
            try {
                context   = new InitialContext(env);
                NamingEnumeration enum = context.listBindings("");
                while (enum.hasMore()) {
                    Binding binding = (Binding) enum.next();
                    System.out.println("Name: " + binding.getName());
                    System.out.println("Type: " + binding.getClassName());
                    System.out.println("Value: " + binding.getObject());
            } catch (Exception exception) {
                exception.printStackTrace();
    }Hope this helps.

  • Client Login Procedure

    Our business involves sending out topical economic and financial research in multiple daily e-mails to our clients. We wish to prevent e-mail forwarding of this research to non-clients. While there seems to be nothing to prevent e-mail forwarding itself, we hope to control access to our research by using attached PDF files.
    The solution seems to be Policy Server, but I have an initial question about client login. What exactly does it mean that clients must log in to Policy Server before they are allowed to view a PDF sent to them? Is this done automatically when the client tries to open a PDF, or must they do this prior to attempt opening the file, and must they do this before every PDF file sent to them (we send several every day). If the latter, most of our clients would object to this extra step each time. And does this mean we need to open our firewall to the server for all clients?
    Thanks

    [email protected] wrote:
    > Thanks Justin
    >
    > This helps a lot for us to move forward with this solution. I'm wondering, however, just how stable a server is going to be outside a firewall. I wonder if there is a port forwarding solution that would open up the firewall just to policy server requests, but still, it sounds like a not very secure situation. There must be something within an LDAP server that will secure the server.
    >
    > Thanks for your help!
    >
    > Carl Steen
    One other thing...the web application should be configured to run SSL (https). This is a
    requirement of Policy Server and will encrypt all communication between the client and server.
    Regarding your security concerns...Policy Server doesn't need to be running on a computer outsite
    the firewall...it just needs to be accessible from outside the firewall. This is how many corporate
    websites are set up.
    Justin Klei
    Cardinal Solutions Group
    www.cardinalsolutions.com

  • Client login and purchasing

    I want to switch my photography website from Zenfolio to Behance Pro but before I do I want to confirm that Behance provides the capability to have client login and purchasing capabilities. I've not explored Behance in minute detail, but I just don't have anymore time! Perhaps for this type of site it's better to work through Adobe Muse?

    Hello - to address your questions:
    1) For "client login," you can create a password-protected page for clients. When you give them the link to this, they'll be required to enter a password.
    2) While we don't have an e-commerce feature on ProSite, you can mark specific images as "for sale" by using this feature:
    More on this here: https://behancenetwork.zendesk.com/entries/21953670-How-can-I-mark-my-work-as-for-sale-on- Behance-
    Let me know if anything else comes up.

  • Client login +cms

    Hi,
    Maybe I bite more than I can chew but this is what I want to make. On a
    small site I have to create a client login. On this website my client must
    be able to generate a log&pass that sends his clients to a specific page where
    they can read a comment and review 1 or 2 video clips. So he must be able to add some text and to hook up the clips.
    The whole setup is small. We're talking around 5 clients logging in to 5
    unique pages. Maybe even 3 will do. So client1 > can only view secure page1, client 2 >
    can only view secure page 2, etc.
    What is the best solution for this situation? I have little experience with
    creating a secure area (only MyLocked Area) but no experience with a cms
    yet. The site is hosted on a server which supports php, perl, cgi-bin and
    mysql. I'm working with GL CS2, OS 10.4.11.
    TIA, Stoli

    Since it's only a few required pages it might be easiest to use an .htaccess file. If your server supports them. They are supported by Apache servers and can be created by hand or through a c-panel interface. What your doing is simply password protecting some directories. Here's a tutorial on how to do it by hand.
    Set up pages like this:
    main_page
          subdir1/index.html
         subdir2/index.html
         subdir3/index.html
         subdir4/index.html
         subdir5/index.html
    Then make htaccess files to give each each subdir it's own username/passwords.
    Someone enters the main page and selects who they are. This links them to the appropriate subdir where they are asked for their proper username/password to enter.

  • Client Login to own album

    Hi everyone,
    Is it possible to login and display an album for a specific client?
    I have set up two tables client_login and Wedding_alb, which both contain the field client_id. Each client has an album of wedding images that I want them to be able to login to, so that they can only view their own images. I have two user levels set on my client login page, one for admin and one for client. I want the client page to redirect to the clients own album page which I have set up to show thumbnail images with a horizontal looper. This I have linked with the client_id fields in the client_login table and wedding_alb table passing a url. Does this make sense?
    I have tried to set the redirect on success page using a dynamic parameter but this hasn't worked, is there an easy way to set up the login link?
    Thanks in advance
    Sarah

    Hi Günter
    "SELECT * FROM Wedding_alb WHERE client_id" equals ADDT´s session variable kt_login_id
    Many thanks for your reply I added the above query you suggested to the clients own album page but does not appear to work as it has not triggered a specific clients own album on that page when I logged in from the client login page.
    Do I need to add anything else to the client login page or clients album page?
    Ps. I only have one page its called 'wedding_client.php' which I want to display different client albums on triggered by which client logs in from the client login page.
    Cheers
    Sarah

  • Reports 9i/10g J2EE Thin Client for Websphere Application Server 5.x /6.x

    We are having Reports developed in 6i which needs to be migrated to Reports 9i/10G and we want to deploy these reports in web using Websphere Application Server 5.x /6.x without Oracle iAS.
    Do we have Reports 9i/10g J2EE Thin Client for Websphere Application Server 5.x /6.x and if so please let me know.
    Also if anybody has the configuration details please let me know?
    Thanks in Advance.

    No there is not. I don't think you can use reports services with Websphere - besides as far as I know it is not supported by Oracle (not anywhere in their support matrix).

  • Calling SAP GUI Client from a Java Webdynpro app.

    Hello experts,
    We would like to call the SAP GUI client from a java WebDynpro application running without portal or ITS. Can it be done by having a web link, with mime registration in internet explorer to kick off the SAP GUI ? (similar behavior with a SAP favorite link saved on the desktop).
    many Thanks.

    Hi,
    Webdynpro possibilities:
    1. You can try to use LinkToUrl.
    with reference to file://<exefile> or your weblink with the mime type (possibly some java coding can be required; I can try to help).
    2. other option is to use IFrame and you can use either href to your exe or weblink
    Web Explorers:
    1. IE: It should work. if you point to exe file popup window will be displayed asking for action (run, save, cance).
    2. Firefox: the only way I know to make it work is to modify nsHelperAppDlg.js file (if you need Firefox I can tell you how to modify the file).
    Kind Regards, Jack

  • J2EE Thin Client for BEA

    I need to run reports from WebLogic. I downloaded Oracle9i Reports - J2EE Thin Client (J2EE Thin Client for BEA). I am stuck on step 10 of Readme:
    10. Shut down the existing Weblogic server and restart it using startExamplesServer.cmd on the command line or use the link in the BEA program group. Invoke the Oracle9i Reports servlet http://<your_web_server>:<port_number>/reports/rwservlet
    If you see the Oracle9i Reports servlet help page, that means that Oracle9i Reports J2EE Thin Client has been installed and configured successfully.
    In my case http://<your_web_server>:<port_number>/reports/rwservlet results in
    Error 500--Internal Server Error
    java.lang.VerifyError: class org.omg.PortableServer.AdapterActivatorPOA overrides final method .
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at com.inprise.vbroker.orb.ORB.adapterManager(ORB.java:1101)
    at com.inprise.vbroker.ds.DSUser.(DSUser.java:282)
    at com.inprise.vbroker.ds.Init.init(Init.java:20)
    at com.inprise.vbroker.orb.ORB.installServices(ORB.java:922)
    at com.inprise.vbroker.orb.ORB.initialize(ORB.java:831)
    at com.inprise.vbroker.orb.ORB.set_parameters(ORB.java:950)
    at org.omg.CORBA.ORB.init(ORB.java:337)
    at oracle.reports.rwclient.RWClient.initCORBA(RWClient.java:537)
    at oracle.reports.rwclient.RWClient.RWClientInit(RWClient.java:508)
    at oracle.reports.rwclient.RWClient.init(RWClient.java:220)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1070)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:893)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:842)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:782)
    at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:504)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:349)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6291)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3575)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2573)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    Any suggestions?
    Thanks,
    Solomon Yakobson.

    This is not a JDeveloper component, so you won't find it here.
    Try the Reports forum:
    http://forums.oracle.com/forums/index.jsp?cat=19

  • Oracle9i Reports J2EE Thin Client

    Hi all,
    I tried to create a own report servlet with the Oracle9i Reports J2EE Thin Client.
    The reason I want to have a own report servlet is, I want to have a own path to access the reports. At the moment it is possible to access the reports with the following two URL's. http://HOST:PORT/reports/rwservlet or http://HOST:PORT/repdemo/rwservlet.
    But I want to access the reports with the following URL: http://HOST:PORT/mypath/rwservlet
    I did the following. I downloaded the OC4J version of the reports thin client, altered the paths in the reports.ear to 'mypath' instead of 'reports' and deployed the application in a new created OC4J instance within my Oracle 9iAS Server.
    After the application was deployed I added the two libraries zrclient.jar and rwrun.jar under the General Properties of the newly created reports application. When the path of this two libraries is showing to the extracted OC4J thin client I get the following error:
    500 Internal Server Error
    java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:195)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1931)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4366)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2541)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:616)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:152)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:802)
    at java.lang.Thread.run(Thread.java:484)
    When the libraries are showing to the rwrun.jar and zrclient.jar which are installed during the installation of 9iAS I get the following error:
    500 Internal Server Error
    java.lang.NoClassDefFoundError
    at oracle.ias.repository.IASSchema$Enc.d(IASSchema.java:1361)
    at oracle.ias.repository.IASSchema.init(IASSchema.java:159)
    at oracle.ias.repository.IASSchema.<init>(IASSchema.java:114)
    at oracle.ias.repository.SchemaManager.<init>(SchemaManager.java:64)
    at oracle.reports.utility.OIDConnection.init(OIDConnection.java:57)
    at oracle.reports.rwclient.RWClient.RWClientInit(RWClient.java:407)
    at oracle.reports.rwclient.RWClient.init(RWClient.java:196)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1997)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4366)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2541)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:616)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:152)
    at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:802)
    at java.lang.Thread.run(Thread.java:484)
    Does anyone know if it is possible to create an own reports servlet within a Oracle 9iAS installation. I guess we should be able.
    Thanks for your help
    Oliver

    Answered in another thread.
    -Jeff

  • J2EE Proxy client

    I need to call an external webservice from oracle db... but this web service does not support "SOAP with attachments" and its specification says that we have to develop a J2EE proxy client to access this web service, this still could be done in a stored procedure?, I know that with Jdeveloper I can generate a 'web service stub/skeleton' but how make this stub accesible from oracle with PL/SQL? is this possible?
    thanks in advance

    I feel following links will help...
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    http://www.oracle-base.com/articles/9i/ConsumingWebServices9i.php

  • How to create and run J2EE application client for Hello World EJB

    Hi
    I am new to NWDS EJB deployment.I have created a "Hello World" bean. But how to deploy it and run using a J2EE application client step by step.
    Also please help in the steps of the deploy tool.
    Thanks in Advance

    Hi Ananda
    Check this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/55/600e64a6793d419b82a3b7d59512a5/content.htm
    cheers
    Sameer

Maybe you are looking for

  • Getting lag after change new mother board

    i tried everything, installed my windows 5 times, upgrade all drivers, setting bios but i still getting lag especially when playing warcraft tft game, all starts when i change my mobo ms-7313 v please help me ,im getting stress b'coz of it . please l

  • HP LaserJet 3015 not printing with 10.5.6

    I just upgraded from 10.5.5 to 10.5.6 and my HP Laserjet does not print. I removed it and added it back but when I try to print it always gives me the following error when the printer queue is trying to connect: Printer busy (status:0xe00002e9) Pleas

  • How do I do a clean install on my mac pro with snow leopard?

    I got a Ssd drive, I did a carbon copy from my old drive, it was running Great, but now it's freezing how do I reinstall snow leopard , ive tryed booting from disc but won't work don't know what too do plZ help.

  • PC's disappear from Airport Extreme Network

    I have an Airport Extreme and three computers (MacPro and 2 PC's) Ethernet hard-wired to it for internet connection -- which works fine on all three computers. I set up a network between the three computers about a month ago and it worked perfectly f

  • Now can't send texts as usual after receiving 1st iMessage

    someone just sent me an iMessage (my first). Now I can't send a normal text. When I try to type in a message as usual, my keystrokes don't make anything happen now. What can I do?