URL Services (V2) - Selective Inline Rendering

I have the December PDK installed.
The following tag does not appear to be supported anymore in the provider.xml:
<disableInlineRenderingID>1</disableInlineRenderingID>
I need this tag to do selective inline rendering with my .asp pages. Is there a work around?
- Thanks, Kenny B

Your post gives me hope this can be fixed.
Part of provider.xml code:
=========================================================
<renderer class="oracle.portal.provider.v2.render.RenderManager">
<contentType>text/html</contentType>
<autoRedirect>true</autoRedirect>
<showPage class="oracle.portal.provider.v2.render.http.URLRenderer">
<contentType>text/html</contentType>
<charSet>ISO-8859-1</charSet>
<pageUrl>http://www.xxx.com/exchange_portlet/inbox.asp</pageUrl>
<filter class="oracle.portal.provider.v2.render.HtmlFilter">
<headerTrimTag>&lt;body</headerTrimTag>
<footerTrimTag>/body></footerTrimTag>
<inlineRendering>true</inlineRendering>
<disableInlineRenderingID>1</disableInlineRenderingID>
</filter>
</showPage>
<editPage class="oracle.portal.provider.v2.render.http.URLEditRenderer"/>
</renderer>
==========================================================
Error when trying to register provider:
==========================================================
An error occurred when attempting to call the providers register function. (WWC-43134)
The following error occurred during the call to Web provider: oracle.portal.utils.xml.v2.NodeHandlerException: Class Long postings are being truncated to ~1 kB at this time.

Similar Messages

  • Inline rendering with URL provider

    Hi,
    After registrating my application to a URL provider I can use it as a portlet. But when I try to navigate to a new page within my portlet, this new page is not rendered within the portlet boundaries. I thought the property inlineRendering of the RenderManager would force this.
    Does somebody knows how to force inline rendering?
    My provider.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.http.URLProviderDefinition">
    <providerInstanceClass>oracle.portal.provider.v2.http.URLProviderInstance</providerInstanceClass>
    <portlet class="oracle.portal.provider.v2.http.URLPortletDefinition">
    <id>1</id>
    <name>StrutsURLPortlet</name>
    <title>Struts URL Portlet</title>
    <description>My very nice Struts URL portlet</description>
    <timeout>30</timeout>
    <timeoutMessage>Struts URL Portlet timed out</timeoutMessage>
    <acceptContentType>text/html</acceptContentType>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <showPage class="oracle.portal.provider.v2.render.http.URLRenderer">
    <contentType>text/html</contentType>
    <pageUrl>http://dji02:8888/StrutsTest-StrutsTestURL-context-root/</pageUrl>
    <filter class="oracle.portal.provider.v2.render.HtmlFilter">
    <headerTrimTag>&lt;BODY</headerTrimTag>
    <footerTrimTag>/BODY></footerTrimTag>
    <convertTarget>true</convertTarget>
    <inlineRendering>true</inlineRendering>
    </filter>
    </showPage>
    </renderer>
    </portlet>
    </provider>

    Can you try this provider.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.http.URLProviderDefinition">
    <providerInstanceClass>oracle.portal.provider.v2.http.URLProviderInstance</providerInstanceClass>
    <portlet class="oracle.portal.provider.v2.http.URLPortletDefinition">
    <id>1</id>
    <name>StrutsURLPortlet</name>
    <title>Struts URL Portlet</title>
    <description>My very nice Struts URL portlet</description>
    <timeout>30</timeout>
    <timeoutMessage>Struts URL Portlet timed out</timeoutMessage>
    <acceptContentType>text/html</acceptContentType>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <contentType>text/html</contentType>
    <showPage class="oracle.portal.provider.v2.render.http.URLRenderer">
    <contentType>text/html</contentType>
    <charSet>ISO-8859-1</charSet>
    <pageUrl>http://dji02:8888/StrutsTest-StrutsTestURL-context-root/</pageUrl>
    <filterType>text/html</filterType>
    <filter class="oracle.portal.provider.v2.render.HtmlFilter">
    <headerTrimTag>&#60;BODY</headerTrimTag>
    <footerTrimTag>/BODY></footerTrimTag>
    <inlineRendering>true</inlineRendering>
    </filter>
    </showPage>
    </renderer>
    </portlet>
    </provider>

  • How to use page parameters with inline rendering portlet

    I am trying to use the inline rendering portlet. Basic functionality works fine.
    What I am trying to do is make the inline rendering portlet use a page parameter. Is this possible?
    I have read pdk articles, but nothing seems to have what I need.
    Any ideas are appreciated.

    Perhaps i might have missed something, but what do you mean by the inline rendering portlet? Are you referring to the URL services portlets that rendered content inline (in the same Portal context & window without popping a new window)?
    I would be able to look into this if you could elaborate on the issue at hand.
    Regards,
    Abhinav

  • Url service data control - problem while  POSTing to a restful webservice

    Hi,
    I am trying to call a restful webservice to add a new employee .I have created the url service data control. The service method consumes XML.
    When i am creating the url service datacontrol I selected the http method as POST and giving the servicepath and servicename as the source. After providing the xsd's path and all , when I test the url connection, I am getting the following error message:
    URL Test: Received Error: Method Not Allowed
    This might be because the clicking of the test url button is sending the get request, but the actual method is POST.
    Now under the data controls navigator, If i view the newly created data control, i could see the loadData(Object) method which i assume is for retrieving the data from the service. But since i have mentioned the method as POST, why such a method is created? Also if its there, can I use the same for insert and update? I have used this loadData (Object) method to create a button which calls the webservice upon click. Under the data control property inspector, i changed the supportsupdate attribute's value to true. But when i am trying to save the employee from the jspx page, I am getting the following message in the integrated weblogic's log
    Couldn't get access to the data source. Cause Unsupported Media Type exception in rest service
    And on the server side I am getting the following error message:
    No message body reader has been found for request class Employee, ContentType application/octet-stream.
    I think the request is not going as XML. But while creating the datacontrol i have specified the xsd document for the iput xml request. Does ADF automatically creates the XML from the input parametres? If it does not, then what could be done to achieve that? The default actionListener of the submit button is #{bindings.loadData.execute}. Do i have to override it to send the XML request? Or have I missed anything in trying to achieve what i intend?
    I had refered this link for reference :
    http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_53/jdtut_11r2_53.html
    Rampal
    Edited by: user12011868 on Jan 22, 2012 10:03 PM

    Hi Frank,
    I had specified the HTTP method as POST as well as PUT. But the same error is appearing in the both the cases.
    URL Test: Received Error: Method Not Allowed
    And when I am clicking on the 'Test URL Connection' , I can't see any option of selecting the HTTP method. This option only appears in the step 2 of creating the URL service data control where we mention the URL endpoint and the source.
    What could be the reason for the error.
    Rampal

  • Queries related to ADF Train Component, Region disable if 'No data Found' from URL service

    I have below few queries. I am using JDeveloper version : 11.1.1.6.0
    1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
    2. Hide region in case of Empty Result from URL Service Call :
         I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
         In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
    3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
    Regards,
    Niraj

    1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
    You can reference a managed bean from the view activity train definition to enable/disable stops dynamically:
    http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html
    ADF Code corner has more train examples, just search for "train" : http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    2. Hide region in case of Empty Result from URL Service Call :
         I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
         In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
    The af:region is out of scope for the table. Instead use a dynamic regions that you switch to from a managed bean (see the product documentation about dynamic regions) and then you switch to an empty region when there is no values to display. Another option would be to hide the table instead of the region using its display property. Let me know which approach you go with and if you need additional information
    3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
    an af:switcher would do the same
    Frank

  • Error in  pdk url services when using a proxy server

    Hi All,
    i created a pdk url services portlet, which connects to a google site. i got a sucessful provider test page..when i tried to add it as a portlet it gives me the following error ,
    Portlet Information could not be obtained. (WWC-44334)
    An unexpected error occurred: ORA-29532: Java call terminated by uncaught Java exception: HTTPClient.AuthSchemeNotImplException: NTLM (WWC-43000)
    An unexpected error occurred: HTTPClient.AuthSchemeNotImplException: NTLM
    at HTTPClient.DefaultAuthHandler.getAuthorization(DefaultAuthHandler.java:136)
    at HTTPClient.AuthorizationInfo.queryAuthHandler(AuthorizationInfo.java:330)
    at HTTPClient.AuthorizationModule.setAuthHeaders(AuthorizationModule.java:454)
    at HTTPClient.AuthorizationModule.responsePhase2Handler(AuthorizationModule.java:287)
    at HTTPClient.HTTPResponse.handleResponse(HTTPResponse.java:635)
    at HTTPClient.HTTPResponse.getInputStream(HTTPResponse.java:515)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch(HttpProviderDispatcher.java:809)
    what could be the reason for this error. can anyone help me plzz..its urgent
    Regds
    Kiran
    at oracle.webdb.provider.web.HttpProviderDispatcher.getPortlet(HttpProviderDispatcher.java:463)
    (WWC-43000)

    1. The version of my pdk is 3.0.9.0.5
    2. provider.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <?providerDefinition version="2.0"?>
    <provider class="oracle.portal.provider.v1.http.URLProvider">
    <session>true</session>
    <proxyInfo class="oracle.portal.provider.v1.http.ProxyInformation">
    <httpProxyHost>proxy</httpProxyHost>
    <httpProxyPort>80</httpProxyPort>
    <proxyUser>username</proxyUser>
    <proxyPassword>password</proxyPassword>
    </proxyInfo>
    <portlet class="oracle.portal.provider.v1.http.URLPortlet">
    <id>1</id>
    <name>Google.com Portlet</name>
    <title>Google.com Portlet</title>
    <description>This portlet is to test PDK-URL Services using Google</description>
    <timeout>100</timeout>
    <timeoutMessage>Google Portlet timed out</timeoutMessage>
    <showEdit>false</showEdit>
    <showEditDefault>false</showEditDefault>
    <showPreview>false</showPreview>
    <showDetails>false</showDetails>
    <hasHelp>false</hasHelp>
    <hasAbout>false</hasAbout>
    <acceptContentType>text/html</acceptContentType>
    <registrationPortlet>false</registrationPortlet>
    <accessControl>public</accessControl>
    <renderer class="oracle.portal.provider.v1.RenderManager">
    <showPage class="oracle.portal.provider.v1.http.URLRenderer">
    <contentType>text/html</contentType>
    <pageExpires>60</pageExpires>
    <pageUrl>http://www.google.com</pageUrl>
    <filter class="oracle.portal.provider.v1.http.HtmlFilter">
    <headerTrimTag>&lt;center</headerTrimTag>
    <footerTrimTag>/center></footerTrimTag>
    <convertTarget>true</convertTarget>
    </filter>
    </showPage>
    </renderer>
    <securityManager class="oracle.portal.provider.v1.http.URLSecurityManager">
    <authorizType>public</authorizType>
    </securityManager>
    </portlet>
    </provider>
    Regds
    Kiran

  • PDK-URL Services: URLPageRenderer

    In the following xml fragement from the document 'Understanding the provider.xml for URL Services'
    There is a reference to URLRenderer class in the <ShowPage> tag. We have been unable to find this class anywhere, other PDK docs refer to URLPageRenderer which also doesnt exist.
    Can you please describe the process of setting up a simple URL based Portlet ?
    <renderer class="oracle.portal.provider.v1.RenderManager">
    <showPage class="oracle.portal.provider.v1.http.URLRenderer ">
    null

    hi Rob,
    There has been a change in the name of the renderer class, with respect to the latest UrlServices version. Earlier it used to be URLPageRenderer.class and now it has been changed to URLRenderer.class.
    You can find this in 'urlservices.jar' file located at the lib directory of UrlServices download.
    This is how you need to specify your showPage tag, if you are using URLRenderer as your renderer.
    <showPage class="oracle.portal.provider.v1.http.URLRenderer">
    I think the document "Understanding Url Services Runtime" needs to be updated with the name change from URLPageRenderer to URLRenderer!
    --Sriram                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How can I pass more than one parameters in PDK-URL services?

    Hi all,
    How can I pass more than one parameters in PDK-URL service? All samples on Portal Center shows just one parameter passing.
    <inputParameter class="oracle.portal.provider.v1.URLPortletParameter">
    <name>csz</name>
    <isMandatory>false</isMandatory>
    <displayName>What location do you want a map for (City, State or Zip)?</displayName>
    </inputParameter>
    How can I write the privider.xml file for passing multiple parameters?

    I answer to my question. I've got the answer.
    I repeatly write down the <inputParameter> tags, and it works.

  • Need help in URL Service Data Control

    Hi Everyone,
    I'm working on JDev11gUp2, ADF-RC
    I am using URL Service Data Control to fetch data from CSV File and i got success but I need to know that is there any way to pass File Connection URL Dynamically at run time, As i know we have to provide URL string at design time, but i have multiple files to pass at run time , Then?
    And one more question that Once the data is uploaded into af:Table from my CSV file. then after Any data change in CSV file must reflect in af:table with that change like other iterator refresh functionality. but I'm not able to do that, Simple question is, How to Re fetch the data from CSV file at run time?
    Your answer would be really appreciated as it would really help me.
    Thanks
    Fizzz...

    Hi Fizz,
    Not sure of the answer to your specific question. A couple of thoughts, though:
    You could try putting some code in a backing bean action listener to get the data control from an iterator binding (where you have added an iterator binding to your page definition) and then using the debugger to inspect the runtime type of the data control returned - then look to see if that type has a setURL method.
    [url http://database.in2p3.fr/doc/oracle/Oracle_Application_Server_10_Release_3/web.1013/b25947/adv_data_controls005.htm]this link talks about creating your own data control type - where you could certainly expose a method to set a URL. More work, but you have complete control.
    Hope this at least gives you an idea or two.
    John

  • Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Hi Tony,
    Please refer this KB document : Return, cancel, or exchange an Adobe order
    Please let me know if you need any further assistance.
    Regards,
    Rahul

  • URL Services Data Control (REST / JSON)

    Hi,
    I am planning to write a PoC of an integration for JIRA in an ADF Application. I am not too expert on REST services but that is what JIRA API gives me, REST API.
    I have been trying to create an URL Services Data Control but I have encounter 2 problems;
    - Since I need to use 11g R1 I can't choose the HTTP type request so I just have read access through GET request. If I am not mistaken, 11g R2 allows you the possibility to chose GET,POST,DELETE etc.
    - Under the assumption that OK, I am OK just working with GET action, the REST service response comes as JSON so I don't know exactly if its worth to use the URL Data Control at this point since once I have created my DC it doesnt have any structure like would normally do.
    My questions;
    In this blog by Frank Nimphius https://blogs.oracle.com/jdevotnharvest/entry/which_option_to_choose_for he says
    Note: In the above, I exclude REST services in my recommendation because this is what ADF will
    address much better using the URL data control in JDeveloper 11g R2 (available) and with improved functionality
    in the upcoming Oracle JDeveloper 12c release.*.- Is this valid for XML and JSON responses or just for XML responses?
    *.- Do I need to create an XSD file myself in order to get a better DC objects?
    *.- Finally, what is the best approach since I am confused about all information on internet.
    Thanks
    p.s: I am using 11.1.1.6

    If you are stuck on 11.1.1.6 then you can just write simple POJOs that access the REST services and then expose those services as data controls for ADF.
    If you can upgrade to 11.1.2.3 then you'll be able to fully leverage the REST data control - the basic steps are here:
    https://blogs.oracle.com/adf/entry/exposing_multiple_methods_under_one

  • URGENT! url services portets do not render anything

    I have followed the steps to install sample url services and tested successfully the provider. When I try to access them, I do not see anything.
    I even changed one of the pageUrl's to a url located in my own webserver to make sure I am able to access the url.
    I still do not see anything.
    I checked the Jserv log and found the following errors.
    [25/06/2002 18:54:49:983 CDT] page/JNI: mMode=IGNORE. Cache write but cannot open for write.
    [25/06/2002 18:56:02:907 CDT] urlsample/Entering URLSecurityManager hasAccess(Portlet,ProviderUser) *****************
    [25/06/2002 18:56:02:907 CDT] urlsample/Entering URLSecurityManager hasAccess(PortletReference,ProviderUser) *****************
    [25/06/2002 18:56:02:907 CDT] urlsample/Entering URLSecurityManager hasAccess(Portlet,ProviderUser) *****************
    [25/06/2002 18:56:02:917 CDT] urlsample/renderBody : Entering render ********************************
    [25/06/2002 18:56:02:917 CDT] urlsample/getURLStream Inside
    [25/06/2002 18:56:02:927 CDT] urlsample/Response status: 500 : oracle.portal.provider.v1.AccessControlException: Failed to read contents from : http://www.stardeveloper.com/activeserverpages.asp
         at oracle.portal.provider.v1.ContainerException.fillInStackTrace(ContainerException.java:58)
         at java.lang.Throwable.<init>(Throwable.java, Compiled Code)
         at java.lang.Exception.<init>(Exception.java, Compiled Code)
         at oracle.portal.provider.v1.ContainerException.<init>(ContainerException.java:19)
         at oracle.portal.provider.v1.PortletException.<init>(PortletException.java:13)
         at oracle.portal.provider.v1.AccessControlException.<init>(AccessControlException.java:16)
         at oracle.portal.provider.v1.http.URLRenderer.getURLStream(URLRenderer.java:579)
         at oracle.portal.provider.v1.http.URLRenderer.renderBody(URLRenderer.java:292)
         at oracle.portal.provider.v1.RenderManager.render(RenderManager.java:165)
         at oracle.portal.provider.v1.http.ServletProviderResponse.showPortlet(ServletProviderResponse.java:524)
         at oracle.portal.provider.v1.http.HttpProvider.dispatchProviderAction(HttpProvider.java:660)
         at oracle.portal.provider.v1.http.HttpProvider.service(HttpProvider.java:390)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:435)
         at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code)
         at java.lang.Thread.run(Thread.java:479)
    Can anyone please advice on what am I doing wrong. I followed the exact steps in the installation guide.
    I am kind of stuck with this.
    Thanks in advance,
    Mainak

    Mainak,
    Looks like the correct proxy configuration information is not
    specified in provider.xml. If you need proxy to view external urls
    then the same needs to be specified through provider.xml.
    For example,
         <proxyInfo class="oracle.portal.provider.v1.http.ProxyInformation">
              <httpProxyHost>YOUR_PROXY_SERVER</httpProxyHost>
              <httpProxyPort>YOUR_PROXY_PORT</httpProxyPort>
         </proxyInfo>
    -aMJAD.

  • Error when register Url Service Sample provider

    Hello, I followed the 'URL Services Installation Instructions' described in portalstudio in order to set up URL services in my portal environment.
    I did succeed in invoking provider test page (http://<myserver>:<myport>/servlets/urlsample), but I'm not able to register the url service provider in Oracle Portal.
    When I click Apply button in the 'Create Provider' form I get the foolowing error message.
    Please help. Marco
    An error occurred when attempting to call the providers register function. (WWC-43134)
    The following error occurred during the call to Web provider: java.lang.NoSuchMethodError: oracle.portal.provider.v1.http.DefaultProvider: method getDebugLevel()I not found
    at oracle.portal.provider.v1.http.URLProvider.register(URLProvider.java:658)
    at oracle.portal.provider.v1.http.ServletProviderResponse$SoapWriter.marshalRegisterProvider(ServletProviderResponse.java:640)
    at oracle.portal.provider.v1.http.ServletProviderResponse$SoapWriter.access$1(ServletProviderResponse.java:635)
    at oracle.portal.provider.v1.http.ServletProviderResponse.registerProvider(ServletProviderResponse.java:116)
    at oracle.portal.provider.v1.http.HttpProvider.dispatchProviderAction(HttpProvider.java:632)
    at oracle.portal.provider.v1.http.HttpProvider.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at org.apache.jserv.JServConnection.processRequest(Compiled Code)
    at org.apache.jserv.JServConnection.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    (WWC-43147)

    java.lang.NoSuchMethodError has occured because its not able to locate the method 'getDebugLevel'.
    This is thrown if an application tries to call a specified method of a class (either static or instance), and that class no longer has a definition of that method.
    I guess you are not using the proper version of JPDK for the URLServices that you are using.
    Try looking at the URLServices installation/release notes for the version your are using for the JPDK version. Check this version against JPDK.
    Sriram

  • Mail Services Newbie - Selective Relaying?

    Hello everyone. I'm fairly new to OS X Mail Services, so please forgive my naiveté when asking this question. I'm a CS professor at a small college, and we recently purchased and installed an Xserve for use by our department's students. Everything is working fine with the exception of mail services. The problem is that, for local emails (@ourschool.edu), I need to relay through our (separate) SMTP server. This works fine when sending mail to a local address. However, when sending email to an outside address (another other than @ourschool.edu), I do not need to relay the messages through our SMTP server.
    Is there a way to configure Mail services to "selectively" relay messages based on their destination domain? Basically, if the destination is @ourschool.edu, I want to relay it. Otherwise, just send it to the destination directly.
    I know that one solution would be to open up our SMTP server for total/complete relaying from our Xserve, but I was wondering if I could accomplish the same thing without the need for relaying everything.
    Thanks!

    You cannot do this via the GUI, but if you do not mind using Terminal, this can be achieved by using transport maps.
    There are several ways of doing this, but roughly it goes like this:
    Make a copy of /etc/postfix/main.cf first.
    Edit /etc/postfix/main.cf
    comment out your relayhost setting if you have already set it:
    #relayhost = mysmtpserver.mydomain.com
    add:
    transport_maps = hash:/etc/postfix/transport_maps
    create a file:
    /etc/postfix/transport_maps
    with these contents:
    ourschool.edu smtp: mysmtpserver.mydomain.com
    otherdomain.edu smtp: othersmtpserver.mydomain.com
    save it and issue:
    sudo postmap /etc/postfix/transport_maps
    sudo postfix reload
    For more info, look at the transport maps examples here: http://www.postfix.org/STANDARDCONFIGURATIONREADME.html
    HTH,
    Alex
    P.S. The forum software mangles above sample a bit, so make sure you check the link. mysmtpserver.mydomain.com should be in square brackets and there is a * before the last colon

  • WebClipping Inline rendering - pdf links

    I have installed portalTools 90402 without problem. When I use the Inline rendering feature of WebClipping, following links to pdf files cause WebClipping to fail.
    Inline rendering is required in order to proxy the pages through the portal. Is there a workaround for this problem? I have tested without and with a mime type defined.

    What other features of Web clipping are you using? (SSO, parameters, ...)?
    You can give iframes a try.
    Peter

Maybe you are looking for

  • How to Hide Form Field If the data null

    Hi All, I have an issue in the RTF, i am working in XMLP 5.6.2 Desktop Edition. I am developing template for Dunning Letter report. I have four fields in the footer like collector name,mail id, tele number and then fax. Here some collectors may not h

  • Error in xalan

    Hello, I have a strange problem... I have a XML and a XSL. Sometimes it works, sometime not.... I'm working with xalan 2.3.4 here is my XSL:<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0"     xmlns:xsl="http://www.w3.org/1999/XSL

  • SqlServer plug-in alternatives

    Hi, We use Oracle SqlServer plug-in to monitor SqlServer databases but have to stop with it because our customers are not willing to pay the license costs of the plug-in. Are there any (free) alternatives to monitor SqlServer through Grid Control wit

  • Sort Spotlight results by creation date?

    Hi All-- At work, I've recently switched from an old old version of MS Outlook to Entourage 2004, which seems much better. I'd like to archive my old mail, and use Spotlight to search it. This works very well, except that with e-mail, the "date recei

  • Copy table structure with default column values

    Hi.... I created a table by copying another table structure by using below query..... SQL> CREATE TABLE SAMPLE_TEMP AS SELECT * FROM SAMPLE WHERE 1=2; But my problem is " the default column values are not copied to new table" Suggest a query like tha