Servlet chaining problem..

import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Deblink extends HttpServlet {
      public void doGet(HttpServletRequest req, HttpServletResponse res)
                                   throws ServletException, IOException {
        String contentType = req.getContentType();  // get the incoming type
        if (contentType == null) return;  // nothing incoming, nothing to do
        res.setContentType(contentType);  // set outgoing type to be incoming type
        PrintWriter out = res.getWriter();
        BufferedReader in = req.getReader();
        String line = null;
        while ((line = in.readLine()) != null) {
          line = replace(line, "<BLINK>", "");
          line = replace(line, "</BLINK>", "");
          out.println(line);
      public void doPost(HttpServletRequest req, HttpServletResponse res)
                                    throws ServletException, IOException {
        doGet(req, res);
      private String replace(String line, String oldString, String newString) {
        int index = 0;
        while ((index = line.indexOf(oldString, index)) >= 0) {
          // Replace the old string with the new string (inefficiently)
          line = line.substring(0, index) +
                 newString +
                 line.substring(index + oldString.length());
          index += newString.length();
        return line;
What is pre request fo above code to work.
I had tried this many time but it is not working, what will be calling servlet look like

And can you explain why your title is "Servlet chaining problem"?

Similar Messages

  • Can WebLogic do Servlet chaining?

    Is there any way to do servlet chaining, or more specifically, for a servlet
              to process the output of another servlet efficiently in WebLogic?
              Sure a servlet can make another HTTP request on its own servlet engine but
              that seems way too inefficient and heavy handed.
              J.
              James Strachan
              =============
              email: [email protected]
              web: http://www.metastuff.com
              

    Check out XSPs from cocoon. xml.apache.org
              -- bk
              James Strachan wrote:
              > JSP includes go straight to the HTTP response - there's no way of
              > redirecting them to some internal buffer for post processing. (*)
              >
              > I'd like to be able to do simple Servlet chaining at the Servlet or JSP
              > level. i.e. I want to post process the output of one servlet / JSP page to
              > do things like caching or XSL styling. This is a totally reasonable request
              > IMHO. Imagine a complex portal with alot of included JSP files - I'd like to
              > be able to cache whole chunks of the page - a chunk may have many includes
              > inside it..
              >
              > Right now there is no way of doing such a thing in WebLogic AFAIK. You have
              > to go through every JSP file and add caching / styling to it rather than
              > being able to 'pipeline' or 'servlet chain' which is less than ideal. (Also
              > remember there is a 64K code size limit on the bytecode that can exist in a
              > Java class - so JSP files should be kept small to void hitting this
              > barrier). I can't quite believe noone else has hit this problem.
              >
              > There are workarounds such as to do the include using seperate internal HTTP
              > requests, RMI calls or JMS messages all of which seem to be far too
              > heavyweight.
              >
              > (*)
              > <aside>
              > One side effect of the JSP include always going straight to the response
              > means that you can't use WebLogics <cache> tag if you are using any kind of
              > JSP include. e.g. the following snippet doesn't work as expected :-
              >
              > <cache>
              > something
              > <jsp:include file="foo.jsp" flush="true"/>
              > something else
              > </cache>
              >
              > since you are not allowed to do an include inside a body tag,. Even if you
              > were the output of the include goes straight to the response, not the body
              > tag.
              >
              > So you have to close and reopen the cache tags around each include which may
              > break your XML complience for complex pages and is error prone and much more
              > inefficent to boot:-
              >
              > <cache>
              > something
              > </cache>
              > <jsp:include file="foo.jsp" flush="true"/>
              > <cache>
              > something else
              > </cache>
              >
              > </aside>
              >
              > --
              > J.
              >
              > James Strachan
              > =============
              > email: [email protected]
              > web: http://www.metastuff.com
              >
              > "Jaggu Dada" <[email protected]> wrote in message
              > news:[email protected]...
              > >
              > > Hi --
              > >
              > > Why not use JSP includes? The only servlet "chaining" that is
              > > reasonable
              > > is to use a servlet to process an initial request, and make some
              > > decision
              > > (based on the querystr, for example) then, without having written
              > > anything
              > > back to the client, do a server side redirect (with RequestDispatcher)
              > > to
              > > a servlet or JSP that does some work. If I understand you correctly,
              > > servlets
              > > were not designed to do what you are proposing.
              > >
              > > Hope this helps,
              > >
              > > -jaggu
              > >
              > > James Strachan wrote:
              > > >
              > > > Hi Joe
              > > >
              > > > Thanks for that. Sure that would work too though its probably a heavier
              > > > weight than just plain old HTTP.
              > > >
              > > > I was looking for something a little more lightweight such that I could
              > > > include 10-20 servlet chains per web page on a complex portal without
              > too
              > > > much performance hit. i.e. using synchronous servlet 'pipelining' to
              > > > generate complex pages without having to do many internal HTTP / JMS
              > > > requests.
              > > >
              > > > --
              > > > J.
              > > >
              > > > James Strachan
              > > > =============
              > > > email: [email protected]
              > > > web: http://www.metastuff.com
              > > >
              > > > "Joe Trung" <[email protected]> wrote in message
              > > > news:[email protected]...
              > > > >
              > > > > Hi Jim,
              > > > > I chain my servlets via jms: the queue is output/input bin
              > > > >
              > > > > Joe
              > > > >
              > > > >
              > > > > "James Strachan" <[email protected]> wrote:
              > > > > >Is there any way to do servlet chaining, or more specifically, for a
              > > > servlet
              > > > > >to process the output of another servlet efficiently in WebLogic?
              > > > > >
              > > > > >Sure a servlet can make another HTTP request on its own servlet
              > engine
              > > > but
              > > > > >that seems way too inefficient and heavy handed.
              > > > > >
              > > > > >J.
              > > > > >
              > > > > >James Strachan
              > > > > >=============
              > > > > >email: [email protected]
              > > > > >web: http://www.metastuff.com
              > > > > >
              > > > > >
              > > > > >
              > > > >
              

  • Servlet Compilation Problem !

    Hi,
    I am just starting to learn servlets and I got problem in compiling them. I got compilation error in
    import javax.servlet.*;statement. Seems that the compiler cannot find the servlet package. I got J2EE 1.4 beta installed on my machine but there is no servlet.jar package. I am using J2SDK 1.4.1_02, J2EE 1.4 beta and Tomcat 4.1.24.
    Can anyone help me with my servlet compilation problem?
    Thanks in advance!
    Josh

    servlet.jar is here :
    <tomcatdir>\common\lib
    add it to your compiler classpath

  • Process chains problems : Working every day with error (red)

    Hi All,
    I have a next question, about process chains problem.
    When I start my process chains immediate, then working without errors,  but I want this process chains work every day and chainged properties, selected date/time and periodicaly (every day) but now it work with error.
    How to I find problems? What are yours offers?
    p.s. I see logs, but every day have diffence between errors.
    Regards,
    Mahir M. Quluzade

    HI,
    just check the time which you have given is OK or is overlappintg with some other job which is locking your table in process chain
    or is colliding with attribute change run
    or it fails because of lack of background processes.
    There could be numerious reasons and you need to analyze the log for this.
    But as you said the job is failing everday for different reasons..try to find the most common errors and try to remove it or mention that here.
    Thanks
    Ajeet

  • Proces chain problem in production

    Hello friends,
    i have faced the process chain problem in the production as "Status change of process ZD_BDIT_ACTIVATE" save status and trigge event if appropiate ? . and displayed message is " ABAP/4 Processor :DBIF_DSQL2_DEFAULT_CR_ERROR" . i want help to solved this problem and what exactly the problem is?
    actually this problem came to activation and its indicated red but when i went to data target and then i show that activation is not started or not trigger. please give me what is exactly problem and what is the proper solution.
    please reply me as soon as possible.

    Quick Checks:
    1. Check the status of User in R/3 which you have used in the RFC destination i.e SM59 and IDOC Adapter ? if it is locked , then unlock it. If password is the problem, then try to change the password.
    Don't reset it ...
    2. Also check out the status in XI, SM59... what is the user used ? is it correct etc... by testing the connection
    3. I think the IDOC Metadata is having problem.. Go to IDX2 and reimport the metadata in XI.
    Also note that, it is prefer to use Service User in SM59, and IDOC adapter instead of dialog use in the Production environment. so that no problem of locking etc
    Hope this helps`
    Rgds Moorthy

  • Servlet Chaining and OAS 4.0.8.1

    I am using the Request Dispatcher Concept for my application where a servlet either initiates a bean or calls another servlet. I believe I cannot test it from JDeveloper.But does OAS 4.0.8.1 support servlet chaining. Very Critical. if yes? Please let me know where I can find the necessary documentation.
    Thanks

    More info ...
    I enable logging and found the following error
    Unable to initiate threads: cannot find class java/lang/Thread.

  • Does weblogic server have Servlet chaining concept?

    I saw JRun which has the servlet chaining function. Does anyone know how to
              do it in the weblogic server?
              Thank you.
              li
              

    WLS does not support Servlet Chaining
              Kumar
              li wrote:
              > I saw JRun which has the servlet chaining function. Does anyone know how to
              > do it in the weblogic server?
              >
              > Thank you.
              >
              > li
              

  • How to Configure a Servlet Chain Using MIME Types with weblogic5.1?

    Hi ,
              I want to configure a servlet(cocoon) in weblogic 5.1 such that the
              servlet so configured is invoked each
              time a response with the mime-type "text/xml" is generated.
              1.) will weblogic support to configure a servlet with a particular
              mime-type so that it post-process any
              servlet's response with the corresponding mime-type?
              2.) if not what is the alternative?
              Thanks
              sumanth
              [sumo.vcf]
              

    We suggest that use the request dispatcher interface instead. Servlet
              chaining is not a standard's based possibility.
              Michael Girdley
              WLS Product Manager
              Sumanth Chinthagunta <[email protected]> wrote in message
              news:[email protected]..
              > Hi ,
              > I want to configure a servlet(cocoon) in weblogic 5.1 such that the
              > servlet so configured is invoked each
              > time a response with the mime-type "text/xml" is generated.
              > 1.) will weblogic support to configure a servlet with a particular
              > mime-type so that it post-process any
              > servlet's response with the corresponding mime-type?
              > 2.) if not what is the alternative?
              >
              > Thanks
              > sumanth
              >
              

  • Servlet chaining possibility

    Hi, A reply to one of the earlier messages, says "servlet chaining is currently not available". does it mean it would be available in future versions or do we have support for it in any of the currently available, recently released versions?
              

    i just wondering, why you want to chain the servlets in what way, is that
              the servlet application is in someway already chained in by itself.
              it would be little use in my mind to have chained servlet.
              just my opinon
              Frank
              Mahesha <[email protected]> wrote in message
              news:40d8c8fc$1@mktnews1...
              > Hi, A reply to one of the earlier messages, says "servlet chaining is
              currently not available". does it mean it would be available in future
              versions or do we have support for it in any of the currently available,
              recently released versions?
              

  • Is servlet chaining (filtering) supported?

    For a given virtual name I would like to set up a chain of servlets
              (ProducerServlet, ConsumerServlet) so that the ServletInputStream of the
              ConsumerServlet contains the results of the ServletOutputStream of the
              ProducerServlet. The ConsumerServlet is in effect 'filtering' the results
              of ProducerServlet.
              eg. BrowserRequest --> ProducerServlet --> ConsumerServlet -->
              BrowserResponse
              Can this be done with WLS 5.1?
              The RequestDispatcher interface does not seem to satisfy these requirements?
              If I understand this interface correctly, it allows requests to be either
              'forwarded' (where the output of the forwarder is not used) or 'included'
              (where the included servlet inserts output in the stream). But it does not
              allow servlets to be connected in a producer-consumer chain.
              Am I missing something?
              Thank you.
              Marko.
              

    Is there any way to achieve the same effect within the current spec?
              Marko.
              Winston Koh <[email protected]> wrote in message
              news:[email protected]...
              > Hey Marko, servlet chaining is not supported in WLS since its a
              proprietary
              > mechanism not specified in the current servlet/jsp specs
              >
              > thanx
              >
              > Winston
              > Marko Milicevic <[email protected]> wrote in message
              > news:[email protected]...
              > > For a given virtual name I would like to set up a chain of servlets
              > > (ProducerServlet, ConsumerServlet) so that the ServletInputStream of the
              > > ConsumerServlet contains the results of the ServletOutputStream of the
              > > ProducerServlet. The ConsumerServlet is in effect 'filtering' the
              results
              > > of ProducerServlet.
              > >
              > > eg. BrowserRequest --> ProducerServlet --> ConsumerServlet -->
              > > BrowserResponse
              > >
              > > Can this be done with WLS 5.1?
              > >
              > > The RequestDispatcher interface does not seem to satisfy these
              > requirements?
              > > If I understand this interface correctly, it allows requests to be
              either
              > > 'forwarded' (where the output of the forwarder is not used) or
              'included'
              > > (where the included servlet inserts output in the stream). But it does
              > not
              > > allow servlets to be connected in a producer-consumer chain.
              > >
              > > Am I missing something?
              > >
              > > Thank you.
              > >
              > > Marko.
              > > .
              > >
              > >
              > >
              >
              >
              

  • Tomcat Servlet Security Problem? : Start Excel with NJAWIN - COMObjects

    I get an exception when I start my programm as servlet , as application it works just fine (when I start it as Servlet in the internal Tomcat from JBuilder it also works fine).
    Application app = new Application(Application.progID); // interfaces built with java2com for Excel
    com.develop.jawin.COMException: 8000ffff: CoCreateInstance for "{024500-00-0000-c000-000000000046}" failed
    at com.develop.jawin.win32.Ole32.CoCreateInstance(Unknown Source)
    at com.develop.jawin.win32.Ole32.GetFromProgID(Unknown Source)
    at com.develop.jawin.DispatchPtr.<init>(Unknown Source)
    at excel2pdf.Excel._Application.<init>(_Application.java:31)
    Actually Excel is started but as SYSTEM and not as my Username. Perhaps there's a problem with the security policy, I already gave all rights to catalina for my whole projekt( each directory of it). Have smb already had this problem? Any Ideas?

    Thanks for answering
    In my case I think I cannot use POI because I need Excel
    and a Virtual Printer , so I can convert excel files with exactly the same
    format to PDF. POI is suppose better idea for creating or manipulating
    OpenOffice files (they are working together with OO on file formats),
    and unfortunately OpenOffice doesnt work fine with charts (I already had
    this solution, openoffice-server and Uno ).
    It must be smth with Tomcat-Configuration or security, because my
    programm is working with the internal tomcat-server of JBuilder, and
    as application too. In both cases Excel is started with my username and
    not SYSTEM (my tomcat server is started as service, perhaps thats why
    by starting excel from my servlet Excel is by user - SYSTEM).

  • Applet-Servlet Communication problem EOFException

    Hi! i´ve been searching and searching through forums because it seems this problem is very common, but none of the solutions i´ve seen so far suits me, so i´m here looking for some help because i´ve been stuck one week with this. First of all sorry if my english isn´t the best... i´m a bit rusty...
    Well, i had some code that worked perfectly, but i needed to perform some changes because i needed the servlet to send more info to the applet, and here started the problems, when i made the changes it started to throw EOFException when i was trying to read the InputStream, and furthermore when i came back to the original code it started to throw the exception in the same place too
    So here i am... don´t know what to do now and i entrust to you to give me some tips.
    Here comes some code. This is the original code, the one that runned but it doesn´t run right now
    Applet:
    public ListasComponentesSeleccionables cargarListasComponentes( ) throws IOException, ClassNotFoundException {
              String serv = "/Desaladora/cargarListasComponentesApplet.do";
              String host = Principal.documentBase.getHost( );
              URL direccion = new URL( "http", host, 8080, serv );
              // Create conection
              URLConnection connection = direccion.openConnection( );
              connection.setDoInput( true ); 
              connection.setDoOutput( true );
              connection.setUseCaches( false );
              connection.setRequestProperty( "Content-Type", "application/x-java-serialized-object" );
              ObjectOutputStream output;
              output = new ObjectOutputStream( connection.getOutputStream( ) );
              output.writeObject( new Boolean(true) );
              output.flush( );
              output.close( );
              ObjectInputStream input = new ObjectInputStream( connection.getInputStream( ) ); //<-- Here is the problem
              ListasComponentesSeleccionables response = new ListasComponentesSeleccionables( );
              response = ( ListasComponentesSeleccionables ) input.readObject( );
              return response;
         }Servlet:
    ublic class CargarListasComponentesAppletAction extends Action {
    public ActionForward execute(     ActionMapping mapping,
                                                     ActionForm form,
                                                     HttpServletRequest request,
                                                     HttpServletResponse response )
                            throws ServletException, IOException, Exception  {
              InitialContext context = new InitialContext();
              SensorManagerService sensor_service;
              ActuatorManagerService actuator_service;
              Globals.LOGGER_SECURITY.debug( "Entering ACTION 'CargarListasComponentesAppletAction'" );
              response.setContentType("application/x-java-serialized-object");
              try
                   ObjectInputStream bufferentrada = new ObjectInputStream(request.getInputStream());
                   Boolean peticionOK = (Boolean)bufferentrada.readObject();
                   ObjectOutputStream buffersalida = new ObjectOutputStream(response.getOutputStream());
                   sensor_service = ( SensorManagerService ) context.lookup( "desaladora/SensorManagerServiceBean/local" );
                   ArrayList<AlarmConnectedSensorDTO> sensorList = sensor_service.findAllSensorsToAlarms();
                   actuator_service = ( ActuatorManagerService ) context.lookup( "desaladora/ActuatorManagerServiceBean/local" );
                   ArrayList<AlarmConnectedActuatorDTO> actuatorList = actuator_service.findAllActuatorsToAlarms();
                   buffersalida.writeObject( crearListasSeleccionables(sensorList, actuatorList) );
                   buffersalida.flush();
              catch(Exception e)
                   System.out.println("Error en la trasmision de datos");
              return null;
         private ListasComponentesSeleccionables crearListasSeleccionables(ArrayList<AlarmConnectedSensorDTO> sensorList,
                    ArrayList<AlarmConnectedActuatorDTO> actuatorList) {
              Vector<Integer> vectorSensores = new Vector<Integer>();
              Vector<Integer> vectorActuadores = new Vector<Integer>();
              for(AlarmConnectedSensorDTO sensor : sensorList) {
                   vectorSensores.add(sensor.getIdSensor( ));
              for(AlarmConnectedActuatorDTO actuator : actuatorList) {
                   vectorActuadores.add(actuator.getIdActuator( ));
              ListasComponentesSeleccionables listasComponentesSeleccionables =
                                  new ListasComponentesSeleccionables(vectorSensores, vectorActuadores);
              return listasComponentesSeleccionables;
    }i´ve been running some test in another computer, and this code simply works, but it doesn´t work in the machine i usually work.
    Maybe someway the stream get corrupt? the info i´ve been trying to send and started throwing the exception may still be in the stream? I don´t know what to think right now.
    Hope someone has any idea, thankyou.

    I dont see the problem. However, I suggest you change this;
    System.out.println("Error en la trasmision de datos"); t
    to e.printStackTrace() to see what it is doing when it stops working.
    I also suggest peppering your code with System.out.println() statements to see what it is doing just before stopping.
    Also, try your code with a brand new file with only a few characters in it. If it works, add to it some of your originial file content until it stops working. This way, you can determine if its the file size that is causing the crash or something in the file content. If all else fails, study java I/O and try some other way to read/write the file. You can also try a different browser. If it works, its the browser. Still having problems? Create a new project with a simple applet and file read/write program and get that working. That way, all the other stuff in your original project isn't in the way.

  • Servlet mapping problem in Resin, very weird!

    ENV: resin 2.1.6 on windows 2000
    1, I copied all the files and folders in $resin/doc/java_tut to $resin/webapps
    2, I did a little change to $resin/conf/resin.conf
    In the old resin.conf, there is a lot about the '/' webapp.
    <web-app id='/'>
    <classpath id='WEB-INF/classes'
    source='WEB-INF/classes'
    compile='true'/>
    </web-app>
    I replaced it just with
    <web-app id='/'/>
    3, I tested the 'java_tut' webapp
    http://localhost:8080/java_tut/servlet/example.servlet.basic.MappingServlet
    works well.
    http://localhost:8080/java_tut/exact
    works well, too.
    4, Then I tested the '/' webapp
    http://localhost:8080/servlet/example.servlet.basic.MappingServlet
    works well.
    but
    http://localhost:8080/java_tut/exact
    returns error code 404
    what's the problem?

    don't you need to get rid of the java_tut bit?

  • Process chain problem...., its urgent

    Hi all
    in my process chain we are loading 4 loads into ODS. After 3 loads, 4th load didn't take place. its not yet started even 3rd one successfully ran. its not showing error also. what can i do. after 4th one ODS activation process is there.
    Please advice me. will i go for manual loading. if i do manual, what abt activation after 4th load. will i do activation also manual or else it will trigger automatically as part of process chain........../
    Advice me frnds..., its urgent
    Regards
    swetha

    Hi Swetha,
    Sometimes, it doesn't help to just set a request to green status in order to run the process chain from that step on to the end.
    You need to set the failed request/step to green in the database as well as you need to raise the event that will force the process chain to run to the end from the next request/step on.
    Therefore you need to open the messages of a failed step by right clicking on it and selecting 'display messages'.
    In the opened popup click on the tab 'Chain'.
    In a parallel session goto transaction se16 for table rspcprocesslog and display the entries with the following selections:
    1. copy the variant from the popup to the variante of table rspcprocesslog
    2. copy the instance from the popup to the instance of table rspcprocesslog
    3. copy the start date from the popup to the batchdate of table rspcprocesslog
    Press F8 to display the entries of table rspcprocesslog.
    Now open another session and goto transaction se37. Enter RSPC_PROCESS_FINISH as the name of the function module and run the fm in test mode.
    Now copy the entries of table rspcprocesslog to the input parameters of the function module like described as follows:
    1. rspcprocesslog-log_id -> i_logid
    2. rspcprocesslog-type -> i_type
    3. rspcprocesslog-variante -> i_variant
    4. rspcprocesslog-instance -> i_instance
    5. enter 'G' for parameter i_state (sets the status to green).
    Now press F8 to run the fm.
    Now the actual process will be set to green and the following process in the chain will be started and the chain can run to the end.
    Of course you can also set the state of a specific step in the chain to any other possible value like 'R' = ended with errors, 'F' = finished, 'X' = cancelled ....
    Check out the value help on field rspcprocesslog-state in transaction se16 for the possible values.
    Try this solution with your 3rd ODS..hope this will solve your problem for this instance. This is just a workaround.
    Before next scheduel of the process chain..remove the link between 3rd ODS and 4th ODS and then reconnect once again and activate the process chain and schedule it as per your schedule cycle. From next upload onwards everything works fine.
    Assign points if it is helpful.
    Regards,
    Sreedhar

  • How to send Oracle rowid to servlet? | Problem with national characters.

    There is same possibility how to send rowid to servlet?
    I have now definition like this:
    <af:image source="/imageservlet?Par1=#{bindings.Col1.inputValue}"/>
    But If column contents national characters, servlet methods obtained changed these characters.
    My idea is to use not primary key for row, but use oracle rowid. It is simply possible?
    Use something like this:
    <af:image source="/imageservlet?Rowid=#{bindings.Rowid}"/
    Or Do you have ideas how to solve problem with national characters ?
    Thanks
    FiL

    Hi,
    Although your workaround works.
    I think this is a simple encoding problem.
    I simply need to make sure all parameters and pages are encoded with a char set which contains the national characters you mentioned.
    This is a bit dependent on the exact technology your using, but most can be done via the web.xml:
      <jsp-config>
          <jsp-property-group>
              <url-pattern>*.jsp</url-pattern>
              <page-encoding>UTF-8</page-encoding>
          </jsp-property-group>
      </jsp-config>     This forces all JSP pages to be encoded in UTF-8
    Adding the following parameter sometimes helps as well, although I think this one is a bit dated:
    You said your using a servlet so your servlet needs a similar block for its pattern
      <context-param>
        <param-name>PARAMETER_ENCODING</param-name>
        <param-value>UTF-8</param-value>
      </context-param>If you want to be 100% sure the encoding is set right make sure thepages contain:
    <%@ page contentType="text/html;charset=utf-8"%>Or depending on your view technology the syntax can be a bit different
    -Anton

Maybe you are looking for

  • Cover flow full size

    Yet another version of iTunes (11.0.3) and still there is no cover flow function available. I find it almost unreal how Apples developers can take away such an important functionality - to obviously many users - and persist to do so, release after re

  • Material List with Creation Date

    Hi, I want to know, since last 7 days how many material codes have been opened in my plant. There is no field in of date of creation in MM60. What should we do. Full points to helping answers. Thanks GR

  • Forum XML Export failure - user not found

    Hi, first, I know the export/import functionality is disabled by default in the jive forum version of SAP. But they don't provide any other mechanism to export forum content, so we have to use it. We want to export our forum content with the XML Expo

  • Non-scrolling topic - CSS change doesn't take effect

    I am trying to create a non-scrolling region in WebHelp, RH 9. I followed some instructions to change the style tag for the area that I don't want to have scroll to position="fixed." Unfortunately, this doesn't seem to change my output at all and the

  • How to deinstall interMedia?

    I'm managing an Oracle8i Db where interMedia was installed for an error. Now the Db instance have many schemas used by interMedia (CTXSYS, MDSYS, ORDPLUGINS and ORDSYS). I'd like to disinstall/deactivate interMedia option in this instance? - Do I hav