Need Help with Contact Book to Mysql in Flash

Hi... this is a lil over my head. If you go to
www.rampagesoundstudios.com and click on the contacts tab, there is
a guestbook. I am not that experienced in flash to get this to work
with the mysql databases on the webserver.
What I need to have done is when you click the submit button,
it sends it to a text file, then I would guess to a php script and
then when I want to retrieve it, have a html file queue the
database for retrieval.
Can anyone assist me or teach me how to do this? I would be
willing to pay you via paypal if needed.
Please reply off list to ramtazz(at)comcast.net
Thanks,
Bill

Visit gotoandlearn.com. There are a few video tutorials that
take you thru the process of loading data into Flash.
The general scheme for a MySQL database is... Flash calls a
php file that collects the data and writes (echoes) it into an xml
format which Flash can read using its xml processing function(s).
Putting new data into the database follows a similar path,
where Flash sends the variables to a php file and that file places
the data into the database.

Similar Messages

  • I need help with contacts.

    Ok, I just recently got the Iphone 4s.  I need some help with contacts.  I ended up adding my hotmail contacts to my phone and now every time I add a new contact, it adds the person to my hotmail contacts instead of my All On My Iphone contacts.  I don't like it because I am adding phone numbers, not necessarily with email addresses. 
    If you sent me a message right now and I went in and added you as a contact, it adds you to my hotmail contacts instead of my iphone ones for some reason.  How can I fix this?  And if I delete my hotmail account temporarily (and re-add it) will I lose the contacts that my phone put in there mistakenly? 

    Well, I don't care if it makes a back-up of my contacts in my hotmail. But, I would like my contacts to go to my actual phone contacts.  I call and text much more than I email and it would be nice to have to not wade through my email contacts to find someone I am looking to text, etc. 
    I know it's not a huge hassle, but I prefer to keep the people I contact most within my text/phone contacts, rather than email. 
    Also, if I opt to change my email service (hotmail gets a lot of spam), I don't want to lose phone/text contacts because I no longer use that email anymore. 
    I wouldn't even care if they appeared in both, for my most contacted. I just would like to have them in my phone book without having to add them all by hand. 

  • Need help with this book problem...Pig game...can ANYONE help!??

    I need help with the following book problem...could someone write this code for me?? Thanks!!
    First design and implement a class called PairOfDice, composed of two six-sided Die objects. Using the PairOfDice class, design and implement a class to play a game called Pig. In this game, the user competes against the computer. On each turn, the current player rolls a pair of dice and accumulates points. The goal is to reach 100 points before your opponent does. If, on any turn, the player rolls a 1, all points accumulated for that round are forfeited and control of the dice moves to the other player. If the player rolls two 1s in one turn, the player loses all points accumulated thus far in the game and loses control of the dice. The player may voluntarily turn over the dice after each roll. Therefore the player must decide to either roll again (be a pig) and risk losing points, or relinquish control of the dice, possibly allowing the other player to win. Implement the computer player such that it always relinquishes the dice after accumulating 20 or more points in any given round.
    I realize this is a long code, so it would be greatly appreciated to anyone who writes this one for me, or can at least give me any parts of it. I honestly have no clue how to do this because our professor is a dumbass and just expects us to know how to do this...he doesn't teach us this stuff...don't ask. Anyways, thanks for taking the time to read this and I hope someone helps out!! Thank you in advance to anyone who does!!!

    Nasty comments? It's not a matter of not liking you, it's a matter of responding to the
    "I'ts everyone else's fault but mine" attitude of your post.
    If you are genuine, the program is very easy to write, so, your Professor is correct when he said you should
    be able to do it. I'm still very much in the beginner category at java, and it took me only 20 mins to write
    (+5 mins to design it on paper). 2 classes in one file < 100 lines. Most of the regulars here would do it in half the time / half the lines.
    All of the clues are in the description, break them down into their various if / else conditions. Write it down on paper.
    Have a go. Try to achieve something. Post what you've tried, no-one will laugh at you, and you will be
    pleasanty surprised at the level of help you will get when you've "obviously" made some effort.
    Again, have a go. If you don't like problem-solving, then you don't like programming. So, you gotta ask
    yourself - "what am I doin' here?"

  • Need help with order booking tutorial

    Hi
    I am new to OracleFusion.
    Started Learning By practising OrderBooking tutorial for 10g.
    I am practising parellel branching in the tutorial .
    I ve invoked Rapid distributors service in branch 1 of the flow activity.
    and
    i ve invoked Select manufacturing service in branch 2 of flow activity.
    I ve deployed order booking service,rapid distributed service,select manufacturing service in the server.
    Select manufacturing service is an asynchronous service .for this service to be complete it requires user to manually set price for the item ordered.
    So I accesed SelectManufacturinUI in browser as instructed in book.The problem is tht it is directing me to login page where User id and password should be submitted.
    In the tutorial no info is given regarding login details fot this page.Hence i am not able to set price for order.
    So the Select manufacturing service is not completed ..hence i am not able to move further in the tutorial..
    Kindly help with this..if any one has faced same prblm
    thanks

    Hi
    I got the answer. Just posting it so that it helps someone
    User id i tried : jcooper
    password : Bpel console startup password

  • Need help with FLV type SWF playback in flash movie

    Hi,
    I have three external SWF files from a client without FLA
    sources. The SWFs were done 3 years ago by someone else so there is
    no way to modify the existing SWF files. These contain no
    interactivity but may involve nested clips on the main timeline.
    They are AS1 or AS2 files so they need to be done with AS2
    scripting to keep it simple.
    I need to call these SWF files inside another flash movie and
    play them in a player window as if they were video files with
    play/pause, seekbar and volume controls. The needed functionality
    is similar to FLV players. My controls will use custom graphic
    buttons and sliders mimicking the look of CNN video player window.
    Does anyone know a good tutorial on how to script these
    controls for SWF?
    Most likely I think I will load it in a clip and I am
    thinking that I will need to get the duration of the loaded swf in
    order to set up the seekbar.
    Thanks in advance,
    Attila

    I think your professor, or somebody, gave you directions with ActionScript 2 programming. In AS2, what oyu have here would have worked just fine. But, in AS3, you need to use a fairly different approach. Your buttons, and their instance name, can remain the same. But now, in AS3, you have to add event listeners in the following manner:
    yourButtonName.addEventListener(MouseEvent.CLICK, yourListenerFunction);
    In your case, you can do one of two things - A) assign a unique listener function to each button, or B) assign the same listsner to both functions:
    A)
    start_btn.addEventListener(MouseEvent.CLICK, startPolygon);
    stop_btn.addEventListener(MouseEvent.CLICK, stopPolygon);
    function startPolygon(e:MouseEvent):void{
        polygon.play();
    function stopPolygon(e:MouseEvent):void{
        polygon.stop();
    B)
    start_btn.addEventListener(MouseEvent.CLICK, controlPolygon);
    stop_btn.addEventListener(MouseEvent.CLICK, controlPolygon);
    function controlPolygon(e:MouseEvent):void{
       if (e.target.name == "start_btn") {//Test for the name of the object that dispatched the CLICK event
          polygon.play();
       } else if (e.target.name == "stop_btn") {
          polygon.stop();
    When I'm using several buttons that do the same/nearly similar things, I favor approach B over A, as it keeps me to jsut one single function to deal with.

  • Need help with address book

    Can someone please tell me how to save my address book on my pearl to my sim card? I just got a new phone and need my contacts on my sim card!!!
    Thanks
    cece

    Scroll and enter to 'address book' icon.
    Press Menu button (the one to the left of the trackball with the little dots on it)
    A menu should come up, scroll to 'Sim Phone Book' and there you have it..
    If your issue is resolved, put a checkmark in the green box that contains the resolution.
    OR
    If it was just/or also really helpful - Give it a Kudos.. Go on Mate.. Help the rest of the clueless blackberry user world find their answer too..
    ~Gday from Down Under~

  • Need help with EVENT BOOKING: option for multiple, payment (pay pal standard or pro only) add cost, etc

    Hello!
    I'm at my wits end: please help! It seems straight forward, and I sold my client on BC thinking this was doable in the events module, but it seems maybe not so without a ton of custom coding.
    1. Book an event online,
    with option for multiple (say 1-5 people at a fixed cost per person),
    and checkout using only Pay Pal (standard or pro, doesn't matter, but I think Standard won't work without shopping cart).
    2. The events are every day but Sunday all year long (just admission to an attraction), so is there a way to upload months in advance so they don't have to be manually entered?
    I'm so grateful for any assistance.

    This is all very achievable:
    • Events you can add multiple people to book.
    • PayPal you use use our APP that's in the BC Appstore (Liam to confirm is works with bookings)
    I'm sales and marketing at Pretty, so I'm not the person to advise on how all this fits together. But I'm sure Liam can point you in the right direction.
    If you need some consulting or us to do it for you just let me know [email protected]
    Brett
    www.prettydigital.com.au

  • Portfolio site, need help with contact form

    Hi,
    Im a graphic designer turned web designer student. I dont know A LOT of flash, but im learning more as time goes by in and out of school. I currently redid my portfolio website, before it was more of a design taken into dreamweaver and uploaded. Now everything is not completely done, but im doing the site in flash.
    www.Nikdesigns.com, if anyones interested...
    but im trying to set up a really basic contact page. I have a name/email and message input text boxes and a submit button so far. Is there anyway someone can explain to me exactly what code I need, and what I need to do to be able to set this up correctly? Or link me a good tutorial?
    I understand flash needs a php to send the info out and comunicate with, but other then that im lost. What actionscript? and what keyframe?
    flash is so frustrating =/ someone please help, lol.

    If your contact page is just 1 of the many pages in your site, I'll recommend you write it in HTML/PHP/JSP.
    There are many cases when Flash/AS is the efficient tool to get jobs done. But just my humble opinion, I think in this case you'll be more efficient to construct the contacts page with mark-up languages.
    Of course, it is possible to do it in Flash/AS and not difficult. I just have 1 question before I go off and try:
    When an user submits the form, how do you wish to receive it? As an email in your inbox? Store it in a database? Or elsewhere?
    Cheers,

  • Need help with contact recovery

    i need some help please
    i lost my bb 9900 last week and now am using a bb 8520 that has os 5.0 i believe
    supposedly bb protect will not work with this phone so I cannot access my weekly backups from protect website
    is there anyway i can transfer those online backups to my home mac computer so i can load to this phone without installing protect app? (it wont let me install on this phone)
    if not - can someone from RIM send to me? i can see the backup files on protect website - latest from around when i lost my phone.
    the reason for all this is i have many BBM contacts - and previously, i was able to restore using email when i got my 9900 and it loaded successfully - now, when i try retore by email - it states no contacts linked to my email address!
    i dont have these bbm contacts on my mac since the last backup on the computer was last year - since then, i have only backed up using protect
    i am having no luck at all!!!!

    sunnyb82 wrote:
    but i dont understand your last part:
    (this doesnt show up in my options tab for contacts)
    As for the continued inability to restore your contacts from BB Protect, also check this:
    On the BlackBerry smartphone, navigate to Contacts > Options > Desktop Contact List. Set Wireless Synchronization to No.
    Check that same setting for any Contact Lists you have displayed in the Contacts Options area.
    not sure what this all means > Further, if you are going to use Google as your Contact list source, then restoring from any source is moot...if Google has the correct data, then allowing it to continue OTA synchronization would be your best approach.
    My point was that the Option setting indicated may or may not exist...if it exists, then it needs to be set to NO. If it does not exist, then it is not relevant (which I think is what applies in your case). In any event, since you were able to restore, all is well as far as contacts are concerned.
    sunnyb82 wrote:
    so i have my old BBM pin - how can i retrieve the BBM contacts from there? its linked to my gmail address because i restored by email to my 9900 last time
    You have your old BBM PIN? Hmmm...I'm not quite sure what you mean by that. Knowing the PIN is just that...knowing the unique PIN that was assigned to your old BB at time of manufacture. But, for obtaining your old BBM contacts, you'd need the actual device or a successful backup that was previously created (either the Desktop Software or via the in-BBM backup method). Knowing only the PIN itself now, I don't see how that applies. Perhaps I do not understand?
    Now, if what you did was do the remote in-BBM backup using an email address, then that's a different thing indeed. But I don't exactly know how that works...it may well be that it only works for the exact same BB and not to another BB. I've always used the local file BBM contact backup as I then know for certain that I have control over the backup file.
    sunnyb82 wrote:
    can someone from rim help me retrieve this data since its all stored on the servers...
    For free, only if you can convince your mobile service provider to escalate your case into RIM.
    For a fee, you can ask via Incident Support, but it does cost to just ask the initial question, and I've no idea if there even is a way to accomplish what you are wanting to have them do (I rather doubt it, but I still do not quite understand what your request is):
    http://us.blackberry.com/support/programs/technical/incident.html
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need Help With Contact Info Before Sync

    I just got my first iPhone, I had a treo 700wx before this, and use Outlook 2003 for my contacts. I want to download them to my iPhone but would like to know if I need to make changes to my contact names before I do.
    In Outlook and my 700wx the names are list last name first with a comma in between i.e., Doe, John.
    When I sync my contacts will the first name end up where it should and the last name where it should, or do I need to change them in Outlook before syncing.
    Thanks for any help,

    You can set Contacts to display and sort them as you prefer:
    Settings > Mail, Contacts, Calendars > (scroll down to Contacts) Sort Order > Last, First or First, Last and Display Order > Last, First or First, Last

  • Need help with contacts

    Hi,  I've had contacts on my imac for years.  then, about 4 years ago, I got an iphone... I help out for a while ;-) 
    I back my iphone and ipad up to my imac at home.  So once I got my iphone, I created a group called iphone contacts as, at the time, I did not want to have EVERY contact I have on my phone.  At the time, I felt like there were ones I'd want to keep at home, wanting to just have my family and friends on my phone. So when I backed up, I had a folder I called iphone contacts and that is what backed up to my phone.
    Zip forward what feels like a technological millenium, iCloud is working and I'm using my phone much more than I did in the beginning and for more things. 
    Now I have much of my data backed up to iCloud, such as contacts, calenders, reminders, safari and notes.  I don't have mail via iCloud as I use gmail and it does it for me basically.
    So today, I got an address update for one of my contacts.  I went into contacts on my iphone and edited it with the new snail mail address.  Upon arriving home tonight, I decided to back up my iphone and looked at my contacts first, wanting to make sure the new change was there.  It is not.  I'm not sure why but in looking at my iphone's contacts, I find I have groups that were created due to previous ways of sorting and tracking data and now, with the cloud, it is just a bit confusing.  in my contacts on my imac, I see the following categories and groups
    at the very top
    ALL Contacts (in blue)
    On my Mac (in gray)
         All on my mac
    iCloud (in gray)
         All iCloud
         Family
         iPhone Contacts
    Smart Groups (in gray(
         Last Import
    And on my iphone I see three groups
    All Contacts
    Family
    iPhone Contacts
    It seems that now that I am using iCloud to hold and sync my contacts, the use of groups is truly more about a mail list.. such as family, so if I want to email all my sibs, etc.  So can I just delete all the groups and just have one pool of contacts, which I assume would be ALL CONTACTS, correct?  
    And then, as I see the need, I can create a group and drag the various contacts to that group? 
    And if I change info in a contact, will it show up in any group in which that contact is a member?
    thanks for any help.
    M

    From Contacts Help. Type in smart groups:
    Use Smart Groups
    A Smart Group groups contacts automatically based on criteria you specify. For example, group all the members of your swim club by creating a Smart Group for contacts that have “swim” in the notes field. Then every time you enter “swim” in a contact’s notes field, the contact is added automatically to your swim club Smart Group. Smart Groups can include contacts from any account.
    Open Contacts
    HideCreate a Smart Group
    Choose File > New Smart Group.
    Enter a name for the Smart Group.
    Specify the conditions.
    Use the pop-up menus and entry field to set the conditions. Click Add to specify additional conditions.
    If you include a group in a condition (by choosing “Card is member of” or “Card is not member of”), you can’t delete that group until you either change the condition or delete the Smart Group that uses the condition.
    Click OK.
    HideEdit a Smart Group
    Select the group, and then choose Edit > Edit Smart Group.
    HideRename a Smart Group
    Select the group, and then click the group’s name.
    Enter a new name, and then press Return.

  • Hard problem. need help with contact file (data.syncdb)

    hello everyone. i lost my iphone. i have the data.syncdb file.
    how can i view this?
    if i cannot view it can i send it to someone and they can replace their file on a old iphone (if someone has one) or touch? then they can see the contacts and email them to me? i would paypal you some $$ to help me out. i dont have much just need the contacts bad.
    any help would be great.
    Thanks!

    anyone?

  • Need help with online book shop example!

    hi everyone!
    i am tryin and completing the online book catalog example given in sap help but i'm facin a prob with the internal table authors.can anybody tell mye the exact way to declare and use it in the program.its quite diff to describe the exact situation but i think the experienced ones will be able to understand my prob.
    eagerly waitin
    regards
    sachin

    if the navigation between pages are not working, the reason could be that the code in oninputprocessing is not maintained properly. if you just copy paste the code from the online tutorial it should work.
    navigation between pages not working? -
    to resolve this place HTTP break point in the code in oninputprocessing and run your application, click the button to navigate to other page, watch in the debugger as to whats going wrong.
    Regards
    Raja

  • Need help with audio books

    i have a few audio books on cd, when i rip them to itunes i am unable to catagorize them as an audio book. thus they show up under music in my ipod and the audio book folder remains empty. i tried creating a genre for audio books but that still leaves them listed under music. any one know how to fix that?

    Only audiobooks from ITMS, audible.com and AAC files with m4b extensions (applescripts for mac) show up in audiobook main menu, skip in main menu shuffle, and allow faster/slower/normal playback speed.
    Try looking thru these links for help:
    Mostly PC, but there are some links to mac:
    -Audio Book FAQs & iTunes Screenshots
    <a href="http://forums.ilounge.com/showthread.php?s=&threadid=116700> Guide: Converting audio book files,CDs,& mp3s with iTunes5+ to Bookmarking iPod files</a>
    <a href="http://forums.ipodlounge.com/showthread.php?s=&threadid=79396> Guide: MarkAble Shareware. EZ merges/converts CD/MP3/WAV to AAC (Slow) or MP3 (fast) bookmarking files, adds to iTunes, & deletes temp files
    <a href="http://www.ipodsoft.com/index.php?/downloads/markable> MarkAble $15 PC Shareware</a> free full-function trial.
    <a href="http://www.ipodlounge.com/forums/showthread.php?s=&threadid=33491">
    Guide 4. Audio CDs to bookmarking iPod files (Mac adaptable)
    Guide 1. Audio mp3 files to bookmarking iPod files (mac adaptable)
    Guide 2. Audio CassetteTapes, vinyl LPs & CDs to bookmarking iPod files (PC only) Requires freeware or software such as this software to record:
    -Convert ANY SOUND Played on computer to bookmarking iPod file
    <a href="http://forums.ipodlounge.com/showthread.php?s=&postid=582930#post582930>G uides to Sound Recording ware: Audacity Free, $12 Total Recorder, 30 Euro PolderbitS</a> <supplement to guide 2>
    <a href="http://www.ipodlounge.com/forums/showthread.php?s=&postid=312147#post3121 47">
    Guide 3. Copy Audio CDs into fewer iPod files using freeware & additional steps&time
    Guide 5. Burn audible.com books to CD iTunes (mac adaptable) or AM (Best!PC only)
    Guide 6. Convert mono m4b files to Stereo to avoid 4G & Mini Lockup AND keep iTrip out of 4G+ Shuffle
    Link 7. Roberts sorta literary Audible Book Recommendations
    To avoid bugs, keep files under 13.5 hours duration and convert in stereo. See Supplement to Guide 2 to see how, if necessary, to reduce file length with Audacity Freeware. (Just select a section of the long file and do a save as.)
    Windows XP, 30GB video and nano iPods Windows XP
    Windows XP, 30GB video and nano iPods Windows XP

  • Need help with contacting HTTPS URL

    Hi,
    I am new bie to Java Security. I do not know where to start off with. Here is the requirement.
    I need to contact an HTTPS URL and this URL gives me output which is encypted data.
    I have to save this ecnrypted data into a file and I have the KEY to decrypt the data.
    I have tried several ways (all listed below) to get it working. But I am not successful. I get
    "javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found"
    Can you guys give me some insight on how to proceed?
    Thanks
    Mathew
    import java.util.*;
    import java.text.*;
    import java.net.*;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.security.Permission;
    import javax.net.ssl.HttpsURLConnection;
    import java.security.*;
    import java.security.cert.*;
    import javax.net.ssl.*;
    import java.io.*;
    public class temp
         protected BufferedReader messageResponseReader;
         private static final String CERTIFICATE_TYPE = "SunX509";
         private static final String KEYSTORE_TYPE = "JKS";
         private static final String SSL_PROTOCOL = "TLS";
         private static final String CERTIFICATE_FACTORY_TYPE = "X.509";
         public static void main(String args[])
              try
                   try{
                             temp tmp = new temp();
                             String url = "https://test.mysite.com/one/perform.jsp?mode=get&check=true";
                             tmp.sendRequest(url);
                        }catch(Exception e)
                             e.printStackTrace();
              catch(Exception e){
                   e.printStackTrace();
    public String sendRequest(String urlString) throws Exception
    StringBuffer response = null;
    BufferedReader messageReader = null;
    try
                   String username = "user";
                   String password = "pwd";
                   String encoding = new sun.misc.BASE64Encoder().encode("username:password".getBytes());
                   //java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
                   //System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
                   // Needed for validation of the server certificate
                   //System.setProperty("javax.net.ssl.trustStore","C:\\cert\\key.txt");
                   // Needed for providing a clint certificate for client authentication
                   //System.setProperty("javax.net.ssl.keyStore","C:\\cert\\key.txt");
                   //System.setProperty("javax.net.ssl.keyStorePassword","te5t1ng");
                   //System.setProperty("ssl.SocketFactory.provider", "com.sun.net.ssl.internal.ssl.Provider");
                   KeyStore ks;
                   ks = KeyStore.getInstance("JKS");
                   CertificateFactory cf = CertificateFactory.getInstance(CERTIFICATE_FACTORY_TYPE);
                   TrustManagerFactory tmf = TrustManagerFactory.getInstance(CERTIFICATE_TYPE);
                   KeyManagerFactory kmf = KeyManagerFactory.getInstance(CERTIFICATE_TYPE);
                   FileInputStream fis = new FileInputStream("C:\\cert\\key.txt");
                   BufferedInputStream bis = new BufferedInputStream(fis);
                   Collection c = cf.generateCertificates(fis);
                   Iterator i = c.iterator();
                   while (i.hasNext()) {
                   java.security.cert.Certificate cert = (java.security.cert.Certificate)i.next();
                   System.out.println(cert);
                   ks.load(null, null);
                   X509Certificate the_cert = (X509Certificate)cf.generateCertificate(bis);
                   ks.setCertificateEntry("server_cert",the_cert);
                   tmf.init(ks);
                   ks = KeyStore.getInstance(KEYSTORE_TYPE);
                   ks.load(null, null);
                   the_cert = (X509Certificate)cf.generateCertificate(new FileInputStream("key.txt"));
                   ks.setCertificateEntry("client_cert",the_cert);
                   kmf.init(ks, null);
                   SSLContext ctx = SSLContext.getInstance(SSL_PROTOCOL);
                   KeyManager[] km = kmf.getKeyManagers();
                   TrustManager[] tm = tmf.getTrustManagers();
                   ctx.init (km, tm, null);
                   HttpsURLConnection.setDefaultSSLSocketFactory(ctx.getSocketFactory());
    urlString = urlString.replaceAll(" ","%20");
    URL url = new URL(urlString);
    //HttpsURLConnection urlCon = (HttpsURLConnection)url.openConnection();
    HttpURLConnection urlCon = (HttpURLConnection)url.openConnection();
    //com.sun.net.ssl.HttpsURLConnection urlCon = (com.sun.net.ssl.HttpsURLConnection)urlCon;
    /*urlCon.setRequestProperty("Host", url.getHost());*/
    urlCon.setDoOutput(true);
    urlCon.setDoInput(true);
    urlCon.setRequestMethod("POST");
    urlCon.setUseCaches (false);
    urlCon.setAllowUserInteraction(true);
    urlCon.setInstanceFollowRedirects(true);
    urlCon.setRequestProperty ("Authorization", "Basic " + encoding);
    //Permission permision = urlCon.getPermission();
    //System.out.println("permission name:"+permision.getName());
    urlCon.connect();
    //messageReader = new BufferedReader(new InputStreamReader(urlCon.getInputStream()));
    //response = new StringBuffer();
    //String line;
    //while((line = messageReader.readLine()) != null){
    // response.append(line);
    // response.append("\n");
    catch (Exception e) {
    e.printStackTrace();
    throw e;
    return "testing";

    sorry for the junk data.. Need to post it again

Maybe you are looking for

  • Intel wireless iwl3945 does not work after kernel upgrade?

    My wireless ethernet will not longer connect to access points. I am on a Toshiba Tecra M5-S4332 running kernel 2.6.39.2-1 with linux-firmware 20110512-2 installed. This problem seemed to have started once I upgraded the kernel from 2.6.39.1-1, but I

  • Error in using JMSSend Communication agent

    hai all, If anybody has been using or knows about the JMS Send agent in ecxpert? I am trying to use the JMS Send feature in ecxpert. But i can't see any message been published successfully. There is no logs to see also, i don't know what is happening

  • Exception branch in a block without cancelling the process

    Hi all. I have an integration process with a Block where I process a multiline message interface. Inside the block, exception branch for controlling errors is used. When exception is thrown, the process of the pendant elements in the block is cancele

  • Powered boxes do not play in stereo

    I can't find the name of this computer (There are seceral numbers on the back but none of them is usable) but he is twee years old and it's a desctop computer. Problem: when I use my powered boxes, they pla in mono. This is awfull of course, so does

  • Can't locate original song files from iTunes

    I purchased songs from iTunes & cant locate original files on my computer/iPod.  Searched harddrive, recycle bin, etc.  When you click on song title in library, states cannot locate original files and asks me to locate.  Yet when I try to redownload