Creating a Web Provider on a separate Application Server

We have developed some JSP and servlet code that requires the JSDK 2.2 and JSP 1.1, so using JServ is not an option for us.
Rather than modify iAS to use Tomcat, I would like to register a Web Provider running on a separate Tomcat box with Oracle Portal.
After following the instructions in the "installing.jpdk.html" document (JPDK January) I have successfully installed a Web Provider in Tomcat and I've verified that Oracle Portal and the provider talk to each other.
However, I can't get any of the sample JSP portlets to function under Oracle Portal. The URL to the Hello World JSP example is:
http://host:8080/auportlets/jpdk/
helloworld/hello.jsp
Consequently, I've made the following changes to the provider.xml file section for the HelloWorldJsp portlet:
<appPath>/auportlets/jpdk/helloworld
</appPath>
<appRoot>[path to tomcat]\webapps\
auportlets\jpdk\helloworld
Yet, Oracle Portal returns the information "500 Internal Server Error" every time I try and access the Hello World JSP portlet.
Any thoughts as to why this isn't working?
Thanks,
Ben

Hello,
I've been trying to get a web provider working with tomcat and 9iAS portal and haven't been successful. First, I tried using a JSP I deployed on tomcat, but keeping JServ for the parallel page engine and stuff. Then, I tried completely replacing JServ with tomcat. I can get the parallel page engine to work, but I haven't been successful getting a web provider working with tomcat. The provider's test page works fine, but I can't get the portlet itself to work. In suggestions on how to get this to work would be great.
Thanks...Joel
[email protected]

Similar Messages

  • Is there a possibility to run tRFC entries alone in Separate application server

    Please let me know if there is a possibility to run tRFC entries alone in separate application server.
    If yes , kindly let me know how it can be tracked and separated to server as we have immediate idocs also which will run via tRFC.
    Thank you !!

    Hi,
    Thank you for your interesst.
    This internet button key is one of buttons located above the keyboard near the power button. What I have achieved to this moment was to stop it functionality in the system by clearing the entries in the fields Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\17\ShellExecute and entry
    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\7\Association that was http
    After these changes in registry the behavior of the button was suppressed, the Firefox stopped to start unexpectedly all the time – so in system it works. But the problem is still when I have opened Firefox. Every time when you want to surf in internet – the homepage is activated also unexpectedly. I wrote this post with intention to ask if there is a possibility to switch off the functionality of this quick launch button in Firefox. Because I assume Firefox overrides the system setup – this I have made in registry. I tried with some option changes in about:config but without success. And I know that for older versions of firefox was some option in about:config do disable_quick launch button. But in 10.0.2 I couldn't locate it.
    Thank you
    Regards
    Lukasz

  • Oracle SSO Warning when creating a Web Provider

    Hi,
    I am getting the following error message when I try to create a new Web Provider in portal:
    Oracle SSO Warning - Unable to process request
    Either the requested URL was not specified in terms of a fully-qualified host name or OHS single sign-on is incorrectly configured. Please notify your administrator.
    I can only see this message in a Mozilla web browser, IE hangs. I have updated the provideruiacls.xml file to include an entry for my portal user with privilege="500".
    Can anyone help?
    Thanks in advance.

    Please us ethe below workaround
    For Providergroup, webproviders:
    To create providers etc., you have to give privileges to users in the following XML file:
    <OH>/j2ee/OC4J_Portal/applications/portalTools/providerBuilder/WEB-INF/deployment_providerui/provideruiacls.xml
    To give privilege do the following:
    <providerui xmlns="http://www.oracle.com/portal/providerui/1.0">
    <objectType name="ALL_OBJECTS">
    <object name="ANY_PROVIDER" owner="providerui">
    <user name="orcladmin" privilege="500"/>
    <user name="portal" privilege="500"/>
    <user name="any_provider_manage_user" privilege="500"/>
    <user name="any_provider_edit_user" privilege="400"/>
    <user name="any_provider_execute_user" privilege="300"/>
    <user name="any_provider_create_user" privilege="100"/>
    </object>
    <object name="ANY_PORTLET" owner="providerui">
    <user name="orcladmin" privilege="500"/>
    <user name="portal" privilege="500"/>
    <user name="any_portlet_manage_user" privilege="500"/>
    <user name="any_portlet_edit_user" privilege="400"/>
    <user name="any_portlet_execute_user" privilege="300"/>
    </object>
    </objectType>

  • Creating a web provider for java portlets

    Hi all,
    i'm using
    - Oracle Database Server 8i (Rel3 - 8.1.7.1.1)
    - Oracle 9i Application Server (Rel2 - 1.0.2.2.2)
    - Oracle Portal 3.0.9.8.2
    I'm trying to crate a web provider in order to use java portlets, but there's a problem with:
    "An unexpected error occurred: ORA-29531: no method getPortletList in class oracle/webdb/provider/web/HttpProviderDispatcher"
    Does anyone know why?
    I've searched for the class mentioned above but I can't find it..
    thanks for the reply,
    Alessio ([email protected])

    The problem is probably caused by prohttp.jar becoming invalid or corrupt inside the database. The file is found in <IAS_HOME>/portal/lib (or jlib). Use the following command to reload.
    loadjava -resolve <portal user>/<portal pass> <file path>/prohttp.jar

  • Create New Web Provider

    when i click on create new...web provider, i get this err msg:
    Oracle SSO Warning
    Request not granted. Please specify the URL in terms of a fully-qualified
    host name and try your request again.
    If the problem persists, please notify your administrator as the Oracle SSO
    configuration may be invalid.
    any solution for this is appreciated.
    Thanks

    Go to the Portal Design Time Pages > Build tab > 'Providers' portlet > click on the 'Register a Portlet Provider' link. You should succeed this way.

  • How to create a .CSV file & place it  in Application server

    Hi All,
    I have a requirement like .
    1.Create a .CSV file by using report output data.
    2.The .csv file should be placed in application server.
    When user will execute the report,
    automatically a .csv has to generate and that should be available at application server.
    points will be rewarded.
    Thanks,
    Anil

    Hi,
      Whatever the final output internal table is there  loop that
    DATA : begin of i_final occurs 0,
                  field1(20),
                  field2(20),
                end of i_final.
    DATA : v_filepath (200) TYPE c Value '/data/sapdata/test.csv' .
    DATA : begin of i_file_data occurs 0,
                  Rec(500),
                end of i_file_data.
    LOOP AT i_final.
    CONCATENATE i_final-field1  i_final-field2  INTO i_file_data-rec SEPARATED BY ','.
    APPEND i_file_data.
    CLEAR  i_file_data.
    ENDLOOP.
    OPEN DATASET v_filepath IN OUTPUT  FOR TEXT MODE.
    LOOP AT i_file_data.
      TRANSFER  i_file_data-rec TO  v_filepath.
    ENDLOOP.
    CLOSE v_filepath.
    To check the file goto Tcode->AL11>data/sapdata/test.csv.

  • Web Services Requirements on Oracle Application Server 10g

    Is there any special requirements for deploying Web Services to Oracle Application Server 10g? I can deploy a Hello World Web Service to Oracle 9i 9.0.3 (OC4J + Web Cache) without UDDI but if I try to deploy to Oracle Application Server 10g (OC4J + Web Cache) it does not recognize it as a Web Service? Is UDDI now required for Web Services on 10g?

    No. Not only it isn't certified, but it is also impossible to run forms compiled with the 11g compiler with the 10g runtime. For 11g there is a install bundle for the developer suite / application server.
    cheers

  • How to create the deployment descriptor with the sun application server

    I have packaged my .war and ejb-jar files. I go to autodeploy and it says i need a deployment descriptor?

    this is actually an example .ear file that i am trying to run. When i create the client with the deploytool that comes with suns application server i get
    C:\appclient>appclient -client swe645-appClient.jar
    Caught an unexpected exception!
    javax.naming.NameNotFoundException: EditEmpBean not found
            at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.
    java:185)
            at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.ja
    va:157)
            at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialCont
    extProviderImpl.java:101)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(Reflecti
    veTie.java:123)
            at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
    tchToServant(CorbaServerRequestDispatcherImpl.java:648)
            at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
    tch(CorbaServerRequestDispatcherImpl.java:192)
            at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
    Request(CorbaMessageMediatorImpl.java:1709)
            at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
    (CorbaMessageMediatorImpl.java:1569)
            at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(C
    orbaMessageMediatorImpl.java:951)
            at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.call
    back(RequestMessage_1_2.java:181)
            at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
    (CorbaMessageMediatorImpl.java:721)
            at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatc
    h(SocketOrChannelConnectionImpl.java:473)
            at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(
    SocketOrChannelConnectionImpl.java:1262)
            at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.
    run(ThreadPoolImpl.java:409)

  • Using DBCP to provide a DataSource for Application Server Plaform Edition 8

    Hi,
    I am trying to intergrate Mckoidb into AS PE 8. Mckoidb does not implement the DataSource interface, so I am considering using Apache DBCP simpy as a wrapper around the Mckoidb connection to satisfy the configuration requirement. My intention would be to simply use DBCP as a means of creating a DataSource object, not as a datapool facility.
    My questions are:
    1) is this doable?
    2) Is it a reasonable way solve the problem?
    3) Any suggestions on a better way to do this?
    This would seem to me to be a fairly common problem as most of the open source databases do not at this point implement the DataSource interface. Possibly a genreric solution is in order until that situation changes.
    Thanks,
    Joel

    I also tried that with AS400 driver without success.
    But I kindly received help (by lancea) with the driver. I found out that in jakarta connection pool, tomcat uses the driver com.ibm.as400.access.AS400JDBCDriver and Application Server's pool uses com.ibm.as400.access.AS400JDBCDataSource.
    When using the new data source class name, the system automacally show me all the necesary properties, the same IBM toolkit describes.
    So maybe you can try other data sources name, maybe you can look at the source, or maybe can ask Mkcoi lists.
    One thing I want you to note. If you create incorrectly the connection pool, it is better to erase it an create a new one to continue trying, because I notice that if you change to the correct parameters the system will not connect.
    Happy coding,
    Lorenzo Jimenez

  • Web hosting service for Sun Application Server

    Can anyone tell me if there is any webhostingf service that uses Sun Applications Server...pls pls pls....

    Yeah, I can understand the pain. I don't know about anybody else, but I'd like to work with you 1 on 1 via email to help ease the tomcat deployment issues, if that's something you'd like to give another shot at?
    Please drop me a line at, if interested:
    raveqa-testapps AT SUN DOT COM
    I found the thread below to be of help in most tomcat deployment issues, but let's see what we can do to get you up and running with the absolute minimal effort needed in configuration.
    http://forum.java.sun.com/thread.jspa?threadID=5101183
    /sqad

  • Web from html with Jdeveloper (Application Server)

    I configured OAS and I could access to my project (Jdeveloper) at the local.
    For instance ;
    when the client users use this "http:\\localhost:7777\srdemo" link, they can access the project. But I can't configure our server to web like this. What can I do for configure and run at the web my project.
    Note: I use Windows Server 2003

    The Connection refused error is caused because:
    1.     The database SID specified is incorrect.
    2.     The database instance has not been started.

  • Create report output to the Client of the Application Server inst.of Server

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

  • How to create an rss feed for a database application page

    Hi
    I need to create a web service for an apex application page so that it can be utilized and hosted another server of apex. For that we thought of creating an rss feed for that application page.
    Please help me out how to create an rss feed for an apex page.
    Thanks in advance.
    Regards
    Sandeep Artham

    Hi,
    This might help
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21674/advnc_web_services.htm#sthref2628
    Also Blog posts
    http://tylermuth.wordpress.com/2008/01/22/producing-rss-from-plsql/
    http://richmurnane.blogspot.com/2010/03/oracle-apex-creating-simple-rss-feed.html
    http://www.apex-blog.nl/node/8
    Regards,
    Jari

  • Top down approach for creating the web services in NWDS 7.1

    I am trying to develop a web service in top down approach.
    1) I created a Dynamic web project.
    2) Created a WSDL File using the WSDL Graphic editor.
    3) Now i am trying to create the Webservice from the WSDL file ,  i am getting the following error
    The SAP Netweaver Web service runtime does not support the service project type Dynamic Web Project.
    How do i created the web service from here on.
    Regards
    ABS

    In NWDS 7.1 i used to create webservice.I followed the process given in sap help.
    steps:
    1.      In the SAP NetWeaver Developer Studio, you create an EJB Project and an enterprise application project for the Web service.
    2.      In the EJB Project, you create an EJB Session Bean 3.0 and implement the business logic of the Web service.
    3.      You expose the EJB Session Bean 3.0 as a Web service, using the Web service wizard in the SAP NetWeaver Developer Studio.
    4.    You deploy the Web service endpoint on the application server.
    Thanks,
    Murthy.

  • V2 web provider has an unchangeable (cellpadding=2)

    HI All,
    I have created a web provider through url_services. I have noticed that when the portlet is displayed on the page portal adds an cellpadding="2" around the portlet. There does not seem to be anyway to control this.
    If the exact same html is displayed through a database provider dynamic page portlet there is no cellpadding.
    Is there a fix to resolve this solution?
    Thanks
    Joel.

    JPDK by default sets the value of "cellpadding" to 2. We can change
    this value by extending the DefaultContainerRenderer and overriding
    `renderShowHeader` method.
    <!-- SAMPLE CODE -->
    public class MyContainerRenderer extends DefaultContainerRenderer
    public void renderShowHeader(PortletRenderRequest request,
    PrintWriter out,
    Map params)
    throws PortletException, IOException
    RenderContext context = request.getRenderContext();
    if (context.hasTitle())
    renderPortletTitlebar(request, out, params);
    out.println("<TABLE BORDER=\"0\" WIDTH=\"100%\" CELLPADDING=\"0\" CELLSPACING=\"0\" class=\"RegionNoBorder\">");
    out.println("<TR><TD class=\"RegionHeaderColor\" WIDTH=\"100%\">");
    Once it is compiled and placed in proper location, modify provider.xml
    for your portlets which should not contain borders.
    <provider ...
    <portlet ...
    <containerRenderer class="MyContainerRenderer" />
    </portlet>
    </provider>
    This tag can also be specified at provider level in which case all
    portlets will use the same container renderer.
    -AMJAD.

Maybe you are looking for

  • Can you determine a dragged objects Class Name when it is dropped?

    Is there a way to determine the class name for a dragged object. I have set up two objects. One is a JList that acts as a data source for the second object which is a JTable. Both objects serve as both drag source and drop targets. I need to be able

  • How do I install Quicken Delixe 2011 from a CD onto my HP Omni 10?

    I just purchased an HP Omni 10 with Windows 8.1 and I want to install my Quicken 2011 Deluxe onto the HP tablet.  I have the Quicken Deluxe CD which I have copied onto a thumb drive.   Is Quicken 2011 Deluxe (which is installed on my Windows 7 comput

  • Wireless printing - what do I need?

    I am thinking of buying a Canon Pixma 5200R printer which according to the description prints wirelessly. I intend to plug the printer in over the otherside of the room to my Mac. I have an airport extream card in the mac. Do I need any other equipme

  • Convert Oeb to EPub

    Hi, I work for a big publisher that made a large number of Oeb files (OEBPS 1.x packages) with conversion service companies. We also made thousands of PDF's, mostly with Distiller. Is there a way to automatically convert either of these formats to EP

  • Old version of Spotify on iOS 6 in France (iPhone 3GS)

    Since Spotify update on Apple Store, it is impossible to install Spotify on my iPhone 3GS as it has to stay on the iOS6 . Do you know a way to run Spotify on iPhone 3GS (iOS6) ? Depuis la mise à jour de Spotify sur Apple Store, il est impossible d'in