Getting errors in code completely stuck need serious help

ANY HELP OR SUGGESTIONS WOULD BE MUCH OBLIGED
THANK U IN ADVANCE
javax.xml.soap.SOAPException: Unable to create SOAP Factory: Provider com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl could not be instantiated: java.lang.InstantiationException
     at javax.xml.soap.SOAPFactory.newInstance(Unknown Source)
     at tony_buckley_project.Applet2.actionPerformed(Applet2.java:213)
     at java.awt.Button.processActionEvent(Button.java:381)
     at java.awt.Button.processEvent(Button.java:350)
     at java.awt.Component.dispatchEventImpl(Component.java:3639)
     at java.awt.Component.dispatchEvent(Component.java:3480)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
CODE FOLLOWING
package tony_buckley_project;
import java.awt.*;
import java.awt.event.*;
import java.net.*;
import java.util.*;
import java.io.*;
import org.xml.sax.*;
import org.xml.sax.helpers.DefaultHandler;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import com.google.soap.search.GoogleSearch;
import com.google.soap.search.GoogleSearchResult;
import com.google.soap.search.GoogleSearchFault;
import com.google.soap.search.GoogleSearchResultElement;
import com.google.soap.search.*;
import javax.xml.soap.*;
import javax.xml.soap.SOAPConnectionFactory;
import javax.xml.soap.SOAPConnection;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.SOAPMessage;
import javax.xml.soap.SOAPPart;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPHeader;
import org.apache.soap.util.xml.*;
import org.apache.soap.*;
import org.apache.soap.rpc.*;
import java.io.FileInputStream;
import javax.xml.transform.stream.StreamSource;
import javax.xml.messaging.URLEndpoint;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.Transformer;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamResult;
import java.net.URL;
* <p>Title: Mr. Tony Buckley</p>
* <p>Description: </p>
* <p>Copyright: Copyright Tony Buckley (c) 2004</p>
* <p>Company: Cork Institute of Technology </p>
* @[email protected]
* @version 1.0
public class Applet2 extends Frame implements WindowListener , ActionListener
TextField searchField;
Button search , quit;
Canvas0 canvas;
public Applet2()
super();
//Set up basic window
setTitle("Tony Buckley Final Year Project");
setBackground(Color.white);
setSize(500 , 400);
addWindowListener(this);
//Set up area with buttons
//Search button
Panel p1 = new Panel();
p1.setLayout(new FlowLayout());
searchField = new TextField("" , 15);
p1.add(searchField);
search = new Button("Search the web for results...");
p1.add(search);
search.addActionListener(this);
//Quit button
Panel p2 = new Panel();
p2.setLayout(new FlowLayout());
Button quit = new Button("Quit");
p2.add(quit);
quit.addActionListener(this);
//Set up search results area
Canvas0 canvas = new Canvas0();
add("Center" , canvas);
Panel p4 = new Panel();
p4.setLayout(new GridLayout(2 , 1));
p4.add(p1);
p4.add(p2);
add("South" , p4);
}//End of constructor method public Applet2()
public static void main(String[] args)
Applet2 app = new Applet2();
app.setVisible(true);
public void actionPerformed(ActionEvent event)
//Deals with "Quit" button
if(event.getSource() == quit)
dispose();
System.exit(0);
else if(event.getSource() == search)
String searchTerm;
searchTerm = "science fiction";
String spellingRequest = searchTerm;
/* try
GoogleSearch search_internet = new GoogleSearch();
search_internet.setKey("0RK+HoNQFHJlcbNPfxgBpcjESUWV96aO");
search_internet.setQueryString(searchTerm);
search_internet.setSafeSearch(true);
search_internet.setFilter(true);
String suggestion = search_internet .doSpellingSuggestion(spellingRequest);
if(suggestion == null)
System.out.println("There is no spelling suggestion in the database");
else
System.out.println(suggestion);
int startResult = 100;
search_internet.setStartResult(startResult);
int maxResult = 5;
search_internet.setMaxResults(maxResult);
GoogleSearchResult result_search_internet = search_internet.doSearch();
GoogleSearchResultElement[] resultElements = result_search_internet.getResultElements();
int startIndex = result_search_internet.getStartIndex() - 1 - startResult;
int endIndex = result_search_internet.getEndIndex() - 1 - startResult;
for(int i = startIndex ; i <= endIndex; i ++)
GoogleSearchResultElement resultElement = resultElements[(i)];
String title = resultElement.getTitle();
String URL = resultElement.getURL();
System.out.println(title);
System.out.println(URL);
System.out.println("");
System.out.println("Start Index = " + result_search_internet.getStartIndex());
System.out.println("End Index = " + result_search_internet.getEndIndex());
System.out.println(result_search_internet.toString());
int numResults = result_search_internet.getEstimatedTotalResultsCount();
if(result_search_internet.getEstimateIsExact())
System.out.println("Number of results: " +numResults);
else
System.out.println("Estimated number of results: " +numResults);
catch(GoogleSearchFault gsf)
System.out.println("Google Search Fault: " +gsf.getMessage());
try
GoogleSearch search_internet = new GoogleSearch();
search_internet.setKey("0RK+HoNQFHJlcbNPfxgBpcjESUWV96aO");
search_internet.setQueryString(searchTerm);
search_internet.setSafeSearch(true);
search_internet.setFilter(true);
String suggestion = search_internet .doSpellingSuggestion(spellingRequest);
if(suggestion == null)
System.out.println("There is no spelling suggestion in the database");
else
System.out.println(suggestion);
//First create the connection
SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
SOAPConnection connection = soapConnectionFactory.createConnection();
SOAPFactory soapFactory = SOAPFactory.newInstance();
//Next, create the actual message
MessageFactory messageFactory = MessageFactory.newInstance();
SOAPMessage message = messageFactory.createMessage();
//Create objects for the message parts
SOAPPart soapPart = message.getSOAPPart();
SOAPEnvelope envelope = soapPart.getEnvelope();
SOAPBody body = envelope.getBody();
//Populate the body
//Create the main element and namespace
SOAPElement bodyElement = body.addChildElement(envelope.createName("getPrice" , "ns1",
"urn:xmethods-BNPriceCheck"));
//Add content
bodyElement.addChildElement("isbn").addTextNode("0672324229");
//Save the message
message.saveChanges();
//Check the input
System.out.println("\nREQUEST:\n");
message.writeTo(System.out);
System.out.println();
//Send the message and get a reply
//Set the destination
String destination = "http://services.xmethods.net:80/soap/servlet/rpcrouter";
//Send the message
SOAPMessage reply = connection.call(message, destination);
//Check the output
System.out.println("\nRESPONSE:\n");
//Create the transformer
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
//Extract the content of the reply
Source sourceContent = reply.getSOAPPart().getContent();
//Set the output for the transformation
StreamResult result = new StreamResult(System.out);
transformer.transform(sourceContent, result);
System.out.println();
connection.close();
catch(Exception ex)
ex.printStackTrace();
}//End of method actionPerformed
public void windowClosing(WindowEvent event)
//Deals with the window closing
dispose();
System.exit(0);
}//End of method windowClosing
public void windowOpened(WindowEvent event)
public void windowIconified(WindowEvent event)
public void windowDeiconified(WindowEvent event)
public void windowClosed(WindowEvent event)
public void windowActivated(WindowEvent event)
public void windowDeactivated(WindowEvent event)
}//End of class Applet2
class Canvas0 extends Canvas
public Canvas0()
super();
public void paint(Graphics g)
Dimension d = getSize();
Font f1 = new Font("TimesRoman" , Font.PLAIN , 14);
Font f2 = new Font("TimesRoman" , Font.ITALIC , 14);
FontMetrics fm1 = g.getFontMetrics(f1);
FontMetrics fm2 = g.getFontMetrics(f2);
String s1 = "Hello , ";
String s2 = "World";
int w1 =fm1.stringWidth(s1);
int w2 =fm1.stringWidth(s2);
g.setColor(Color.GREEN);

Check your webapp WEB-INF Directory - WEB-INF\classes\META-INF\services to be exact.
You need a file called javax.xml.soap.MessageFactory with the following entry in it:
org.apache.axis.soap.MessageFactoryImpl (or whatever you use)
Same goes for any other factory - you have to map it to the implementation you use (AXIS in this example)
Hope this helps.

Similar Messages

  • HT3204 new ipod touch. can access iTunes store. cannot create iTunes ID. get error "could not complete iTunes request. unknown error occured (-1202)".Ipod updated to latest issue,firewall exception allowed.SSL 3.0 & TSL 1.0 ok. Running windows Vista. Help

    New ipod touch 32gb. Can access iTune store.Can sample music selection. Completed latest update for ipod Can't make any purchases. Get error "could not complete your iTunes store request. An unknown error occured  (-1202)". security SSL 3.0 & TSL 1.0 OK. Firewall enabled for iTunes. ???

    laneymenion wrote:
    Using Proxy: Yes
    HTTP Proxy: 192.168.100.15:80
    Change the Using Proxy to No
    Have you allowed itunes and itunes helper in your security software firewall?

  • I keep getting error message "must complete End User License Agreement"...can't open PDF's on my Mac

    I keep getting error message "must complete End User License Agreement"...can't open PDF's on my Mac

    First question: have you started the Adobe Reader App since you installed it?

  • Getting error Uni code check when modifying Ztable from work area?

    Hi all,
    Getting error Uni code check when modifying Ztable from work area?
    and how to increment counter when data modified?
    FM 'popup_to_confirm'.
    IMPORTING
           answer                      = RES.
    CHECK
          RES = '1'.
            WRITE :/ 'UPDATE'.
          MODIFY ZPPT_PPDPLAN FROM GWA_FIN_PROD.
    thanks in advance..

    what error you are getting. make sure source and Target are of similar sturcture.

  • I cant reset my iphone because it demand restriction code, em stuck now, kindly help what to do to get the **** out ov this?

    I cant reset my iphone because it demand restriction code, em stuck now, kindly help what to do to get the **** out ov this?

    Force the phone into recovery mode, as described here, & restore it:
    http://support.apple.com/kb/ht1808

  • I lost all email 6months and older in mac mail. Need Serious Help!

    I lost all email 6 months and older in mac mail. In my in-box as a well as all other folders I created. I expected that the mac email software would keep all email as it did for me in when I used to use Outlook. As well I thought I was covered with the Time Machine I have installed. Well.....The Time Machine that I was aggressively encouraged to buy apparently doesn't back up email. If it does, I must need some secret decoder ring to unlock where it is. I need serious help. I lost months of professional and personal data. I need to fix this immediately and find some way to get my email back. Please help.

    In March when I upgraded to Lion and iCloud I also experienced a similar problem (cluster of problems) which was solved by a password reset (conforming to new requirements) for my Apple ID. I'm glad to see that many nice people contributed and your primary problem is fixed.  My comment is on your Quicken problem.
    Your data inside Quicken 2004 is on borrowed time.  In the process of researching personal budgeting apps I found many reports on the web that indicate Intuit as a company is scaling down Quicken (desktop) development and its future attention to the Mac platform will be minimal.
    Did you know that Intuit is behind Mint.com?  You may be hesitant to put your financial data "in the cloud" and I may be being sheepish, but.. bbaaaa, bbaaaaa, the cloud is where it's going.  I know first-hand want a pain in the arse it is to customize an app to your liking.  I spent several hours on Mint.com setting up categories and tagging transactions.  It's tedious. I didn't look because I wasn't a Quicken user, but perhaps Intuit was nice enough to provide a data conversion path for Mint.com.  It is worth a look.
    My second suggestion is to scour the web for a hack solution.  You can't be the only person who is facing this problem.  Quicken was very popular.  I just bet someone has posted directions or some code for exporting the Quicken 2004 data and manipulating it for something else.
    Good Luck.
    Ellee H.

  • Hi all, i am trying to install Xcode 3.2.5 & Xcode 4.2 in iMac (Mac OS X 10.6.8) , I am getting error message as "Installation Failed". somebody can help me. Thanks in advance.

    Hi all,
               I am trying to install Xcode 3.2.5 & Xcode 4.2 in iMac (Mac OS X 10.6.8) , I am getting error message as "Installation Failed". somebody can help me. Thanks in advance.

    I too have the same error while installing  xcode 4.2 in Mac os x 10.6.8.
    Can any one solve this issue.

  • When i try to write an image in dvd my drive show me an error as...sense key=medium error, sense code=0x73, 0x03. Can help me anyone?

    when i try to write an image in dvd my drive show me an error as...sense key=medium error, sense code=0x73, 0x03. Can help me anyone?
    Mac Pro, OS X Mountain Lion (10.8.3), EARLY 2008 MACPRO3,1

    Try another blank DVD or another brand of DVD. 

  • Cold boot problem with X-FI Fata1ty card... Need serious help!

    Hey guys:
    I just finished upgrading my computer. Realized that I have a cold boot problem. In order to identify the source of problem. I began the following test.
    . Remove everything except, cpu, heatsink, ram, video card. Tried to boot with those devices. => No cold boot problem.
    2. Install the rest of the ram sticks (I have 4 x 52 in total). => No cold boot problem.
    3. Install the other video card (my setup is 7900gtx in SLI) => No cold boot problem.
    4. Install the Creative X-FI Fataty card. => COLD BOOT PROBLEM
    Once the computer is shut down via the front power switch on the case, the computer will not boot again. To boot the computer, I need to switch off the main power switch on the back of the psu and switch it back on; then turn on the computer via the front power switch on the case. I tried the problem with and without the sound card. Whenever the sound card is installed. There is the problem. If there is no that sound card in my rig, then there won't be any cold-boot problem.
    My rig specs:
    DFI Lanparty nF4 SLI-DR Venus
    AMD Opteron 65 CCBE 609 - Stock speed
    4 x 52 MB G.Skill Samsung TCCD LE 2.85V DDR 400
    CPU Cooling - Tuniq tower 20
    2 x EVGA 7900 GTX Stock - SLI
    3 x WD Raptor 74G RAID-0 SATA (-3) 0000 rpm (System)
    x Seagate Barracuda 7200.7 60Gb 7200RPM NCQ SATA - 4 (Backup)
    Pioneer Black DVR 0 DVD+/-RW - IDE /0
    Lian-li PC-V 200B Plus-2 with little case mod
    OCZ GameXstream 600W
    Creative Fatalty Sound Card w/ Front Panel
    Logitech Z5500 5. speakers
    I need serious help. This problem is so annoying.
    Tnanks and will greatly appreciate it.Message Edited by White_Hair on 0-27-200605:4 PM

    The onboard sound is disabled. Unfortunately I sold the Seasonic PSU to my friend. The OCZ GameXStream is suppose to be the higher grade psu than Seasonic PSU. Also, the cold boot problem only exists if the sound card is plugged to the motherboard. I tried change different pci slot. It doesn't seem to help the problem. Thanks for the reply Message Edited by White_Hair on 2-02-200606:07 AM

  • Need serious help over here...

    Hi guys...need serious help...I am using nokia lumia 710 for the past 3months...today i tried to reset my phone,but after resetting my phone dint restart...it keeps on rebboting after the WINDOWS PHONE screen apears...So i need some help...i tried pressing power on,camera and volume up and down button to reset again...but nothing happening...if i charge the phone it does the same...plz help me

    Did you try removing the Battery for a couple of minutes, insert back and see if it makes any difference ? If no change then you need to visit Nokia Care

  • IMPORTANT OPENED WINDOWS I WAS WORKING ON (EMPLOYMENT INFO, I AM UNEMPLOYED!) AND NOW THEY ARE GONE AND I CANNOT GET THEM BACK!! YOU NEED TO HELP ME RESTORE TH

    My Firefox crashed with important information on it!!!
    My Firefox has been crashing every day sometimes several times a day. I have emailed your staff back many times looking for a reason for the crashed without any response. I have been able to get by because I would restore the settings and continue what I was doing. WELL….this last crash has disappeared from any way of getting it back and IT HAD SOME REALLY REALLY IMPORTANT OPENED WINDOWS I WAS WORKING ON (EMPLOYMENT INFO, I AM UNEMPLOYED!) AND NOW THEY ARE GONE AND I CANNOT GET THEM BACK!! YOU NEED TO HELP ME RESTORE THAT OPEN WINDOWS FOR ME. IT IS REALLY IMPORTANT!! I NEED SOME DESPERATE HELP NOW!!
    Thanks,
    Nick

    Nick, sorry to hear about that. I'm not sure where you are sending the emails, but if you use the form to submit your crash information, that goes into a database for review by the developers instead of coming to the support volunteers here.
    Did you try the History > Restore Previous Session command? Firefox sometimes saves form data in the session history. This data may age out, so you should use that menu item as soon as possible.
    Going forward, consider installing the [https://addons.mozilla.org/en-US/firefox/addon/lazarus-form-recovery/ Lazarus: Form Recovery] extension if you are filling long forms and Firefox is unstable.
    With respect to the crashes, there are many possible reasons for Firefox to crash. Have you reviewed the help articles for diagnosis? For example: [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]].

  • I need serious help please.. We do translations of schoolbooks, I looked for an over-type function but were unable to find, we are working in indesign CS 5. it takes up allot of time to delete text and type in the new language.

    I need serious help please.. We do translations of schoolbooks, I looked for an over-type function but were unable to find, we are working in indesign CS 5. it takes up allot of time to delete text and type in the new language.

    Argh that's frustrating! I never noticed that key did not work in InDesign.
    A bit of research and it turns out the MS Office has this as an option in their software. But I cannot find an option in InDesign preferences to make this work.
    However, somethings are not listed in the shortcuts and preferences and are hidden triggers in InDesign which can be accessed through a script.
    I'm not saying it's possible to activate the Insert Key through a script, but it's plausible that it can be activated.
    Maybe ask on the scripting forum? InDesign Scripting
    I know this may be a possibility as with InDesign's earlier versions of PDF export to interactive documents there previously was no way to export interactive pdfs as single pages if in Spreads.
    But the option to toggle this setting was scriptable.

  • I get error 0x80073cf9 now and I need help to FIX Windows Store can't update any Apps & can't install any Apps now?

    Hi I hope some one can tell me step by step how to fix windows 8.1, I can't update any of my Apps and can't install any new apps now and I get error code 0x80073cf9?  But my problem is different than most of the other FIXES I read about, because nothing
    fixes my problem to be able to install new Apps and get app updates and stop getting that error code?
    I keep getting same error code 0x80073cf9 after I try any of the FIXES I have read about and tried all  the fixes on  my Lenovo Z580 laptop, that came with windows 8 and updated to 8.1.  And ever since I bought this laptop I could
    always install and update all my apps for the last year when I had Win 8 and Win 8.1 now.   This has been going on since April and May and its driving me crazy!    And from the May updates I did get all the updates and
    I also installed the KB update  that said I need this KB to get all updates in the future.  
    But all the other people when they get this error code they could not even open and use any of their Apps already installed.  And they also get the error code when they try to update or get a new apps.   
    But I can click on any APP installed already and use all my Apps with no problems.     I have read so many how to fix this error code but nothing works! :-(      I have tried a lot of 
    the fixes on Microsoft forums that says do this and the fix will get rid of the error code but I keep getting the same error code after I try that  fixes.    And I have read a lot of other windows 8 an windows 8.1  web sites when
    I search for how to fix this error code?   And tried all of the fixes that were different from the Microsoft forum fixes. But after I try those fixes I still can't install any apps or can't get my app updates? 
    Please to any person's who can help me by giving me  more that 1 fix, because I have tried so many fixes, If you know more that 1 fix tell me how to do your fix step by step so I can understand what you say to do to fix my windows store? 
    Thanks for any and all help?  And if I don't get any help in this section of the forum I will try to put this in a different area, if I don't get any help at this section of the forum I will try to ask this in another part of he forum ok?   
    I really need HELP with this so I can get my laptop working again to install new apps and get the updates to my apps? 

    Fixed the problem by going to settings/store and logging out with apple ID.  Then logged back in with password and updates, apps, and iTunes store seem to work ok now.

  • I'm getting  an error message after completing an update.  Help?

    I'm getting  an error message that says "This version of iTunes has not been correctly localized for this language.  Please try running the English version." after completing an update.  Help?

    Thanks for your help! I imported the table into Muse, then exported the site as html and opened it in Dreamweaver. I should've tried that in the first place but gave up when I couldn't edit it in Muse. I didn't know you could edit the html right in Muse. Also, my styling and the images I was using weren't showing up in Muse but once I opened it in Dreamweaver, everything fell into place. AND I could edit it! My client needs to edit this page every week, so I needed to be sure she could do that. She doesn't use Muse but does use Dreamweaver. At this point, I think I'll leave it alone and not try to style it with inline css. Maybe when I get a little more time, I'll try it. I just don't want to mess things up now that the're working.

  • Getting attachments and emails need serious help!!

    I am not sure if I am doing this right, but I am trying to receive emails from gmail, and I am having some serious problems. For some reason I get four emails and then I get a null exception. I have been through my code a dozen times and I cannot find the problem. Here is my code:     try{
                        Properties props = new Properties();
                        props.setProperty("mail.pop3.socketFactory.class", SSL_FACTORY);
                        props.setProperty("mail.pop3.port", "995");
                        props.setProperty("mail.pop3.socketFactory.port", "995");
                        Session session = Session.getInstance(props, null);
                        Store store = session.getStore("pop3");
                        store.connect("pop.gmail.com", "jwheat3300", "carrie11");
                        Folder folder = store.getFolder("INBOX");
                        folder.open(Folder.READ_ONLY);
                        int n=folder.getMessageCount();
                        attach = new String[n];
                        String select = "false";
                        String body = "";
                        for(int i=1; i<=n; i++)
                             Message message = folder.getMessage(i);
                             date2 = "3/2/2006";
                             from = message.getFrom()[0];
                             subject = message.getSubject();
                             attach="false";
                             Multipart multipart = (Multipart)message.getContent();
                             int j = multipart.getCount();
                             for(int l=0; l<j; l++)
                                  Part part = multipart.getBodyPart(l);
                                  disposition = part.getDisposition();
                                  System.out.println(disposition);
                                  if((disposition !=null) && ((disposition.equalsIgnoreCase(Part.ATTACHMENT) || disposition.equalsIgnoreCase(Part.INLINE))))
                                       MimeBodyPart mbp = (MimeBodyPart)part;
                                       if(mbp.isMimeType("text/plain"))
                                            body = (String)mbp.getContent();
                                            if(body==null)
                                                 body="";
                                            bodies.add(new Body(body));
                                       if(mbp.isMimeType("text/html"))
                                            body = "This is an html email. Unable to display HELP";
                                            bodies.add(new Body(body));
                                       if(mbp.isMimeType("application/x-shockwave-flash"))
                                            attach[i] = "true";
                                       System.out.println(part.getContentType());
                                  if(disposition == null)
                                       MimeBodyPart mbp = (MimeBodyPart)part;
                                       if(mbp.isMimeType("text/plain"))
                                            body = (String)mbp.getContent();
                                            if(body==null)
                                                 body="";
                                            bodies.add(new Body(body));
                                            attach[i] = "false";
                                       if(mbp.isMimeType("text/html"))
                                            body = "This is an html email. Unable to display HELP";
                                            bodies.add(new Body(body));
                                            attach[i] = "false";     
                             inmails.add(new Inmail(select, from, subject, date2, attach[i]));
                             table.revalidate();
                        folder.close(false);
                        store.close();
                   }catch(Exception t)
                             System.err.println("Exception900: " +t.getMessage());
    I get the body fine, and what I am trying to do is when I get all of my information is to put this into the inmails vector and then update my table. That works but I am only gettting four of thirty emails. Also when it comes to attachments do I need to set up a mime type for every possible attachment that will come? I need some serious help!

    I guess I am seriously confused then....I tried doing the tutorial from jguru on sun's site and this was how the code was set up. At least I think it is....I pretty much have no idea what I am doing. I mean the code as it stands will get the emails, and by the way this is for an application not for a server or anything. So should I check for it to be just plain text first and then find out if there is a multipart. There is not really any good tutorials that explain what it is I am trying to accomplish. Please help!

Maybe you are looking for

  • Query : Addition of extra fields in the User Registration page of portal.

    Hi All, I have a query, about adding extra fields in the new user registration page of portal. If you can suggest the required source files in details,inorder to incorporate two more fields. Say, AGE and COMPANY,with the existing fields in the same p

  • (mac,jdeveloper 11g) can't create a default domain on weblogic - NEWBIE

    hello, I would like tu use jdeveloper so I created a generic project with the purpose of create a jsf page in it. but I can't deploy it on the weblogic server as I can't create a default domain; here is the log for the error : Log File: /Users/lolvel

  • E-Learning Suite 6.1 for Mac

    9 times out of 10 iMac will not recognize DVD, ejects it, and when it accepts, insaller will not complete--get error-- 0185404686  We've encountered the following issues. Installer failed to initialize. Please download Adobe Support Advisor to detect

  • RESTRICTION -POSTING FOR PREVIOUS F.Y.

    Hi We wish to restrict during any postings under fiscal year 2006 for all users across the globe and willing to allow only few users for posting any journal entries as per recommendations of statutory auditors. At present, we have not given any acces

  • OC4J Exception Web Service

    I am using JDev. 9.0.3.0 to go through Publish PL/SQL as Web Service tutorial. Every thing works fine until I try to run the client side stub against OC4J embedded in JDev. OC4J casts this exception: Can you resolve this? Regards Flemming Oracle9iAS