Why is it unable to read URL through Java Applet ?

I have tried to read an image with ImageIO.read(URL) in JApplet. But it failed to be initialized. Please refer to TEST.java. But if I read the image in MSDOS mode, it works. Please refer to DisplayImage.java. The only difference is Applet and MSDOS mode.
I am using WindowsXP with j2sdk1.4.1_01 installed.
//File one: TEST.java
//Please run in Applet mode
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import java.awt.image.*;
import java.applet.*;
import javax.swing.*;
import javax.imageio.*;
import javax.imageio.stream.*;
import java.net.*;
public class TEST extends JApplet
     BufferedImage tempimg;
     public void init()
          try
               tempimg = ImageIO.read(new URL("http", "www.footprint.org.hk", 80, "/newsphotos/N200301270_0.jpg"));
          catch(MalformedURLException murle){}
          catch(IOException ioe){}
          JFrame f = new JFrame("ImageDisplayer");
          f.setSize(new Dimension(550,350));
          f.setVisible(true);
//End of TEST.java
//File two: DisplayImage.java
//Please run in MSDOS mode
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import java.awt.image.*;
import java.applet.*;
import javax.swing.*;
import javax.imageio.*;
import javax.imageio.stream.*;
import java.net.*;
public class DisplayImage extends JApplet
     ImagePanel imagePanel;
     public static void main(String[] args) throws MalformedURLException, IOException
          DisplayImage img = new DisplayImage();
          img.init();
     public void init()
          //Display Image
          try
               imagePanel = new ImagePanel(ImageIO.read(new URL("http", "www.footprint.org.hk", 80, "/newsphotos/N200301270_0.jpg")));
          catch(MalformedURLException murle){}
          catch(IOException ioe){}
JFrame f = new JFrame("ImageDisplayer");
          f.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
                    System.exit(0);
          f.getContentPane().add(imagePanel, BorderLayout.CENTER);
          f.setSize(new Dimension(550,350));
          f.setVisible(true);
class ImagePanel extends JPanel {
Image image;
public ImagePanel(Image image) {
this.image = image;
public void paintComponent(Graphics g) {
super.paintComponent(g); //paint background
//Draw image at its natural size first.
g.drawImage(image, 0, 0, this); //85x62 image
//End of DisplayImage.java

The security model for applets does not allow them to read from a URL unless it is on the same host the applet was loaded from. If you must do this then you must sign your applet for it to work.

Similar Messages

  • Why am i unable to read my e-mails/. they arrive in the in box but on opening them, the content is missing

    why am i unable to read my e-mails. they arrive ok, i can see them in my in box but when opening them the content is missing. i have been succsesful in opening them on other computers which dont use firefox

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • Why am i unable to read pdf files on the internet???

    can anyone help me please??

    [email protected] wrote:
    I have Adobe Reader 10.0.
    Try updating to 10.1.7 or 11.0.3.
    [email protected] wrote:
    I click to get the pdf version and it opens a new tab and I get a blank page.
    Can you try to save it to your local disk instead, and open it from there?
    If that doesn't help, tell us more about your operating system & browser.

  • Why I am unable to read/write thermocouple data using FIFO

    I like get data using 9213 module. I used example VI for this. And to get the data according to my desired samling rate, I used FIFO.
    The problem is, if I use FIFO, I do not get any data when run the real time VI.
    But, if I like to get data using cluster, then it is OK.
    Also, can you tell me why the error comes when I use FIFO and run the program?
    My sampling desired rate is 1200 sample/sec. I like to acquire data for 30 seconds after the trigger.
    Attachments:
    Error_50400.jpg ‏34 KB
    FPGA.jpg ‏201 KB
    realtime_temp.jpg ‏249 KB

    Good Afternoon,
    I would suggest lowering the number of elements into the invoke node in your real time VI.  You only need the number fo samples times the sampling rate for the number of elements input.  Hope this helps!
    -Cody C

  • Opening URLS through JAVA

    I wrote this java program in an earlier version of JAVA. I installed jdk1.3.1 and trying to execute it but it gives those java cryptic errors.
    The program code is this:
    try {
                   URL myURL=new URL("http://finance.yahoo.com/q?s="+stock+"&d=v1");
                   URLConnection myURLCon=myURL.openConnection();
                   BufferedReader myReader=new BufferedReader(
                   new InputStreamReader(myURLCon.getInputStream()));
                   /* ALTERNATIVELY
                   BufferedReader myReader=new BufferedReader(
                   new InputStreamReader(myURL.openStream()));
                   String whereIsIt="<td nowrap><b>";
                   boolean doneFlag=false;
                   while ((myLine=myReader.readLine())!=null){
                        //BE AWARE OF TOO LONG LINES
                        if( myLine.startsWith(whereIsIt)){
                             currentLine = myLine ;
                             System.out.println(myLine);
    The error code is the following:
    java.security.AccessControlException: access denied (java.net.SocketPermission finance.yahoo.com resolve)
    Any idea why this error?

    You don't have the right to connect to that address. Is this code in an applet?

  • Unable to read data in Java

    Hi,
    I tried to use this sample problem to extract the data from a primary database. But I am not getting anything back. Could someone please help me to take a kind look at my java code see what is wrong? I am new to Java, any help will be greatly appreciated.
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Database;
    import com.sleepycat.db.SecondaryDatabase;
    import com.sleepycat.db.DatabaseConfig;
    import com.sleepycat.db.DatabaseType;
    import java.io.FileNotFoundException;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.SecondaryConfig;
    import com.sleepycat.bind.EntryBinding;
    import com.sleepycat.bind.serial.SerialBinding;
    import com.sleepycat.bind.tuple.TupleBinding;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    public class bdbtest {
    public static void main(String args[]) {
    SecondaryDatabase myDatabase = null;
         Database primDB = null;
         Cursor cursor = null;
         SecondaryCursor secCursor = null;
    try {
    // Open the database. Create it if it does not already exist.
    DatabaseConfig dbConfig = new DatabaseConfig();
         dbConfig.setErrorStream(System.err);
    dbConfig.setErrorPrefix("MyDbs");
         dbConfig.setType(DatabaseType.BTREE);
    dbConfig.setAllowCreate(false);
         SecondaryConfig mySecConfig = new SecondaryConfig();
         mySecConfig.setErrorStream(System.err);
    mySecConfig.setErrorPrefix("MyDbs");
         mySecConfig.setType(DatabaseType.BTREE);
    mySecConfig.setAllowCreate(false);
         mySecConfig.setReadOnly(true);
         dbConfig.setAllowCreate(false);
         ResNameKeyCreator keyCreator =
    new ResNameKeyCreator(new CallAttemptBinding());
    // mySecConfig.setSortedDuplicates(true);
    mySecConfig.setAllowPopulate(true); // Allow autopopulate
    mySecConfig.setKeyCreator(keyCreator);
         primDB = new Database("/tmp/bdb_ca_db.db",
    "bdb_ca_db",
    dbConfig);
    /*myDatabase = new SecondaryDatabase("/tmp/bdb_ca_sdb.db",
    "ca_sdb_res_alias",
    primDB,
    mySecConfig);*/
         String res ="12";
         DatabaseEntry searchKey =
    new DatabaseEntry(res.getBytes("UTF-8"));
         DatabaseEntry foundKey = new DatabaseEntry();
    DatabaseEntry foundData = new DatabaseEntry();
         cursor =
    primDB.openCursor(null, null);
    // Search for the secondary database entry.
         System.out.println("starting to get data\n");
         while (cursor.getNext(foundKey, foundData, LockMode.DEFAULT) ==
    OperationStatus.SUCCESS) {
    String keyString = new String(foundKey.getData(), "UTF-8");
    String dataString = new String(foundData.getData(), "UTF-8");
    System.out.println("Key | Data : " + keyString + " | " +
    dataString + "");
         } catch (Exception e) {
    System.err.println("Error on inventory secondary cursor:");
    System.err.println(e.toString());
    e.printStackTrace();
         finally {
    // Make sure to close the cursor
              try {
                   secCursor.close();
              }catch (com.sleepycat.db.DatabaseException e) {
    System.out.println("All done.");
    }

    Hi,
    As you can see from the output of db_dump, there is data in it. I just don't understand why the Java code can't return anything:
    [root@localhost examples_java]# /usr/local/BerkeleyDB.4.7/bin/db_dump -d a /tmp/bdb_ca_db.db
    In-memory DB structure:
    btree: 0x4048000 (open called, read-only, subdatabases)
    bt_meta: 0 bt_root: 1
    bt_minkey: 2
    bt_compare: 0x2b2adbd21520 bt_prefix: 0x2b2adbd21590
    bt_lpgno: 0
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    page 0: btree metadata: LSN [0][1]: level 0
    magic: 0x53162
    version: 9
    pagesize: 4096
    type: 9
    keys: 0 records: 0
    free list: 0
    last_pgno: 3
    flags: 0x20 (multiple-databases)
    uid: 43 0 8b 0 0 fd 0 0 ba 43 53 91 12 fe 1 0 0 0 0 0
    minkey: 2
    root: 1
    page 1: btree leaf: LSN [0][1]: level 1
    prev: 0 next: 0 entries: 2 offset: 4076
    [000] 4084 len: 9 data: bdb_ca_db
    [001] 4076 len: 4 data: 0000000x02
    page 2: btree metadata: LSN [0][1]: level 0
    magic: 0x53162
    version: 9
    pagesize: 4096
    type: 9
    keys: 0 records: 0
    free list: 0
    last_pgno: 2
    flags: 0x20 (multiple-databases)
    uid: 43 0 8b 0 0 fd 0 0 ba 43 53 91 12 fe 1 0 0 0 0 0
    minkey: 2
    root: 3
    page 3: btree leaf: LSN [0][1]: level 1
    prev: 0 next: 0 entries: 0 offset: 4096
    [root@localhost examples_java]#

  • Unable to read InputStream in Signed Applet when interacting with ISA proxy

    Background info:
    We have an applet that we use for incremental refresh of data items.
    The applet model works for all but one of our customers
    Client info:
    VeriSIgn signed applet.
    IE 6.0 browser
    Java JRE version: 1.5.0_06-b05
    OS: Windows XP Version 2002 service pack 2
    Problem description:
    I am consistently getting a premature EOF exception when trying to read from a BufferedInputStream.
    The stack trace, if captured ends up in the ChunkedInputStream reader.
    I have tried a variety of request header settings to no avail.
    Connection: close
    Connection: Keep-Alive
    etc...
    Any comments are welcome
    Thanks for reading and considering
    Kurt

    We are using the HttpURLConnection. If I have to go down the stack to the Socket object, well I guess I have to re event the wheel so to speak.
    I have tried both Connection: close and Connection: Keep-Alive. Not at the same time :) but in different intrim releases of test applet.
    // Here is the current incarnation of how I am trying to connect.
    URL url = new URL(sURL);
    trace("attempting to connect to URL: " + sURL, DEBUG);
    connection = (HttpURLConnection)url.openConnection();
    connection.setDoOutput(true);
    connection.setDoInput( true );
    connection.setRequestMethod("POST");
    connection.setUseCaches( false );
    connection.setInstanceFollowRedirects( true );
    connection.setAllowUserInteraction( false );
    connection.setRequestProperty("Pragma", "no-cache");
    connection.setRequestProperty("Expires", "-1");
    connection.setRequestProperty("Connection", "Keep-Alive");
    connection.connect();
    // Now I write our form POST data and flush and close the output stream.
    BufferedOutputStream bos = new BufferedOutputStream(connection.getOutputStream());
    bos.write(sForm.getBytes());
              bos.flush();
    bos.close();
    // Get the input and read
    bis = new BufferedInputStream(connection.getInputStream());
    trace( "reading input stream for action: " + sAction );
    byte[] responseBuffer = new byte[4096];
    int bytesRead = 0;
    while( (bytesRead = bis.read( responseBuffer, 0, responseBuffer.length )) != -1 )
    sbResponse.append( new String( responseBuffer, 0, bytesRead ));
    totalBytesRead += bytesRead;
    catch (Throwable e)
    e.printStackTrace();
    try
    m_connections.remove( sAction );
    connection.disconnect();
    catch ( Throwable t ) {}
    finally
    if ( bis != null )
    try
    bis.close();
    catch( Throwable t ) {}
    With the above code in place what I am now seeing, as opposed to a premature EOF exception, is blocking behavior on the read.

  • Reading Mail through Java Mail using IMAP

    When i tried to connect to IMAP server am getting the following error like Ntlm class not found
    Am using JAvaMAIL API version 1.4.3.
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/auth/Ntl
    m
    at com.sun.mail.imap.protocol.IMAPProtocol.authntlm(IMAPProtocol.java:56
    1)
    at com.sun.mail.imap.IMAPStore.login(IMAPStore.java:667)
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:596)
    at javax.mail.Service.connect(Service.java:291)
    at javax.mail.Service.connect(Service.java:172)
    at FetchMailUsage.main(FetchMailUsage.java:35)
    Caused by: java.lang.ClassNotFoundException: com.sun.mail.auth.Ntlm
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    I searched this clas in the all the jar in the java mail api.Appreciate your earlier help

    I assume you're not actually trying to use NTLM authentication.
    A bug in JavaMail 1.4.3 can cause failures related to NTLM in some cases, although I don't think
    it should show up as the failure you're seeing. To work around, set the session property
    "mail.imap.auth.ntlm.disable" to "true".
    If that doesn't solve your problem, make sure you don't have more than one set of JavaMail
    classes in your CLASSPATH.

  • Unable to read the message java.io.IOException: No content

    Getting the following Exception while reading a mail........
    Caused by: java.io.IOException: No content
    at javax.mail.internet.MimePartDataSource.getInputStream(MimePartDataSource.java:108)
    at javax.activation.DataSourceDataContentHandler.getContent(DataHandler.java:805)
    at javax.activation.DataHandler.getContent(DataHandler.java:550)
    at javax.mail.internet.MimeMessage.getContent(MimeMessage.java:1396)
    at com.test.services.inbound.readmail.BouncedMailReader.processBouncedMails(BouncedMailReader.java:151)
    Line 151 is below
    {color:#0000ff}*multipart = (MimeMultipart)msg.getContent();*
    {color}
    But when I manually copy the same mail back to "new" folder from "cur",then the read is successful.
    Please suggest.

    Sounds like Subbaraja may be right, there's no synchronization between the program that's
    storing the messages in the files and your program that's reading the messages from the files.
    If the program storing the message has only written half the message, and then you try to read
    it, you're going to get errors similar to what you got. Adding the call to getMessageID may just
    slow your program down enough to allow the writer to finish writing the message.
    Of course, the "maildir" local store provider that you seem to be using should be synchronizing
    with the other program that's writing the messages, so you might want to talk to whoever you
    got the maildir provider from to see what's going wrong there.

  • Unable to read the freq and amplitude

    if you could look at the prog.s attached and if you can explain why i am unable to read the data output from "scalled data vs seconds" into tone measurments.
    it must have something to do with the conversion from the cluster of 3 elements to the DBL waveform can anyone see the mistake in the conversion!!

    Please re-post your VI "problem" with default values saved on both graphs.
    Thanks

  • BO Opendocument Url not giving pdf report when invoked through Java.

    Hi All,
    I'm trying to get pdf report by invoking the BO XI R3 server using the below url.
    <br>
    <br>
    <br>
    http://corpbo101d:41040/OpenDocument/opendoc/openDocument.jsp?sType=rpt&sDocName=BankAsAgentNA_1_au&sOutputFormat=P&lsS@model_code=BANKAGENT&lsS@user_id=sv66397&lsS@gen_no=1
    <br>
    <br>
    <B>This url gives the pdf report as expected when accessed through the browser.</B>
    <br>
    <br>
    But when accessing through Java it is not giving the pdf but its giving the content of the opendocument.jsp instead.
    <br>
    <B>Please let me what am I doing wrong.</B>
    <br>
    <br>
    Thanks in advance.
    Your code was breaking the forum thread so I removed it.
    Edited by: Jason Everly on Apr 19, 2010 10:17 AM

    Thanks for the response Jason,<br>
    <br>
    The java script were part of the output that I got when I invoked the url through Java. That is not the code that I'm using but the response which I'm getting after invoking the url.<br>
    <br>
    The url that I used is the one that I already pasted in the start of the thread.<br>
    <br>
    http://<server>:<port>/OpenDocument/opendoc/openDocument.jsp?sType=rpt&sDocName=BankAsAgentNA_1_au&sOutputFormat=P&lsS@model_code=BANKAGENT&lsS@user_id=sv66397&lsS@gen_no=1<br>
    <br>
    And yes I'm passing parameters along the url. <B>But it is with opendocument only and not viewrpt.*</B><br>
    <br>
    And this is already working through browser.<br>
    <br>
    But the problem occurs only during invocation through java, where I'm expecting a pdf byte stream. <br>
    <br>
    Instead i'm getting only html content. Which when I read through it, is nothing but the opendocument.jsp's source code.<br>
    <br>
    <B>Please find the java source code below.</B><br>
    <br>
              void readContent(String url) throws Exception, Exception{<br>
                   StringBuffer sb = new StringBuffer(url);
                   sb.append("&SM_USER=").append("USERID");<br>
    <br>               sb.append("&SM_SESSION=").append("fxdjmWRRN87gWfII3Bl//tUCgivgejevT29rnSInmXS05Hy8OZrVbzfxS7zLQbsceOX1NgPjBozft6GnYtLk7acHp6bom8pbgJrRXhlrB/okouB3LBoJl6oPf7eF/jj8CEYdsX5EhG/5MoK0YWrmIdWhjlmoixt0hHAdksm7S1rWlVSBhljv8KnjcFH7GA6QtP3TIPgSW1XaGhOiyUIMZL48av3f57KqXaAaw2dc32cJY28giWja2bGwQP/DcwMpuyHosZ1fKZVreoPHCKdvcYyV7jBZx0x68wacTBJgtBD1WdqdWmLwlA720xL8627LYNsbRtBPNHzCbjHQuA07iUVpwie8KuVfUL0bNloOejBX0idhkuRSKUEyWQOyvfXWaxL2rkZ/GRTsXzfTwUrUwqdoO6rDXGOPHFaLLdGd1VjBMZs5K6KAmpEs5lNf7CqBpCe5uG1J2QrxT5E7kqLRHBF1W2BN/AmqTpzvJoK5r7TXJZQVgGCcdnnZ9KLe5Zh8TED7VsU3DZCrXVOSol6dcbFQpqHozu0RVuOe5bQ4lfzgxtP0IdpjwAH4Sv6Bthf5/jujntxx6OjCl53GmtwN04e2ptf1UiBsN/MBClWXAMXW5WrtQEAyhp9Jcat2127AAkaEwFQEtPKoYa4Jg0GrzNZGHzj4UlqrWG9UeDAvGJ0GdZK4qrbkC6uPtn3ebMr/uHO90l4anrrSjWQYnKVjYNzCO4UUISYBy1aArFo73zEHz/ofdTCPk5FYSABGPTL2WnTEzOhvbHjI/y5ZZRAQVFgO38HhzhJvKr8TvF4sc/276UaMrjHf1UGL6ebB89UqKfLBrgzjvLLD3jZfX9R3N12fK0Z50rVFY/czb2Mui5s6VGnuEMcmoDAsUEjccmO4FhwswMW0KeBAPvc/2u6QJurxMPctBrDovV8FQSVhOLLGkzpeCUp4GlwDVEYYVRZY494xPi2hUmP4hsPafJ1s6HSTI/HmrH+I4oj90es4xjUBvTfALtWt5fSJbnF96Yes0vSGos4FuM908Bn/EK6CuOE8wAqLvmZvVVGZG12dvd");<br>
    <br>
               InputStream in = new BufferedInputStream(connection.getInputStream());<br>
    <br>
                   Reader r = new InputStreamReader(in);<br>
                   int c;<br>
                   while ((c = r.read()) != -1) {<br>
                     System.out.print((char) c);<br>
                   }<br>
         }<br>
    Edited by: Naaveen M on Apr 20, 2010 2:21 PM

  • Cd writing through java

    hiiiii
    i am doing tthis project where i need to write a cd with the help of java. is there any way that through java interface cd writing is posssible. i know that this is platform dependent but then also is there a code in java which works for even one computer only.
    thnxxxxxxxxxx in advace.

    hiiiii
    helloooooooooo
    i am doing tthis project where i need to write a cd
    with the help of java.
    *klunk*
    Why?
    is there any way that through
    java interface cd writing is posssible. Not really no.
    i know that
    this is platform dependent and hardware dependent as well but let's not worry about such trivialities
    but then also is there a
    code in java which works for even one computer
    only.
    JNI you mean.
    thnxxxxxxxxxx in advace.plllllllllllllllllllllllllzzzzzzzzzzzzz stop with the multiple letttttttttttttters thanxxxxxx
    Honestly... give this up. This is not a suitable Java project. Choose something else for your thesis or whatever it is you are doing.

  • Unable to read WSDL from URL

    This is my first web service. I thought I read that the
    service registers itself when first run, but it's just not jumping
    for me. I'd try registering it, but I'm not sure how to fill in all
    the blanks in the CF Administrator's Register Web Service form.
    I believe I'm doing this pretty plain and simple. Any ideas
    why this won't work? Tried both methods, both give the same error
    -- "Unable to read WSDL from URL"
    Calling URL:
    http://prod.trollsoftware.com/echotest.cfm
    Is looking at:
    http://prod.trollsoftware.com/trollws.cfc?wsdl
    which looks fine to me, but what do I know? This is my
    first....
    RLS

    I found this wonderful forum post
    {HERE}">http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=7&threadid=881689[/S
    and have been tyring to get it to run without removing the "/"
    mapping in case that would "break" something on my production
    server. I've tried hard to get Approach #2 to work as listed in
    that item, but to no avail. I can almost always see the XML code,
    but CF never wants to find it as an object reference.
    To answer your questions -- and thank you for your help on
    this! --
    1. Yes. I can see the XML code just fine.
    2. No. I get unknown host, connection failure, status not
    available.
    3. Doesn't work with IP, but that was expected as there are
    many domains on this server, not just this one.
    So, to continue, I thought I'd back up and try it on my CF7
    server. The program runs from here [
    http://www.saphea.com/echotest.cfm
    against the WSDL/CFC file here [
    http://components.findaportal.com/wsdl/trollws.cfc?wsdl
    I can see the XML file just fine, but the echotest does not work
    (code attached).
    I created a mapping of "/wsdl" to
    "d:\clients\components\wsdl" in trying to emulate Approach #2, and
    created a web subdomain of
    http://components.findaportal.com
    to "d:\clients\components", but no dice. Approach #2 may have to be
    abandoned.
    Why would it work for you and not me? That's the weird part.
    RLS

  • Why are some of my emails coming in with lines all bunched together on top of each other, unable to read?

    WHy are some of my emails coming in with the text body all bunched together on top of one another unable to read?

    Are that bookmarks that you have imported from another browser?
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Why does a standalone program created in Labview 8.5 try connecting to the internet when the program only reads data through the serial port? Firewalls object to progams that contact the internet without permission.

    why does a standalone program created in Labview 8.5 try connecting to the internet when the program only reads data through the serial port? Firewalls object to progams that contact the internet without permission.
    The created program is not performing a command I have written when it tries to connect to the internet, it must be Labview that is doing it. How do I stop this from happening? 
    Any help would be very appreciated.

    It looks that way..
    "When LabVIEW starts it contacts the service
    locator to removes all services for itself. This request is triggering
    the firewall.This is done in case there were services that were not
    unregistered the last time LabVIEW executed- for example from VIs that
    didn't clean up after themselves"
    This is not yet fixed in LV2009.
    Message Edited by Ray.R on 11-04-2009 12:25 PM

Maybe you are looking for

  • How to dictate, type or edit docs on MacBookAir for use in Word?

    Hello, I have a MacBookAir.  Mr computer at work uses Windows 7 and Word.  I'd like to be able to use my MacBookAir to create and edit documents for work purposes.  I'd also like to be able to use a dictate-to-type programme such as Dragon on my MacB

  • Using WMA files with Mac OS 9

    I've come across a bunch of WMA format files. I tried to open them with every tool I have (lots). But none would. What app do you suggest for opening/converting WMA files? Gary

  • Parameters to be sorted in alphabetical order

    Hi, Can you please let me know whether the parameters values are by default sorted in alphabetical order...refering to discoverer viewer/plus... Thanks in advance Sri

  • Migration Assistant not working with OS X Lion via Wireless Network?

    Anybody know how to assist me here? Basically, I have two iMacs on seperate floors of my home.  They are newer models (both purchased last year) and I have upgraded both of them to Lion and just ran a system update on both of them to ensure they are

  • Stop sound when same button is pressed

    I'm a complete beginner to any type of programming, so I'm glad that I even got this small tiny script working without errors. I've been scouring the web for tutorials and help and I can't find any tutorial to help. But I know this is a Programming 1