Searching the HTML Stream

I need to search NOT WELL FORMATTED HTML for data extraction. Are there any stream searching library in java.

Hi,
Anil_Pathak wrote:
I need to search NOT WELL FORMATTED HTML for data extraction. Are there any stream searching library in java.If the "NOT WELL FORMATTED" is not too bad, one could extend HTMLDocument and overwrite HTMLDocument.HTMLReader. There the parser callback is involved an so one can overwrite the handleXY methods to get the tags and the text out of the HTML.
Example
import java.io.*;
import javax.swing.text.*;
import javax.swing.text.html.*;
import javax.swing.text.html.parser.*;
class ParseHTML {
  ParseHTML(String myHTML) {
    HTMLEditorKit kit = new HTMLEditorKit();
    try {
      kit.read(new StringReader(myHTML), new MyHTMLDocument(), 0);
    } catch(IOException e) {
      e.printStackTrace();
    } catch(BadLocationException e) {
      e.printStackTrace();
  public static void main(String[] args){
    String myHTML = "<TITLE>Test</TITLE>" +
                               "<P>Paragraph <B>test</B> with bold" +
                               "<TABLE border=1>" +
                               "<TR><TD>Tablecell1.1</TD>" +
                               "<TD>Tablecell1.2</TD>" +
                               "<HR>" +
                               "<IMG src=\"duke.gif\">" +
                               "<P>End";
    ParseHTML phtml = new ParseHTML(myHTML);
  class MyHTMLDocument extends HTMLDocument {
    MyHTMLDocument() {
      super();
    public HTMLEditorKit.ParserCallback getReader(int pos) {
      return new HTMLReader(pos);
    public HTMLEditorKit.ParserCallback getReader(int pos, int popDepth, int pushDepth, HTML.Tag insertTag) {
      return new HTMLReader(pos, popDepth, pushDepth, insertTag);
    class HTMLReader extends HTMLDocument.HTMLReader {
      HTMLReader(int pos) {
        super(pos);
      HTMLReader(int pos, int popDepth, int pushDepth, HTML.Tag insertTag) {
        super(pos, popDepth, pushDepth, insertTag);
      public void handleText(char[] data, int pos) {
        System.out.println("text: " + new String(data));
        super.handleText(data, pos);
      public void handleSimpleTag(HTML.Tag t, MutableAttributeSet a, int pos) {
        System.out.println("simple tag: " + t + " Attributes: " + a);
        super.handleSimpleTag(t, a, pos);
      public void handleStartTag(HTML.Tag t, MutableAttributeSet a, int pos) {
        System.out.println("start tag: " + t + " Attributes: " + a);
        super.handleStartTag(t, a, pos);
      public void handleEndTag(HTML.Tag t, int pos) {
        System.out.println("end tag: " + t);
        super.handleEndTag(t, pos);
}greetings
Axel

Similar Messages

  • Unable to stream SMIL files unless the html page, swf file and the smil ffile are on the FMS server.

    When I place the .swf, smil and http files on the FMS server the SMIL stream test sample works fine
    But When I move the files to my web server I get Connection error.
    This is the same issue discussed in http://forums.adobe.com/thread/554107
    I added a ‘base’ variable but it did not work for me.
    The SMIL file has the correct path to the sample files and FMS server
         <meta base="rtmp://200.200.200.23/vod/" />
    I am able to stream files from my html file on my webserver not the FMS server by pointing to the FMS server at rtmp://200.200.200.23/vod/mp4:sample1_1500kbps.f4v
    Is this a domain security setting? If so, where do I change it?
    If not How do I get FMS to stream SMIL files without installing a webserver with FMS?
    Thanks,

    Hi,
    I think there is bug with that videoPlayer.swf which is used by index.html of webroot folder of FMS to play media files, its not able to parse smil file correctly. I used some other player and used the smil file and kept it on http server other than fms server so it was able to dynamically stream videos. So I would suggest you to create your own player which uses smil file. You can take help from the below link to create player:
    http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_advanced_pt1_05.html
    Regards,
    Amit

  • Trying to Imitate the html POST  method with an applet

    I am trying to imitate the POST method with an applet, so that I can eventually send sound from a microphone to a PHP script which will store it in a file on a server. I am starting out by trying to post a simple line of text by making the PHP script think that it is receiving the text within a POST-ed file. The reason I am doing things this way is in part because I am, for the time being, limited to a shared server without any support for servlets or any other server side java.
    The code I am trying is based in part on an old thread found elsewhere in this forum, concerning sending data to a PHP file by imitating the POST method:
    link:
    http://forum.java.sun.com/thread.jspa?threadID=530399&messageID=2603608
    someone named "harmmeijer" provided most of the answers on that thread. If that person is still around hope they take a look at this,also I have some questions to clarify what they said on the other thread..
    My first attempt at code is below. The applet is in a signed jar file and is trying to pass a text line to the PHP script in the same directory and on the same server that the applet came from. It is doing this by sending header information that is supposed to be identical to what an html form would send if it was uploading a .txt file with the line of text within it. The applet displays one button. When you press it, it sucessfully starts up the postsim method (defined at the end), which is supposed to send the info to the PHP script at the server.
    I have two questions:
    1) I know that the PHP script is starting up, because it prints out a few messages depending on what happens. However, the script does not recognize any file coming down the line, so it does not save anyting on the server, and prints out a message saying the no file was uploaded.
    Any idea what might be going wrong? I'm not getting any error messages from the applet. I've tried a few different variations of the 'header' information contained in the line:
    osToServer.writeBytes("--****4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    The commented out line below it shows one variation (which was given in the thread mentioned above).
    2) You'll notice that I've commented out the two lines having to do with the input line:
    //InputStream isFromServer;
    and
    //isFromServer = uc.getInputStream();
    The reason is that the program crahes whenever I put the latter line in - to the extent that Opera closes down the JVM and then crashes when I tried to exit it.. I must be doing something horribly wrong there! I first tried using isFromServer = new DataInputStream(uc.getInputStream());
    becuase it was consistent with the output stream, but that caused the same problem.
    Here's the code:
    public class AudioUptest1 extends Applet{
    //There are a few spurious things defined in this section, having to do with the fact the microphone data is evenuatly going to be sent. haven't yet insterted code to get input from a microphone.
    AudioFormat audioFormat;
    TargetDataLine targetDataLine;
    SourceDataLine sourceDataLine;
    DataOutputStream osToServer;
    //InputStream isFromServer;
    URLConnection uc;
    final JButton captureBtn = new JButton("Capture");
    final JPanel btnPanel = new JPanel();
    public void init(){
    System.out.println("Started the applet");
    try
    URL url = new URL( "http://www.mywebsite.com/handleapplet.php" );
    uc = url.openConnection();
    //Post multipart data
    uc.setDoOutput(true);
    uc.setDoInput(true);
    uc.setUseCaches(false);
    //set request headers
    uc.setRequestProperty("Connection", "Keep-Alive");
    uc.setRequestProperty("HTTP_REFERER", "http://applet.getcodebase");
    uc.setRequestProperty("Content-Type","multipart/form-data; boundary=****4353");
    osToServer = new DataOutputStream(uc.getOutputStream());
    //isFromServer = uc.getInputStream();
    catch(IOException e)
    System.out.println ("Error etc. etc.");
    return;
    //Start of GUI stuff
    captureBtn.setEnabled(true);
    //Register listeners
    captureBtn.addActionListener(
    new ActionListener(){
    public void actionPerformed(
    ActionEvent e){
    captureBtn.setEnabled(false);
    //Postsim method will send simulated POST to PHP script on server.
    postsim();
    }//end actionPerformed
    }//end ActionListener
    );//end addActionListener()
    add(captureBtn);
    add(btnPanel);
    // getContentPane().setLayout(new FlowLayout());
    // setDefaultCloseOperation(EXIT_ON_CLOSE);
    setSize(250,70);
    setVisible(true);
    }//end of GUI stuff, constructor.
    //These buffers might be made larger.
    byte tempOutBuffer[] = new byte[100];
    byte tempInBuffer[] = new byte[100];
    private void postsim(){
    System.out.println("Got to the postsim method");
    try{
    //******The next four lines are supposed to imitate a POST upload from a form******
    osToServer.writeBytes("--****4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    //osToServer.writeBytes("Content-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    //This is the text that's cupposed to be written into the file.
    osToServer.writeBytes("This is a test file");
    osToServer.writeBytes("--****4353--\r\n\r\n");
    osToServer.flush();
    osToServer.close();
    catch (Exception e) {
    System.out.println(e);
    System.out.println("did not sucessfully connect or write to server");
    System.exit(0);
    }//end catch
    }//end method postsim
    }//end AudioUp.java

    Hi All,
    I was trying to write a signed applet that helps the
    user of the applet to browse the local hard disk and
    select a file from the same. The JFileChooser class
    from Swing is what I used in my applet. The problem
    is with the policy file. I am not able to trace the
    exact way to write a policy file which gives a total
    access to read,write,delete,execute on all the drives
    of the local hard disk.
    I am successful in signing the applets and performing
    operations : read,write,delete & execute on a single
    file but failing to grant permission for the entire
    file.
    Any help would be highly appreciated.Which policy file are you using? there might be more than one policy file.
    also, u have to specify the alias of the signed certificate in the policy file to grant the necessary priviledges to the signed applet.

  • Is there a way to reorder the Photo Stream Albums on my iOS Device?

    I have been searching for a way to change the order of my Photo Stream albums on my iPhone/iPad/MacBook Air to no avail.  Is there a way to change the order that they are shown within the Photo Stream in my photos?  Thanks

    I've been looking for the same thing.  It would seem to be a good feature for Apple to add.
    I have found one workaround that may be helpful to you, although it's a bit of a pain.  The images appear in the order that you add them to the stream.  And you can select the images from the stream itself to add them again.  So what I did is
    1.  Add all the pictures I need to the stream.
    2.  Determine the order I want them in.
    3.  From the stream, add the pictures again one by one (using "select" within the stream, then the little "send to" icon).
    4.  Delete the originals from the stream.
    And this did the trick.

  • The html-el:checkbox No Longer Works If Preceded by html-el:form

    My <html-el:checkbox worked fine. But if the <html-el:form ....> ... </html-el:form> come before the <html-el:checkbox ... >, I got the runtime JSP error: "cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope".
    The complaint points specifically to the <html-el:checkbox property="selectedUsers[${idx.index}].selected" />. The getter method for selectedUsers[0].selected can no longer be recognized.
    I need help because I really do not understand why it happens this way.
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
                                    <html-el:form action="/admin/findUsers.do">
                                               // many textfields and a submit button
                                    </html-el:form>
         <c:when test="${not empty userRows}">
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                                      <tr>                        
                          <td align="center">
                                                               <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
             </tr>
                 </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
         </c:choose>
    ......

    The checkbox does "not" belong to the form that invokes the "findUsers.do" action. I put some search criteria in that form to search for users in the database.
    The checkbox "is" supposed to be outside the form and gets submitted to another action called "selectUsers.do".
    Question: How do I use the name attribute as well as the property attribute for the <html-el:checkbox property="selectedUsers[${idx.index}].selected" />?
    The checkbox is associated with SelectUsersForm.java:
    public class SelectUsersForm extends ActionForm
         private Map selectedUserFieldMap = new HashMap();
         private String[] selectedUsers = new String[0];
         private String[] selectedUserIDs;
        public SelectedUserField getSelectedUsers( int index )
           SelectedUserField selectedUserField = ( SelectedUserField )selectedUserFieldMap.get( new Integer( index ) );
           if ( selectedUserField == null )
             selectedUserField = new SelectedUserField();
             selectedUserFieldMap.put( new Integer( index ), selectedUserField );
           return selectedUserField;
        // Convenience method to get a list of selected user IDs.
        public String[] getSelectedUserIDs()
           List theUserIDList = new ArrayList();
           Iterator i = selectedUserFieldMap.values().iterator();
           while( i.hasNext() )
              SelectedUserField selectedUserField = ( SelectedUserField ) i.next();
              if ( selectedUserField.isSelected() )
                 theUserIDList.add( selectedUserField.getId() );
           return ( String[] )theUserIDList.toArray( new String[theUserIDList.size()] );
       public void reset( ActionMapping mapping, HttpServletRequest request)
           selectedUsers = new String[0];
           selectedUserIDs = new String[0];
    }and SelectedUserField.java is like:
    public class SelectedUserField
        private boolean selected = false;
        private Long id;
        public Long getId()
           return id;
        public void setId( Long newValue )
           id = newValue;
        public boolean isSelected()
           return selected;
        public void setSelected( boolean newValue )
           selected = newValue;
    }

  • Using the HTML SAP GUI inside the Enterprise Portal?

    Hello everyone
    In our company we plan to set up the SAP Enterprise Portal (NetWeaver 7.0). The first application we want to provide inside the portal is the SAP GUI that connects to our SAP ERP 2005 system via single sign on. Therefor two different approaches exist:
    1: Using the standard SAP GUI inside a portal iView. In this case every client pc needs the SAP GUI installed.
    2: Using the HTML SAP GUI. In this case we have to set up the integrated ITS in our SAP ERP system.
    Now I have some questions about the second approach. Is the functionality of the HTML GUI equal to the functionality of the standard GUI? If not, what are the restrictions? How high is the additional load on the network and SAP ERP system caused by the HTML GUI? Would you recommend this approach for a system with more than thousand SAP users?

    Hi Marc,
    At least if you consider using webgui, you should test the transactions properly as there are some issues for example with scandinavian characters and lines visible in lists of search helps.
    Also you might want to consider the limitations of the screen resolutions and space which the portal framwork already takes from the gui. This of course is a topic for both HTML/SAP GUI's.
    Kind regards,
    Ville

  • Help reqd for searching the web

    Hi
    The code which i have written to search the web
    ctx_ddl.create_preference('my_url','URL_DATASTORE');
    ctx_ddl.set_attribute('my_url','HTTP_PROXY','www-proxy.us.oracle.com');
    ctx_ddl.set_attribute('my_url','NO_PROXY','us.oracle.com');
    ctx_ddl.set_attribute('my_url','Timeout','300');
    create table urls(id number primary key, docs varchar2(2000));
    create index datastores_text on urls ( docs )
    indextype is ctxsys.context parameters ( 'Datastore my_url' ); I made a small change in the table inserted like this
    insert into urls values(111555,'http://www.oracle.com')
    When i recreated the index I got the error like this
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    ORA-00600: internal error code, arguments: [kghfrf1], [0x0], [], [], [], [],
    ORA-06512: at "CTXSYS.DRUE", line 157
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 176
    When i checked the ctx_user_index_errors table i didnt get much info.
    My qn. is
    1. What is the problem is there any more setting should i use (using Oracle 9i AS)
    1. And if i want search only in Html section of the domain where should set the path.
    2. If i put a html section group and filter <h1>, will this be a problem in searching
    documents.
    Thanx
    K P Hari

    Not a direct answer to your problem I know, but I noticed you posted a few days ago asking whether there was a crawler available. I would suggest you check out Oracle UltraSearch to see if it will meet your needs better than creating an index like you are doing. I think you'll be pleasantly surprised at how easy the setup is!

  • How do I see the HTML code of my web page?

    How do I see my web page's HTML code? I want to install Google Analytics and I have to insert the tracking code into a certain part of the web page's HTML code, but iWeb doesn't show me the code to manually manipulate it.
    Is this even possible? I am looking for a view that shows me all the code and can't find it.

    You'll see the HTML after publishing the pages.
    Here's a way to add Google Analytics :
    [Adding Google Analytics without editing the webpage|http://www.wyodor.net/blog/archives/2010/05/entry_316.html]
    And if you search this forum you'll also find answers : [google analytics|http://discussions.apple.com/search.jspa?objID=c188&search=Go&q=googl e+analytics]

  • Upgrading to V4 has lost all of my Bookmarks, I still have the restore files in my profile data but they will not load, I have tried importing the html backup file too but it didn't work either. How can I get them back?

    Upgrading to V4 has lost all of my Bookmarks, I still have the restore files in my profile data but they will not load, I have tried importing the html backup file too but it didn't work either. How can I get them back?

    Ok this is bizzare!
    Thank you for your response, I went throught each and every step without any luck, even got the recovery programme, and painstakingly tried to sift through all that mumbojumbo to find what i needed. finally found the bookmark bit, but it had been fully overwritten :(, so on reading about previous ff versions, found the sqlite thingys, and they were relatively unscathed(partly written over, but saveable apparently TG), saved them to adiff drive, amongst other possibly good folders. Then looked up how to install them, and it said to close FF, and install to profile folder.
    So i tried to close FF, and the original problem from a few days ago, where it asked me if 'i was sure i wanted to close this window as it has X tabs open', popped up again. This is where 'open blank page' selection was set, over 'open previous tabs'. Wanting to save that info on how to sort out these friggin files, I reset the Option to 'open previous tabs', and closed FF. After unsucessfully searching for the profile folder on my laptop, i opened FF intending to search online for where i could find said folder.
    AND BANG, surprise surprise, the FF I had just closed with only tabs open about finding out what the heck to do, had disappeared, and instead my original saved tabs were up, and my bookmarks are there..... I am gobsmacked! what the heck just happened there???
    I have made 3 back up in different folders now, of those friggin bookmarks. I am weary now tho of shutting it all down.... what if its back to the other pages I had with no bookmarks, tomorrow :(

  • Cannot find the HTML browser installed on your system

    Guys forgive me if you have answered this before, I have
    tried a search of previous issues TNA.
    I have reloaded R/H 6 to my laptop (with full admin rights
    set against my user name) everything except works except generating
    in Microsoft HTML Help I get the following error when I click
    Finish: cannot find the HTML browser installed on your system
    Any ideas welcome. With thanks, J

    Hi JayRichard
    You might try the following.
    Inside RoboHelp HTML, click Tools > Options...
    Click the Tool Locations tab
    At the bottom of the dialog should be an area listing
    "Browser paths". You should see one for Internet Explorer and one
    for Netscape. Try clicking the little file folder icon to the right
    of one of them. (Whichever browser you are using)
    Navigate to and select the executable file for the browser.
    Mine for Internet Explorer says:
    D:\Program Files\...\iexplore.exe (The full path is
    D:\Program Files\Internet Explorer\iexplore.exe
    Dismiss the dialogs by clicking the Open and OK buttons until
    they are all gone.
    Keep us posted on whether this helps... Rick

  • How to display the HTML File Titles instead of File Names

    Hello All,
    I want to display the HTML file titles instead of File names in the Search Results. I've tried to give this command in the 'Visible Properties' in the 'SearchResourceRenderer' as:-
    Visible Properties: rnd:displayTitle
    However this is not working for me. If anyone has an idea of what to pass here or any other alternative to display the Titles.
    Regards
    Vaib

    Summary of steps:
    1) Standard Layout Set used: SearchResultLayoutSet
    2) Create a new layout set using ADVANCED COPY
    3) Change properties as you require
    4) Next modify the search OTH file to reflect this newly created Layout Set (under KM > root > etc > oth > search.oth edit xml file property rndLaoutSet from SearchResultLayoutSet to MyCustomSearchResultLayoutSet)
    5) Check in the document to complete the editing process if Edit Locally is used!
    6) Lastly, activate the OTH file by –
    •     Setting Debugging settings via Debugging Settings
    •     Performing a normal search
    •     Clicking Rendering information and then following link OTH Overview click on Reload
    7) Reload above reloads the OTH file and performing search again will yield the desired result
    8) To turn off the Rendering Information link remove the user id from Debugging Settings.
    Cheers
    Ankit

  • How can I link .svg files in the .html code?

    How can I link .svg files in the .html code?

    I use the FileBrowser app by Stratospherix to do this.  I can watch / stream my movies on my iPhone / iPad from my hard drive connected to my Airport Extreme.  I can access all the files on that hard drive as well. 

  • TREX Search : static HTML pages in KM with links to other intranet websites

    Hi there,
    we have some static HTML pages stored in KM. Besides text, these pages contain links ot other intranet websites, pdf or word documents.
    I have defined an index, according to <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/73/66c090acf611d5993700508b6b8b11/frameset.htm">creating an index</a>
    Following parameters have been added :
    IndexInternalLinks = true
    indexContentOfExternalLink = true
    showWithoutDatasource = true
    Already had a look at <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/46/5d5040b48a6913e10000000a1550b0/frameset.htm">Crawlers and Crawler Parameters</a>, tried by creating a new crawler profile and setting
    Maximum Depth = 3 (we want to search three levels deep)
    There is also <a href="http://help.sap.com/saphelp_nw04/helpdata/en/46/5d5040b48a6913e10000000a1550b0/frameset.htm">Resource Filters</a>
    The html pages itself are included in the index, but the content of the external links is not included.
    Would this be possible? We don't want to define an <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/73/66c090acf611d5993700508b6b8b11/frameset.htm">HTTP System</a> in the system landscape, as we don't need to index the whole external website and some parts of it are obsolete - we only want following the links and included the external content in the index.
    Portal version is NW2004S SP10.
    Thanks & best regards,
    Kevin

    Hello Kevin,
    If you don't want to create a HTTP system then you can create a simple web repository.
    For details you can follow help guide:
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    Also you can create a Web Repository:
    http://help.sap.com/saphelp_nw04/helpdata/en/12/47833ceb3da02ce10000000a114027/frameset.htm
    Do refer to "Dynamic and Static Web Repositories" section in the document. This will answer your query.
    Regards,
    Anjali

  • How to hide duplicate photos that origins from the photo stream and imported photos?

    Hi,
    I are using my camera both with an IPad (through SD-card reader) and directly to my iMac.
    I want to keep the full photo archive on the iMac.
    Now the problem, that I encounter, is that if I use the iPad to look at the photos, those photos will be transfered to the photo-stream.
    Then later when I import all my photos from the camera to the i Mac, those photos that I happened to import to the iPad will show up as duplicate in iPhoto.
    Of course I only want one copy of a photo regardless if they arrive from the photo-stream or through a direct import to my iMac.
    Is there a way to fix this problem or is it simply a bug?
    I think it would be rather easy for the iPhoto software to detect duplicates and hide them.

    You can use one of these applications to identify and remove duplicate photos from an iPhoto Library:
    iPhoto Library Manager - $29.95
    Duplicate Annihilator - $7.95 - only app able to detect duplicate thumbnail files or faces files when an iPhoto 8 or earlier library has been imported into another.
    PhotoSweeper - $9.95 - This app can search by comparing the image's bitmaps or histograms thus finding duplicates with different file names and dates.
    DeCloner - $19.95 - can find dupicates in iPhoto Libraries or in folders on the HD.
    DupliFinder - $7 - shows which events the photos are in.
    iPhoto AppleScript to Remove Duplicates - Free
    Some users have reported that PhotoSweeper did the best in finding all of the dups in their library: i photo has duplicated many photos, how...: Apple Support Communities.
    If you have an iPhone and have it set to keep the normal photo when shooting HDR photos the two image files that are created will be duplicates in a manner of speaking (same image) but the only duplicate finder app that detected the iPhone HDR and normal photos as being duplicates was PhotoSweeper.  None of the other apps detected those two files as being duplicates as they look for file name as well as other attributes and the two files from the iPhone have diffferent file names.
    iPLM, however, is the best all around iPhoto utility as it can do so much more than just find duplicates.  IMO it's a must have tool if using iPhoto.
    OT

  • Display HTML stream in Web Dynpro application

    Hello,
    Sorry, I am new to the Web Dynpro environment, so this might seem like a stupid question.
    How can I display streaming HTML content in a Web Dynpro application.  The IFrame element only seems to allow you to point to a URL.  In this case, I am receiving an HTML stream back from an R/3 system via a BAPI call.
    Thanks very much.

    Hi
    As per your question, I understand that HTML output is getting generated through a R3- Bapi call. Fine, create a model with the data binding to the context to some text view. Simply create view with the relevant UI element through which you want to exhibit the data and call the R3 call through your model. instead of a HTML output, you will get your data in the view.
    you may not get the exact format / style of the html output.
    Otherwise, directly HTML content cannot be shown in webdynpro. You need to have some UI control to take its content.
    Or else, you can go in for j2ee stack and end up with a java based appl, use a simple jsp and get the output!
    if you have any specific queries do let us know
    hope this helps you
    thanks

Maybe you are looking for

  • I photo keeps circling but won't open

    When I open I Photo all that happens is it keeps circling nothing else. Does anyone know what I need to do to fix this so I can use my I Photo? Thank you Suzanne

  • Premiere Pro CC does not open MOD files correctly

    Hi, I just started using the Adobe Creative Cloud as a trial, in particular the Premiere Pro CC software, since it might be relevant, I am working on a mac (completely updated as of yesterday). I have a JVC GZ-MG505 camcorder. This device saves the v

  • Htmlcxx in Xcode 5.0.2

    Hello, im new in xcode and c++, and im trying to use ths htmlcxx library to parse html and css, but i have some issues, here is the code: #include <iostream> #include <html/ParserDom.h> int main(int argc, const char * argv[])     //Parse some html co

  • Stock goes min, level warning msg using Dy. Avl. Check

    Dear, With OMCP - created new checking rule and Defined checking rule combination 01 & 02 - new checking rule. Material master Checking group assigned as 02. Material master entered some quantiity Safety stock. Set movementy type for Warning message

  • How do I find my posts on Forums

    I am trying to find my posts on forums any idea how I search for these. Thanks