Files needed to be present to use HTML help and Web help

For using RoboHelp for word generated .hlp files, we kept
.hlp and .cnt files in the production environment for the users.
Now, we are planning to migrate to Robohelp for HTML help and
gradually to WebHelp.
In that case what are the files that are required to be
present in the production environment?

With HTML Help all you need to ship are the CHM files. That
is because these are compiled files that contain all the essential
ingredients to see and use the help. The only exception to this
rule is if you are using a glossary or browse sequences. In this
instance you'll need to ensure all your users have the
HHACTIVEX.DLL file installed on their PC. If they don't they won't
be able to see them. You cab get the install routine for your
application to install and register this file.
With regards to Webhelp, you'll need to publise all the files
generated by the compile. Part of the compile process is setting up
the location of the published files (e.g. Intranet, FTP). You don't
have to worry about what to publish. As long as you have your
location correctly defined all the files are copied there.

Similar Messages

  • Hi, We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1. When we try to download a file(.pvw file) in that application safari throws "Download failed" error. Please suggest what needs to be done.

    Hi,
    We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1.
    When a file url is clicked instead of asking for Save or Open or Cancel options, the file gets opened on IPad by default.
    Is this default behaviour which cannot be changed or can it be configured to ask user preference?
    When we try to download a file(.pvw file -> a model file) in the above application, safari throws "Download failed" error.
    Please suggest what needs to be done.
    Regards,
    Pramod

    Safari on an iPad in general does not allow downloading of files. That's a safety precaution in the iOS SDK to keep unauthorized content off of iOS devices. Safari will open from the web site file types that it can handle, but direct downloading isn't normal behavior, and I don't believe the behavior can be changed, though you can try asking in the developer forum, either here or the one to which you have access as a member of Apple's iOS developer program.
    Regards.

  • Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    And of course I forgot about the built in way to send them back to the Mac .... Email them. You can email up to 5 photos at at time.
    Launch the photos app, while looking at the photos in thumbnail view - tap the arrow icon in the upper right corner - tap on up to 5 photos at a time - Tap the Share button in the upper left corner - tap email from the resulting window.

  • Do you know if it's possible to generate Word 2003 files from RoboHelp if we're using Office 2007 and RoboHelp 2007?

    Do you know if it's possible to generate Word 2003 files from
    RoboHelp if we're using Office 2007 and RoboHelp 2007? We are
    thinking of upgrading, but have customers that would still require
    Word 2003 formats because they won't have 2007 installed.
    Thanks!

    Hi NewtoRobohelp
    Unfortunately I don't have Office 2007 in front of me to test
    with. But I'm thinking that as long as Office 2007 still produces
    the same formats as 2003, you could do it this way.
    From RoboHelp 7 and using Office 2007, generate Printed
    ouptut. Open said printed output in Office 2007 and perform a Save
    As. Save the document as a RTF (Rich Text Format) document.
    RTF is more universal. So I'm thinking this may be a possible
    way around it. There is also the possibility that Word 2007 offers
    up an ability when saving a file to save in an older format.
    Cheers... Rick

  • Display PDF file in the Apex query report using HTML Expression

    Hi Folks,
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    <img src="#OWNER#.proc_display_document?p_id=#file_id#"/>
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) as
    s_mime_type varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as" 
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');      
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

    Hi Dimitri,
    I hope you can see HTML Expression code now. Thank You for responding.
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    [!--  img src="#OWNER#.proc_display_document?p_id=#file_id#" ]
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) **
    mimetype varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as"
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

  • Does a PHP file need to be attached to the HTML file?

    I know that CSS files need to attach to the html files, but what about PHP? Because when I try to test it, it asks me to make it a test server, but it never works. I know I'm missing. Please help. Thank you!
    This is my html form:
    <form action="form_process" method="post" name="contact_form">
    <form class="form">
    <p class="name">
    <input type="text" name="name" id="name" placeholder="John Doe" />
    <label for="web">Name</label>
    </p>
    <p class="email">
    <input type="text" name="email" id="email" placeholder="[email protected]" />
    <label for="email">Email</label>
    </p>
    <p class="phone">
    <input type="text" name="phone" id="phone" placeholder="555-555-5555" />
    <label for="phone">Phone</label>
    </p>
    <p class="text">
    <textarea name="text" placeholder="Questions or Comments"></textarea>
    </p>
    <p class="submit">
    <input type="submit" value="Send" />
    </p>
    </form>
    This is my PHP:
    <?php
    $name = $_POST['name'];
    $email = $_POST['email'];
    $phone = $_POST['phone'];
    $message = $_POST['text'];
    $to = "[email protected]";
    $subject = "New Message";
    mail ($to, $subject, $message, "From: " . $name);
    echo "Your message has been sent."
    ?>

    No.  A Local Testing Server is software that you install on your local computer so you can parse PHP scripts to test them in your local browsers.  It's not very complicated.
    Get one of the following Apache servers for your OS and follow the installation instructions.
    WAMP for Windows
    http://www.wampserver.com/en/
    XAMPP for Windows
    http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac
    http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac
    http://www.mamp.info/en/downloads/index.html
    See Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Nancy O.

  • Help needed creating vertical bullet list using div tag and css

    Hi,
    I think there is something quite fundamental that I'm missing when using div tags - I seem to keep running into problems with them.
    I'm trying to create a vertical bullet list. It works fine when I try the code on its own as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    #techlistcontainer {
        /*list-style-type: square;*/
        position: absolute;
        top: 20px;
        left: 0;
        z-index: 2;
        width: 75%;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 30;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 30;
    #techlistcontainer ul {
      margin-top: 0;
      margin-left: 0;
      padding-left: 0;
      list-style-type: none;
      font-family: Arial, Helvetica, sans-serif;
    #techlistcontainer li {
        margin-bottom: 8px;
        list-style-type: circle;
        margin-left: 50px;
        padding-right: 30px;
    -->
    </style>
    <head>
    </head>
    <body>
    <div id="techlistcontainer">
    <ul id="techlist">
              <li>Java Messaging Service (JMS)</li>
              <li>Message Driven Beans </li>
              <li>Remote Session EJBs with multi-threading</li>
              <li>Message Oriented Middleware(MOS) such as Websphere MQ series, Mercator with SAP/ERP</li>
              <li>XML messaging</li>
              <li>CORBA (Common Object Request Broker Architecture), RMI (Remote Method Invocation)</li>
        </ul>
    </div>
    </body>
    </html>
    http://www.pa-solutions.co.uk/vertical_list.html
    When I insert that into my site template page, its all over the place:
    http://www.pa-solutions.co.uk/development.html
    I've put the css code into a seperate file http://www.pa-solutions.co.uk/pas.css - I get the same results when its embedded into the html doc.
    Please help before I pull all my hair out.
    Thanks,
    Phil.

    Unless you know what you're doing with absolute positioning, avoid absolute positioning! Absolute positioning actually takes an element out of the normal HTML document flow and positions it absolutely in relationship with it's first parent with a position other than static - for details read the HTML specs at the W3C.
    Ideally you should use the normal HTML document flow. Divs are block level elements meaning that they act like blocks that take up a height (determined by children content) and width (the full width of the page or it's parent container, unless you tell it otherwise).
    For your CSS try this:
    #techlistcontainer {
        width: 75%;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 30;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 30;
    How does that work with your templates?

  • Need to be able to use both SSO and manual login to the WAS

    Hi,
    we are currently on NW7 SP20 (SPS18) but we are still using 3.x queries and web applications extensively. We have SSO enabled on all systems and that works fine. However, this does not give us the possibility to test for example roles by logging on as a test user. How can we keep SSO but also allow us to log on as a different user to the WAS when running queries or web templates.
    Typical test scenario:
    1) Open WAS3.x or Query Designer 3.x and log on as a test user
    2) Close all browser windows
    3) Execute web template or query in browser
    4) At this point SSO takes over and logs the tester on as him/herself. What we would like here is to have the option of either logging on manually /by for example clicking a log on button) or using SSO (say by not clikcing the login button within 5 seconds or clikcing a SSO button). How can we get this to work?
    Kind regards
    Kenneth Eriksen

    Actually, we want both...
    Most of the time, SSO is desired, but when testing role changes etc we need to be able to log on with a test user.
    The desired scenario:
    When you try to run a web report/query and have not logged on, the system should offer you two options:
    1) Manual log on
    2) Single sign on
    If you wait for a specified time (say 3 seconds) without selecting an option then SSO is used automatically (to avoid having to select SSO every time you need it).
    If you click manual log on then you should be prompted for a username/password and be logged on as the specified user.
    Can this be done at all?
    Kind regards
    /Kenneth

  • On my iphone4 i need to be able to use both TDS and Yahoo e-mail.  TDS works only sporadically.  For instance, today I was able to both send and receive, then an hour later could not send.  got the message that the server was not recognized.

    On my iphone4 I need to be able to receive and send both TDS and Yahoo e-mail accounts (I also need to access from my Macbook Pro and my HP desktop).  I have NO problem with Yahoo, but with TDS, the e-mail seemed to work on my phone.... and then it didn't.)  In adding the TDS account, I chose "other" ( TDS is somehow accessed on the back end through gmail).  For the incoming server I used the Incoming Sever Name of pop.gmail.com and the Outgoing Mail Server as smtp.gmail.com.  I have using SSL "on" and the server port is 995.  Is this setup correct for TDS?

    FYI: POP will by default, delete messages from the server after downloading them (This applies to most pop clients, computer or mobile). POP is old tech and is not recommended if IMAP or Exchange are available. The default when setting up a g-mail type account is IMAP. Full synchronization with the server. You may also be able to set it up as an Exchange account, allowing for push e-mail and sync of calendars and contacts as well. See the Gmail help pages for instructions.

  • Use html code in web page composer 7.3

    Hi all,
    I have a question about the standard editors of web page composer in 7.3.
    I want to create my own HTML code for the design of the portal page..
    Is it possible to use the code through one of the standard editors?
    At the moment I have created some html pages and store them in the KM content of the portal. Then I make this pages available with the KM Document iViews to use them in the Web Page Composer. The problem now is, that the links to other portal pages doesn't work..
    So is there maybe a possibility to use the html code directly in one of the editors? Or do you know, how you have to define the links to navigate to other portal pages? I tried a href="TBN://..." like the links you get with the Link List Editor, but it doesn't work..
    Thanks in advance for your help!
    Regards,
    Lydia

    Hi,
    now we have the tinyMCE editor, where you can insert and edit html-code. It works fine now for the layout,
    but there are still a few problems with the links..
    In the edit mode there are displayed all km images out of the km. But the images aren't displayed under the portal role, when i publish the page. And all the links like one to a wiki or the TBN links doesn't work, too.
    Can anybody help me further?
    Thanks in advance,
    Lydia

  • Proper way to save FW file for use in print and web?

    I have a high resolution FW file that has a lot of vectors, but includes gradients too.
    It is on a transparent artboard, and I want to preserve the transparency.  I want to be
    able to use it for both print and web projects.   I am assuming that the best way to do
    this is to save it as a PSD file, but when I do that, the appearance of the file changes,
    specifically, the words "web design" in the logo lose some of the boldness and sharpness
    that they had in the FW version.("web design" is vector with a solid fill)  What am I doing wrong?

    2 type of dialogs can appear.
    1 ... Replacing file
    2 ... Internal Error of FW. (other are same two)
    else... you have some problem there.
    Well.. jms1017 can you post the dialog screen here? Thanks!

  • RH8 RoboHelp HTML published as web help TOC format

    Is there any way to manually tweak the TOC formatting in a published set of sub docs that were generated from the root books of a RoboHelp HTML project?
    Original project had Install Guide, Admin Guide, etc. which are now published separately. Problems: all files for all books are in each published help system. Browse sequences contain all topics. TOC format got 'lost' so tab names rather than icons are used for ...TOC, Index, Glossary, etc. even though Icons are in the projects. Individual projects open with one book, which must be expanded. No colors in TOC, and uses a different (and noticeably larger) font from the topic.
    Since this one-off was done to an unknown version of the content, I'd be better off mucking with the cshdat and wh files than the content of the topics.

    ...just now revisiting the project that precipitated the original request. I have additional info and a request:
    The separate help documents had been published without resetting the browse sequence. As it is today, (because browse sequences were not updated), many hyperlinks jump out of the published books and over to an earlier build that has a single TOC (same IIS server, but completely different path).
    I learned that a RH HTML project can have multiple TOCs. So, my new question: is it possible for three TOCs to keep thier own browse sequences and access one common set of published HTM topics?  How would that be engineered? I don't quite know how to manage hyperlinks that reference topics in one of the other books. I don't want to inherit the wrong browse sequences.
    The alternative is to generate help from the 4 different TOCs into 4 different folders, which is a lot of replication.  Like Siamese twins, there's a lot of cross sharing built into the original project, so in most cases, the "see also" relationships would give each separately published book 100% access to all the topics, but from a limited TOC.

  • Problems using LiveCycle Designer and Web Services

    Hi there.
    I've just finished reading all the 485 post in this forum, and I've already looked at all the samples and FAQ's, but I still I have the same problem, and it seems I'm not the only one. Here goes:
    I have a .NET Web Service that exposes three methods: one that indicates which PDF to open, one to pre-populate some of the fields of the form and another one to handle the submitted form.
    The first method is called within my asp.net web application and simply determines which pdf form to open in a given context. This one is cool and I have no problems here.
    The second method populates my pdf form. But here starts the trouble. I can't seem to make the pdf call the web service when it is loaded. I mean, what I want is to tell the pdf form that when he loads (and before he shows on the browser), he should call the web service method that pre-populates him. But I can't seem to be able to do this. I've seen JimmiPham's CheckCreditCard.pdf sample, but what he does is call the web service upon a click on the button. What I wanted is similar but on the load of the form. I've added the following line of javascript code to the initialize method of a textbox:
    msg.rawValue = xfa.connectionSet.conn.execute(0);
    where msg is the textbox and conn is the name of my connection. I've used this code based on the sample of the designer help. I've also tried to drag and drop the button from the dataview (the one that is automatically generated) but it wont work. If I press it it gives me an error stating that there was an error attempting to read the web service file (*.asmx).
    I've also tried to drag and drop the textbox in the generated web service response (in the dataview) but nothing works.
    Does anyone have any ideas of what am I doing wrong? This is my first contact with this technology, and I really don't know very well how to manipulate it...
    Regards.

    Hi Jimmy.<br /><br />Thanks for the help.<br />I'm getting really desperate now. Your sample doesn't work. However I have some more info that might bring some light into the fight...<br />I've seen your sample (awesome work), tried it and saved it. Then I opened it with designer 7.0 and checked the code in the click event of the button.<br />Then I copied/pasted your code into my form. I dragged a text box and a button into my form and left them with the default names (TextBox1 and Button1). In the click event of Button1 I've pasted your code and then changed the parts I wanted, as follows:<br /><br />----- form1.#subform[0].Button1::click - (JavaScript, client) --------------------------------------<br />var cWSURL = "http://localhost/SIIOP.PDFManager/PDFManager.asmx?WSDL";<br /><br />app.alert("Setup webservicex PopulatePDF Interface using WSDL URL: \"" + cWSURL + "\"\n");<br /><br />SOAP.wiredump = true;<br /><br />var service = SOAP.connect(cWSURL);<br /><br />if(typeof service != "object")<br />     app.alert("Couldn't get PopulatePDF WSDL object");<br /><br />if(service.PopulatePDF == "undefined")<br />     app.alert("Couldn't get webservicex.PopulatePDF Call");<br /><br />var e;<br /><br />// I need no parameters<br />//var param =<br />//{<br />//    "CardNumber": xfa.resolveNode("CardNumber").rawValue<br />//};<br /><br />try<br />{<br />    app.alert("Make PopulatePDF SOAP call");<br />     <br />//     var result = service.CheckCC(param);<br />     var result = service.PopulatePDF();<br /><br />     if((result == "") || (result == null))  {<br />          app.alert("WebService PopulatePDF returns nothing");<br />         result = "<no results returned>";<br />          }<br /><br />function dump(obj)<br />{<br /><br />    if(typeof obj == "object")<br />    {<br />        for(var i in obj)<br />        {<br />             app.alert("note1: " + i + " = " + obj[i]);<br />             if (i == "string")<br />               {<br />                    xfa.form.Page1.TextField1.rawValue = obj[i];<br />               }<br />          }<br />    }<br />    else app.alert("note2: " + i + " = " + obj[i]);<br />}<br /><br />dump(result);<br /><br />SOAP.wiredump = false;<br /><br />     //xfa.datasets.data.loadXML(result);<br />     //xfa.resolveNode("CardType").rawValue = result["urn:schemas-microsoft-com:xml-diffgram-v1diffgram"]["NewDataSet"]["Table"].CardTy pe;<br />     //xfa.resolveNode("CardValid").rawValue = result["urn:schemas-microsoft-com:xml-diffgram-v1diffgram"]["NewDataSet"]["Table"].CardVa lid;<br /><br />}<br />catch(e)<br />{<br />     app.alert("Problem with webservicex.PopulatePDF Call: " + e);<br />}<br /><br />I saved the form and opened it with internet explorer. When I press the button, I get the first alert stating that "Setup webservicex PopulatePDF Interface using WSDL URL: http://localhost/SIIOP.PDFManager/PDFManager.asmx?WSDL". That's correct.<br />Then I get an alert that says "Couldn't get PopulatePDF WSDL object", which means that he can't get the object. The result is undefined. But that's odd, since I can establish a data connection to this WSDL using the New Data Connection wizard, and in this wizard it even says which methods and actions the web service has... So, the problem must be in the way the web service exposes himself to the PDF, right? <br />Well anyway, here follows the wsdl I have:<br /><br /> <?xml version="1.0" encoding="utf-8" ?> <br />- <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><br />- <wsdl:types><br />- <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"><br />- <s:element name="PopulatePDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="PopulatePDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="PopulatePDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />- <s:element name="CallPDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="CallPDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="CallPDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />- <s:element name="HandleSubmittedPDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="HandleSubmittedPDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="HandleSubmittedPDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />  </s:schema><br />  </wsdl:types><br />- <wsdl:message name="PopulatePDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:PopulatePDF" /> <br />  </wsdl:message><br />- <wsdl:message name="PopulatePDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:PopulatePDFResponse" /> <br />  </wsdl:message><br />- <wsdl:message name="CallPDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:CallPDF" /> <br />  </wsdl:message><br />- <wsdl:message name="CallPDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:CallPDFResponse" /> <br />  </wsdl:message><br />- <wsdl:message name="HandleSubmittedPDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:HandleSubmittedPDF" /> <br />  </wsdl:message><br />- <wsdl:message name="HandleSubmittedPDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:HandleSubmittedPDFResponse" /> <br />  </wsdl:message><br />- <wsdl:portType name="PDFManagerSoap"><br />- <wsdl:operation name="PopulatePDF"><br />  <wsdl:input message="tns:PopulatePDFSoapIn" /> <br />  <wsdl:output message="tns:PopulatePDFSoapOut" /> <br />  </wsdl:operation><br />- <wsdl:operation name="CallPDF"><br />  <wsdl:input message="tns:CallPDFSoapIn" /> <br />  <wsdl:output message="tns:CallPDFSoapOut" /> <br />  </wsdl:operation><br />- <wsdl:operation name="HandleSubmittedPDF"><br />  <wsdl:input message="tns:HandleSubmittedPDFSoapIn" /> <br />  <wsdl:output message="tns:HandleSubmittedPDFSoapOut" /> <br />  </wsdl:operation><br />  </wsdl:portType><br />- <wsdl:binding name="PDFManagerSoap" type="tns:PDFManagerSoap"><br />  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> <br />- <wsdl:operation name="PopulatePDF"><br />  <soap:operation soapAction="http://tempuri.org/PopulatePDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />- <wsdl:operation name="CallPDF"><br />  <soap:operation soapAction="http://tempuri.org/CallPDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />- <wsdl:operation name="HandleSubmittedPDF"><br />  <soap:operation soapAction="http://tempuri.org/HandleSubmittedPDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />  </wsdl:binding><br />- <wsdl:service name="PDFManager"><br />  <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" /> <br />- <wsdl:port name="PDFManagerSoap" binding="tns:PDFManagerSoap"><br />  <soap:address location="http://localhost/SIIOP.PDFManager/PDFManager.asmx" /> <br />  </wsdl:port><br />  </wsdl:service><br />  </wsdl:definitions><br /><br />If I invoke this webservice method through Internet Explorer, I get the following response:<br /><br />  <?xml version="1.0" encoding="utf-8" ?> <br />  <string xmlns="http://tempuri.org/">Hello World</string>

  • NEED PODCAST HELP AND PLAYLIST HELP!@#$

    A)I just upgraded my 20 gig plain to 5g 30 gig. I downloaded video podcasts like nba playoffs and abc news(free you know). It comes up on my itunes library and I then dragged it onto the Ipod. It appears. Fine and good. Disconnect the ipod and its nowhere on the entire ipod. I read alot of forums before writing this and I tried alot but not working. Its set to tv out off and My video tab on ipod otions is grey because i use two comps and had to set songs to manual download.
    B)My old Ipod had helfull buit in playlists like top 25 and recently. Here only itunes has but not on the ipod???
    PLEASE HELP!! Thanks
      Windows XP  

    Welcome To Apple Discussions!
    Make sure on your iTunes settings that you have your iPod on "Update Videos Automatically"(or something like that). IF it still doesnt work then I suggest that you simply reset the iPod or restore it.
    Reseting iPod:
    1. Press and hold the menu button + the center button
    2. Wait untill the Apple logo appears.
    Restoring the iPod:
    Restoring iPod

  • Help needed in formating the text using HTML tags in reports 10g

    Hi all,
    I have a situation here. We have an application which prints out Reports with a few lines of text in it. This text is entered by the user through our forms application in a field. That particular text is stored in each row of a particular long column. Here I want to modify the text, while printing, on the report like underline, bold, italics etc,.
    As of now I am using the HTML tags, in the forms, to do so as most the times the text in the report is same.
    I want to know if this can be done by the user itself while he is entering the data in the field through the form.
    Thanks in advance . I will explain you more clearly if you need.

    Hi,
    The code did work. But I am not sucessfully able to display the values entered in 2nd page in the 3rd page.Please find the code below:
    <html>
    <head>
    <script language="LiveScript">
    function WinOpen() {
    if (document.form1.cap.value == "")
    alert("Enter value in text box");
    return;
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Yo!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>This is really cool!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form2">');
    for(var i =0; i < document.form1.cap.value; i++)
    msg.document.write("<INPUT type=text name=tbAlphaNumeric>");
    msg.document.write("<br>");
    msg.document.write('<input type="button" name="Button2" value="Steal" onClick="javascript:window.opener.WinShow();">');
    msg.document.write('</form></BODY></HTML>');
    function WinShow() {
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Great!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>Display of second page text elements!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form3">');
    for(var j =0; j < document.form1.cap.value; j++)
    msg.document.write(document.form2.tbAlphaNumeric[j].value);
    msg.document.write("<br>");
    msg.document.write('</form></BODY></HTML>');
    </script>
    </head>
    <body>
    <form name="form1">
    <INPUT type= "text" name=cap>
    <input type="button" name="Button1" value="Push me" onClick="WinOpen()">
    </form>
    </body>
    </html>

Maybe you are looking for

  • Apple iTunes Home Sharing, and using an external AP with new GigE Wireless "N" Router

    I just upgraded to the Verizon FiOS (Actiontec) GigE Wireless "N" Router (from the old megabit wireless A/B/G router) last week.  So far, almost everything has been working okay.  Before I get to the issue, let me make another statement... My house i

  • How can I change an already set up mac to a new admin account

    This is an upgrade Snow Leopard 10.6.8 from Tiger. I have always had the same logon which I thought gave me admin priviledges and I was trying to install Digital Performer 7.24 and I got a message that I did not have sufficient priviledges to install

  • Reports on web for Arabic Language (Reports Team)

    Hi I have deployed forms of my application on web. But with reports I have lot of problems related to language. First I tried to generate reports in PDF format, it failed due to multi byte characters. Now I am trying to generate in RTF format I am ha

  • Please help about Custom View fo EditorKit

    Thank You for reply TextArea in Visual Studio .NET is somehow displayed like that. - public class Test{ | | + public Test(){ | | .... | _ } | | + public int load(){ | | ...... | _ } | and if u press + symbol, method code is displayed. thats why i wan

  • Is Z report needed for FBCJ Balance?

    Hi, There are  5 cash journals  and client needs the balance for all cash journals along with Responsible Person, Balance, Debit and Credit. In FBCJ I couldnt found, is there any report available with above requirement?? Anybody can suggest please. R