Good results, but need to post on server

Would like to make some recently completed Captivate training available on the iPad, and used the new HTML5 Converter for a nice conversion that plays back well in a browser.  Need to get this online for testing and review, perhaps via html5 code into Dreamweaver?  Or is there a better way?  Maybe Edge?   I have eLearning Suite 2.5.
I've worked some in Dreamweaver previously, but have little familiarity with HTML5. Any suggestions would be much appreciated.

Do a malware check with a few malware scan programs.<br />
You need to use all programs because each detects different malware.<br />
Make sure that you update each program to get the latest version of the database before doing a scan.<br />
* http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
* http://www.superantispyware.com/ - SuperAntispyware
* http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
* http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
* http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

Similar Messages

  • Need to POST data from a desktop client to a server.

    Hello all, it's been awhile since I've posted here, so I hope everyone has been doing well.
    I have cross posted this here java - Need to POST data from a client application to my server - Stack Overflow but no answers, and since SO has been extremely slow for the questions I've been asking I am posting here.
    Here is the post:
    I know the title is probably a common question, but I am a bit confused on everything I'm trying to do, so I am trying to piece it together, and figured a common title would be better than a confusing one.
    I am basically developing a web application and one part of that is a file uploader. I am using Apache Commons File Upload via the Streaming API, and that all works fine, except I need to access the file I'm uploading, because that contains data to additional files to upload.  I.e., Read File A, get paths to images, upload images with File A to server and save on server.  The API can be found here http://commons.apache.org/proper/commons-fileupload/streaming.html
    I was told there is a security risk via the web and would be impossible via a browser, since the user needs to select all files to upload, i cannot tell the browser to upload additional files, so I am left with a client side option.
    I am confused if there is a special library I need, or as I have been seeing threads that talk about using the built in UrlConnection Class or http://hc.apache.org/
    I basically need to be able to read the file, which technically gives me a path to a Database on the user's system which I then read to get the additional images.  After I get all of that I then  need to post the data as a multipart form as that is what the FileUpload requires.
    form method="POST" enctype="multipart/form-data" action="fup.cgi">
      File to upload: <input type="file" name="upfile"><br/>
      Notes about the file: <input type="text" name="note"><br/>
      <br/>
      <input type="submit" value="Press"> to upload the file!
    </form>
    This is the example found in the Overview section of the Fileupload which can be accessed from the link above.
    There wouldn't be an issue if the users uploaded all of the data themselves, but since I have to do some of it automatically it causes some "concerns/issues."
    Basically these files are created and packaged from another application, so the images, and the db will always be in the same place, and that file that they are uploading is a file the other program creates, so everything will always be known, I just need to upload it, and then POST it as enctype="multipart/form-data" So that my servlet can read it and save it on my server.
    So I would appreciate it if anyone had any suggestions on where to begin my journey with this.  I have heard of a few applications like curl and wget that are used for this, but those seem to be more C based.  As mentioned earlier it seeems the httpcomponets from apache might work well, but I want to make sure.
    I appreciate all the help, thank you for your time all.

    It's not possible to read from a file without using classes from the core API*. You'll have to get clarification from your instructor as to which classes are and are not allowed.
    [http://java.sun.com/docs/books/tutorial/essential/io/]
    *Unless you write a bunch of JNI code to replicate what the java.io classes are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need to Post Components in Production Order in MB1A through BAPI as Planned Good Issue

    Hi ,
    I have created a Program to upload data s for MB1A through BDC , it works fine, but for huge data s it takes more time.  alternatively created one more Program which updates through BAPI Function Module  "BAPI_GOODSMVT_CREATE".  It works fine , but one issue noted, after posting through Function Module , components are posted as Unplanned Goods Issue.   I need to post the components as " Planned Goods Issue" instead of "Unplanned Goods Issue " . This can viewed through Tcode : C003
    Below are the  inputs passed for BAPI Function Moduel
    **&------Header Contents of bapi Upload-------------------&*
    header-pstng_date = sy-datum.                                              " Posting date
    header-doc_date    = sy-datum.                                             " Document Date
    header-header_txt  = '000001002280'.                                     " Header text
    header-pr_uname   = sy-uname.                                            " User Name
    header-ref_doc_no  = '000001002280'.                                    " Header Ref. Doc. No.
    CONCATENATE sy-uname sy-uzeit c_method INTO  header-ref_doc_no_long SEPARATED BY '-'.  " Refer  Text
    *Item Data
    wa_item-material   = '000000000010000800'.                             "Material
    wa_item-plant      = '3910'.                                              "Plant
    wa_item-stge_loc   = 'WIP'.                                            "Storage Location
    wa_item-move_type  = '261'.                                            "Movement Type
    wa_item-entry_qnt  = '1'.                                                  "Quantity
    wa_item-entry_uom  = 'PC'.                                              "Unit
    *wa_item-res_item  =  1.                                                  "Reservation Item
    *wa_item-reserv_no =                                                      " Reservation Number
    wa_item-batch      = '0000011027'.                                    "Batch No
    *wa_item-mvt_ind   = 'F'.                                                  "Movement Indicator
    *wa_item-stck_type = 'F'.                                                 "Stock Type
    wa_item-orderid    = '000001002260'.                                 "Order ID
    wa_item-prod_date  = SY-DATUM.
    *wa_item-GL_Account = '610000'.                                     "GL Account
    *TRANSLATE wa_item-batch TO UPPER CASE.
    *APPEND wa_item TO it_item.
    c_code = '03'.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    goodsmvt_header       = header
    goodsmvt_code         = c_code
    TABLES
    goodsmvt_item         = it_item
    goodsmvt_serialnumber = it_sno
    return                = return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
          wait = 'X'.
        commit work and wait.
    Even i tried to pass "Movement Indicator , GL Account etc" , Still not able to fix the issue. Can anyone suggest how to post the Production Order components as "Planned Goods Issue".  I am not sure any other values to be password.
    BR,
    Murali

    I have made something like your :
    * Alimtentation de la BAPI de mouvement de stock MM.
    move : sy-datum        to ls_header-pstng_date ,
            sy-datum        to ls_header-doc_date ,
    * Indique le code mouvement
            '03'            to lw_code.      " 03 normalement, mais je veux que ca plante
    loop at lt_ltap
          into ls_ltap.
       move : ls_ltap-matnr   to ls_item-material ,
              ls_ltap-werks   to ls_item-plant ,
              ls_ltap-lgort   to ls_item-stge_loc ,
              '261'           to ls_item-move_type ,
              ls_ltap-vsolm   to ls_item-entry_qnt ,
              ls_ltap-meins   to ls_item-entry_uom ,
              i_ltak_vb-benum to ls_item-orderid ,
              i_ltak_vb-rsnum to ls_item-reserv_no ,
              ls_ltap-rspos   to ls_item-res_item ,
              ls_ltap-rsart   to ls_item-res_type.
       append ls_item to lt_item.
       clear  ls_item.
    endloop.
    I have to put the reservation number to have it works.
    Fred

  • Different GL account Needed in Post Goods Issue

    Dear All,
    in OBYC-GBB I have congifured for Post good issue. i need to assign different another GL account for inter plant process . how to do that ?
    example when i am doing normal post goods Issue accounting document generating like below.
    xxxxx       Finish Product       credit
    yyyyy       Cost std sales       debit.
    for interplant Sales i need.
    xxxxx       Finish Product       credit
    zzzzz       Cost std sales       debit.
    instead of yyyyy i need zzzzz.
    waiting for your valuable answer..
    Thank you.
    Best Regards,
    KSK

    thanks for the quick action.
    Valuation is Plant Level
    Best Regards,
    KSK

  • Really need help - images showing up in dw and preview in browser but not once uploaded to server

    As the title says really, I made a site for my father and all
    was ok. I made some alterations to the site, some extra pages and
    images etc. The pages come up fine its just the images, i see them
    in dw and when I hit F12 to preview in a browser but once i sync'd
    the site and viewed the site online none of the new images have
    been uploaded.
    Any help would be hugely appreciated as im very new to dw
    only used is a few times so its probably a very silly but simple
    error ive made :)
    I know the site isnt great and ive probably done some strange
    things lol but im learning and il get there soon enough!
    thank you in advance

    >made a site... sure you'l be hearing from me again very
    soon
    Hint for the future... nobody here can read minds or see your
    computer screen through the 'net
    You need to post the site link so those who wish, may take a
    look at your page

  • Migrate Active Directory 2008 to 2012 but need to keep the same ip address and server name

    Hi,
    Current setup is 2 DCs in one site running 2008 R2 AD.
    We are planning to migrate from 2008 R2 to 2012 R2 but need to keep the same ip address and server name. I have came up two plans to do this and hope someone can tell me which one would be the best approach. What is the pros
    and cons in Plan A and B or may be plan C if there is a better one?
    First, I was planning to do plan A but just had a second thought of Plan B.  My concern in Plan A is about changing the server name when the new 2012 R2 already running as DC.  Plan B would be changing all the old server
    name and ip before they become member sever and DC. 
    Any information and suggestion would be very appreciated.
    Plan A
    Run adprep /forestprep on 2008 R2 DC
    Build a new 2012 R2 server and promote it as 3rd DCs in current Domain
    Transfer FSMO from 2008 R2 to 2012 R2
    Run Repadmin /syncall to force replication
    Rename the demoted 2008 R2 DC to something else
    Change the demoted 2008 R2 ip address to something else
    Restart the demoted 2008 R2 server to take effect
    Now, run Netdom computername command to change the new 2012 R2 server name to the old 2008 R2 DC server name
    Change the new 2012 R2 DC's ip to old 2008 R2 DC's ip
    Run ipconfig /flushdns
    Run ipconfig /registerdns
    DCDIAG to see any error
    Plan B
    Build 2 new 2012 R2 standalone servers
    In 2008 R2 ServerA transfer FSMO to 2008 R2 ServerB
    Demote 2008 R2 ServerA to become member server
    Rename 2008 R2 ServerA to something else and change the ip address to something else and shut it down
    Now, rename one of the new 2012 R2 standalone server to the old demoted 2008 R2 ServerA name
    Change the new 2012 R2 standalone server ip to the old demoted 2008 R2 ServerA's ip address
    Add the new 2012 R2 standalone server (now with the old 2008 R2 ServerA name and ip) to become member server
    Run adprep /forestprep on the 2008 R2 ServerB
    Promote the new 2012 R2 (now with the old 2008 R2 ServerA name and ip) as DC
    Transfer 2008 R2 ServerB FSMO to the new 2012 R2 DC (now with the old 2008 R2 ServerA name and ip)
    Demote 2008 R2 ServerB as member server
    Rename 2008 R2 ServerB to something else and change the ip address to something else and shut it down
    Now, rename the 2nd new 2012 R2 standalone server to the old demoted 2008 R2 ServerB name
    Change the new 2012 R2 standalone server ip to the old demoted 2008 R2 SeverB 's ip address
    Add the 2nd new 2012 R2 standalone server to become member server
    Promote it as DC
    Run DCDIAG to check error
    Thanks.

    Hi,
    Renaming a Domain Controller is a risky operation which may lead to issues, therefore, I would suggest you go with the Plan B, rename the server before it becomes DC.
    Here is a blog below which could be helpful to you:
    Remove an Old DC and Introduce a New DC with the Same Name and IP Address
    http://blogs.msmvps.com/acefekay/2010/10/09/remove-an-old-dc-and-introduce-a-new-dc-with-the-same-name-and-ip-address/
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • I am trying to update my itunes to the latest version, but it says the itunes server could not be updated and i need to connect to the internet when I amlready am connected

    I am trying to update my itunes to the latest version, but it says the itunes server could not be updated and i need to connect to the internet when I amlready am connected. How do I get the latest version of itunes so i can sync my iphone with itunes without losing all my songs?

    We were able to fix our machine!  I just could not make sense of the error message, so we were trying non-Microsoft, non-Apple solutions. 
    Our Solution:  Install MalWareBytes, and run a Quick Scan.
    Even thought both Microsoft anti-virus and Defender were running on our Windows 8 machine, MalWareBytes found about 100 problems.  As I looked over the types of problem and locations, I found several that referenced the exact directory referenced in this message.  The machine had to be restarted for MalWareBytes to complete the cleaning, but iTunes installed afterwards with no problems.
    Thank you MalWareBytes!

  • I'm trying to print a pdf I created and posted on my website, it looks good online but is missing data when printed, help.

    I'm trying to print a poster I created and posted on my website, it was created in power point, saved as pdf, and uploaded using wordpress. It looks good online but is missing data when printed. It contains almost all the information except for about 6 lines, which happen to be important. Any thought are appreciated.

    No its weird, everything was the same. I sort of resolved it, since he can view the PDF fine on his comupter but also wanted to print it, I just exported all the slides as JPEGS and made a new InDesign book with those on the pages and exported that as a PDF. Seemed to work for him, I just don't know what happened!

  • Oh no i need to install tiger server but i lost the install disks.

    Oh no i need to install tiger server but i lost the install disks. I also could use Leopard server on another mac.

    Yikes!... they sure want a lt for it...
    http://www.ebay.com/sch/i.html?_nkw=mac+osx+tiger+server
    http://www.ebay.com/sch/sis.html?_nkw=Apple+Mac+OS+X+Leopard+Server+10+5+4+10+Cl ient+MB606Z+A

  • ITunes could not connect to this iPhone because an unknown error occurred (0xE800001). I'm directly connected to the my Laptop USB 3.0 so no USB problem 1 time I upgrade ios 4.1 (8B117) because of this problem but still haven't good result

    iTunes could not connect to this iPhone because an unknown error occurred (0xE800001).
    I’m directly connected to the my Laptop USB 3.0 so no USB problem 1 time I upgrade ios 4.1 (8B117) because of this problem but still haven’t good result  
    anyone please halp me As soon as possible

  • In Hongkong. I want to buy new iMac, But need to sell old one first. Where is good for sell??

    Please help me.
    Please give me a suggestion.
    I want to buy new iMac, but need to sell old one.
    About following the info.
    How much can sell and where is good for sell?
    Processor  2.93 GHz Intel Core i7
    Total Number of Cores:          4
    Processor Interconnect Speed: 4.8 GT/s
    Memory  8 GB 1333 MHz DDR3
    Graphics  ATI Radeon HD 5750 1024 MB
    Software  OS X 10.8.3 (12D78)
    1TB harddisk
    Warranty to 02/Aug/2013
    Thank you for your help.

    When you sell your iMac, please remember that if you bought Mountain Lion upgrade at the app store, the license is not transferable and you need to erase the drive and reinstall the original system (which was most likely Snow Leopard?). If you don't do that, the buyer can never reinstall Mountain Lion because the license is tied to your Apple ID forever.

  • Need to communicate c server on linux & java client on windows

    Hi!! I am new to socket programing in both C and Java.
    From let I downloaded some client server example for c and java and tried that to link !! (I allways learn this way , and I need to do that little urget )
    though cient server in linux is working perfectly fine and same for java. But problem is when I tried to communicate C server on linux and java client on windows, I end up with getting some junk characters. Though they are connected successfully.
    Here goes code for java client:
    package whatever;
    import java.io.*;
    import java.net.*;
    public class Requester{
         Socket requestSocket;
         ObjectOutputStream out;
         ObjectInputStream in;
         String message;
         Requester(){}
         void run()
              try{
                   //1. creating a socket to connect to the server
                   requestSocket = new Socket("192.168.72.128", 2006);
                   System.out.println("Connected to localhost in port 2004");
                   //2. get Input and Output streams
                   out = new ObjectOutputStream(requestSocket.getOutputStream());
                   out.flush();
                   in = new ObjectInputStream(requestSocket.getInputStream());
                   System.out.println("above do");
                   //3: Communicating with the server
                   do{
                        try{
                             System.out.println("in do");
                             //message = (String)in.readObject();
                             System.out.println("in try");
                             //System.out.println("server>" + message);
                             System.out.println("server>" + "message");
                             sendMessage("Hi my server");
                             message = "bye";
                             sendMessage(message);
                             System.out.println("try completed");
                        catch(Exception e){
                             e.printStackTrace();
                   }while(!message.equals("bye"));
              catch(UnknownHostException unknownHost){
                   System.err.println("You are trying to connect to an unknown host!");
              catch(IOException ioException){
                   ioException.printStackTrace();
              finally{
                   //4: Closing connection
                   try{
                        in.close();
                        out.close();
                        requestSocket.close();
                   catch(IOException ioException){
                        ioException.printStackTrace();
         void sendMessage(String msg)
              try{
                   String stringToConvert= "hello world";
                   byte[] theByteArray = stringToConvert.getBytes();
                      System.out.println(theByteArray.length);
                   out.writeObject(theByteArray);
                   out.flush();
                   System.out.println("client>" + msg);
              catch(IOException ioException){
                   ioException.printStackTrace();
              catch(Exception ex){
                   ex.printStackTrace();
         public static void main(String args[])
              Requester client = new Requester();
              client.run();
    And for C server
    / server
        #include <stdio.h>
            #include <sys/socket.h>
            #include <arpa/inet.h>
            #include <stdlib.h>
            #include <string.h>
            #include <unistd.h>
            #include <netinet/in.h>
            #define MAXPENDING 5    /* Max connection requests */
            #define BUFFSIZE 32
            void Die(char *mess) { perror(mess); exit(1); }
        void HandleClient(int sock) {
                char buffer[BUFFSIZE];
                int received = -1;
                /* Receive message */
                if ((received = recv(sock, buffer, BUFFSIZE, 0)) < 0) {
                    Die("Failed to receive initial bytes from client");
                /* Send bytes and check for more incoming data in loop */
                while (received > 0) {
                /* Send back received data */
                    if (send(sock, buffer, received, 0) != received) {
                        Die("Failed to send bytes to client");
    //            fprintf("%s",buffer);
                fprintf(stdout, "message Recieved: %s\n", buffer);
                    //Die("was not able to echo socket message");               
                /* Check for more data */
                    if ((received = recv(sock, buffer, BUFFSIZE, 0)) < 0) {
                        Die("Failed to receive additional bytes from client");
                close(sock);
        //     A TCP ECHO SERVER
        int main(int argc, char *argv[]) {
                int serversock, clientsock;
                    struct sockaddr_in echoserver, echoclient;
                    if (argc != 2) {
                      fprintf(stderr, "USAGE: echoserver <port>\n");
                    exit(1);
                /* Create the TCP socket */
                    if ((serversock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) {
                      Die("Failed to create socket");
                /* Construct the server sockaddr_in structure */
                    memset(&echoserver, 0, sizeof(echoserver));      /* Clear struct */
                    echoserver.sin_family = AF_INET;                  /* Internet/IP */
                    echoserver.sin_addr.s_addr = htonl(INADDR_ANY);  /* Incoming addr */
                    echoserver.sin_port = htons(atoi(argv[1]));      /* server port */
        // A TCP ECHO SERVER ENDS
        // A TCP ECHO SERVER BINDING AND LISTNING
      /* Bind the server socket */
                  if (bind(serversock, (struct sockaddr *) &echoserver, sizeof(echoserver)) < 0) {
                        Die("Failed to bind the server socket");
              /* Listen on the server socket */
                  if (listen(serversock, MAXPENDING) < 0) {
                  Die("Failed to listen on server socket");
        // A TCP ECHO SERVER BINDING AND LISTNING
        // SOCKET FACTORY
    /* Run until cancelled */
                while (1) {
                        unsigned int clientlen = sizeof(echoclient);
                          /* Wait for client connection */
                        if ((clientsock =
                          accept(serversock, (struct sockaddr *) &echoclient, &clientlen)) < 0) {
                            Die("Failed to accept client connection");
                          fprintf(stdout, "Client connected: %s\n", inet_ntoa(echoclient.sin_addr));
                          HandleClient(clientsock);
        // SOCKET FACTORY ENDSI know that it is not C forum but I found no better place to post it
    Thanks

    kajbj wrote:
    ManMohanVyas wrote:
    hii!! just trying to make it a little more explinatory
    1) what I am trying to accomplish by the above code is: - just need to echo/print from the Server , message send by the Client. I know code is not that good but should be able to perform this basic operation( according to me ).You are wrong. I told you that it won't work as long as you are using ObjectOutputStream and ObjectInputStream. You shouldn't write objects.
    2) Message sent by the client is "hello world"(hard coded).No, it's not. You are writing a serialized byte array.
    3) what I am getting at the client end is "*message recieved: ur*" (before that It shows the Ip of client machine)
    It should print "hello world ".See above.
    You are having a problem, and I have told you what the problem is.hey I dont know what went wrong but . I posted all this just next to my first post ...before you posted !!
    And hard coded byte array includes "hello world"...may be I am not able to explain properly.

  • PE 12 Video Quality - does it have to be so difficult to get good results

    I downloaded PE11 trial before PE12 was released, which has since expired, but I have been monitoring this forum to see how PE12 is doing.  I am also trying other editors.
    A common problem theme I see here for PE is the video quality.  With auto settings, so many people are posting that the quality is terrible.  There are suggestions on how to improve quality, but they seem to be very intrusive and time consuming, using other apps to 'prepare' media before bringing into PE.  This add lots of time to ones workflow, especially when trying to simply import some assets, and burn a DVD or create a file.
    It just seems to me that it shouldn't have to be that hard.  Many other editors can look into properties of the imported assets and render with fine quality.  Why can't PE be that easy...or am I expecting too much?

    jmklein
    Thank you for taking the time to expand on your original comments.
    No two situations are alike. And, as I always write, problems with the same symptoms can (often do) have different causes.
    I think that you need to zero in on your specific computer environment and your installation of Premiere Elements in order to make some headway into finding the reason for what you are seeing working in your Premiere Elements in your specific computer environment. Besides settings and the like, there are expectations that may not be consistent with the format resolution and the size of the viewer screen.
    You did not answer my question about your target format. But, from what you wrote, I am assuming that you are addressing yourself to DVD-VIDEO on DVD disc and not AVCHD on DVD or Blu-ray disc format on Blu-ray disc. I get good results with any of the three with Premiere Elements in my Windows computer environment.
    But, after weigning all factors, you feel that you want to be heard by Adobe, then I would suggest that you contact Adobe directly or through the Adobe Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    I do not work for Adobe and am not affiliated with it in any way; consequently, my comments are non promotional and are based on many years of working hands on with the versions on my computer at home and helping others with this type of problem.
    Wishing you success in whatever your decision is on video editing software. If Windows Live Movie Maker works for you, then go with that to as far as its feature set can take you.
    ATR

  • Please make this a good experiance for my first post on any board.  READ ME

    Hi all. Well first off, let me start by saying that my whole life I've owned PC's. And I'm not hacker Elliet. But I've gotten to know them pretty well. All the way from Windows 3.1 that came out a long time ago (more than 10 years ago)
    So after a while of hearing about MAC's I decided to start small and get an iPod (since they are so popular here in NYC) and see what apple was about. Well I really saw that Apple had a great product and started asking about their computers. And did plenty of research. And before the new Intel Macs came out, I was going to get a powerbook. But I had a feeling a new laptop was coming out and waited a lil while and sure enough. The Macbook Pro came out. So I went out and did all my research (as to this being the first real purchase of a Apple product and knew about the possible implications of a new first gen Intel chip in a apple product litterally making history) I knew I might become a new beta tester.
    So I started looking on these boards and did 2 weeks worth of hard research to see if the Mac Book Pro (MBP) was for me. And after all the problems i saw (ex: The whine, Right speaker distortion, heat coming from it, white line at bottom of screen, etc) I never saw or read anything about AOL connectivity problems. And I know, I know... alot of you are probably going to gripe and complain about AOL sucking and yada yada yada, but please. Cut me some slack. I actually like AOL. I got on it back in 92 when it came out, and really enjoyed it. And have been on it since. I like chatting on there, and so forth. And I hope you help with my problem instead of telling me to go get "a real ISP" I do have a real ISP, but I like my AOL too.
    So now to my problem....
    I have a Sony Viao 1.8ghz PC with 512 ram, 80 gig hard drive, 10/100 ethernet port. Connected to a Belkin Router (more info below on specs of router) connected to Opt Online Broadband Cable internet with VoIP. I use my macbook pro on the wireless network at my home.
    I got a mac book pro 1.83 ghz running 512 ram on Tiger OSX 10.4.6 I thought that I would wait till a connectivity patch (which I thought would have been 10.4.6) fix the airport problems came out till I posted something. But now that I've tried everything, I'm hoping you open this thread and help me and possibly someone else out there as well. I just d/l'd and installed the 10.4.6 update last night and it did'nt help. So here's more info on my specs. I have a belkin router wireless G 2.4 ghz 54mbs router and I have configured the router with it's firewall, wap2 encryption (as it's the only selection the router has that is available that matches what airport comes with in encryption) I hid my network, and have tried to upgrade the firmware on the router.
    Now Here's the real problem. I can connect to AOL on my MBP when I connect the actual ethernet cable to the MBP's Ethernet port (after I have let the cable modem do a hard reset to configure itself to a mac) I can connect to AOL. But when I disconnect the cable and return it to it's normal config, I can't connect to AOL. I can connect to the internet via safari, and firefox, and even AOL's IM on iChat. I can use Itunes all kinds of things. I can even play warcraft 3 wirelessly on battlenet. But connecting to AOL is a pain in the @$$. It's the only proggy I have that won't allow it to connect. I keep getting the error message "Your AOL connection ended because the AOL host was unable to start a new session. Please try to sign on again." Of course All i see for a while is the spinning black and white circle. And it goes through step 1 and 2, goes straight to 6. Then it goes blank, and BAM! That message pops up. And what's so frustrating is that I've tried every possible configuration on AOL, my router and even system preferences, for it to let connect. I even went into system preferences on the mac and went down the the Internet & Network "Sharing" icon and tried 100 possible combinations on that in the services tab, and firewall tab. I've turned them on, off, tried to make exceptions ETC. And no matter how much I play with the personal file sharing and windows sharing advanced settings and sigh every possible combination to make AOL connect via wirelessly. And nothing. I then even tried to fix the connection under AOL in setup. I've gone through and selected TCP Script, Airport Script. Cable Script, And practically every script I can think of. And nothing. I even went on to AOL and downloaded thier alleged fix to wireless accessing AOL. And nothing. I've been searching all over google, AOL's website, and all over these discussion boards and no mention of anyone even having the same problem. But please, someone out there with their infinit knowledge of how Macs run and having more experience than me, Please make this a good experiance for my first post on any board anywhere reguarding a mac. A MBP at that too.
    An update to this, But amazingly enough, I actually got it to connect to AOL wirelessly for the first time yest. But I have no Idea how i did it. I tried for 3 hours to reproduce it and no luck. I was accessing my router at it's website config screen and somehow I clicked on connect to AOL and while it was trying to connect to it, i reset the router and BAM, it connected to AOL. And I was in shock. I thought I solved it. Somewhere while it was reseting the router it connected and stayed connected to AOL till I signed off and tried to sign back on to see if I could now connect, and guess what. The same dumb message keeps popping up "Your AOL connection ended because the AOL host was unable to start a new session. Please try to sign on again." And all I did was sign off to test it, thinking I had fixed the problem. I tried for 3 hours like I stated above, and BAM got it connected to AOL wirelessly again (somehow while the router was resetting). And thinking I fixed it, or figured out the trick to getting it to work, signed off... I kissed aol goodbye again. And have been unable to reproduce the "glitch". SIGH Can someone out there please help me?
    I think I've made this message as detailed as possible, but please, can someone give me some constructive criticism on how to fix my AOL wireless connectivity problems. Do you know if it's my router? My MBP? AOL software? BTW, I got AOL software version 10.3.7 (Rev 4136.310 US) The latest version I D/L'ed from the AOL website. Anyone know If I should turn on or off some things such as personal fire sharing on, or firewall off or on? ANYTHING. Please. I've put alot of time into writing this post and making it as detailed as possible. And been having this problem for the past 3 weeks that I've had my MBP, and have waited long enough to use my AOL. If you need any further information or suggestions on making AOL work, please let me know. Thank you for taking the time to read all of this, and I really appreciate all of you in the time you take in responding back in trying to help me. I'll be monitoring this post almost hourly. So I hope someone out there can help. Thanks so much again. And help me make this transition to Mac a pleasant one knowing that there is a mac community out there willing to help a new mac client. Again, Many thanks
    In Heath and Wealth,
    Bruce
    Mac Book Pro 1.83 GHZ 512 Ram   Mac OS X (10.4.5)  

    I FIXED IT!
    FYI for the rest of you that might be having the same problem. DON'T USE A BELKIN ROUTER WITH AOL ON A MBP!!!!! It ***** wirelessly. or even hard connected, it won't connect. I went to best buy today, and got a refund on the belkin. I then went to J&R and got a D-Link router. And now it works perfect. I can now chat on AOL yet again, and I tried all the other web browsers I have and messengers, and warcraft 3 online via battlenet. And it works great. I want to give you guys a special thanks for taking time out to answer back to my post. FYI! Belkin wireless G routers do not connect you to AOL wirelessly on MBP's. No matter how much you mess around on them. I highly recommend a D-Link Router. They are easy to set up as long as you READ ( AND I MEAN IT!!!) read the instructions before you set anything up on it. Use the CD that it comes with, and you'll be good to go. Set it up and it works great Almost no dead zones in the house, and now I can use the MBP with all it's cababilities. Thanks people. I really appreciate it.
    P.S. I called belkin last night when i decided to get a refund on my router for today and when i talked to the tech, after puersuading him to tell me the truth. And stop BS'ing me, he broke down and admited that AOL does not work wirelessly on MBP's. So to make a long story short this time, There you go. And one last note, I'm very happy now with my d-link router. I honestly thought it would suck. Not being a brand name router or anything. But amazingly, it works like a brand name item! Again, many thanks all.
    Bruce

  • Restrict goods issue if stock on posting date is zero

    Requirement:
    Current Inventory period : July 2011
    Stock of a material from 01.07.2011 to 30.07.2011 is zero(in MB5B report)
    I upload stock of material  or GRN occur on 31.07.2011. Say Quantity u2013 100
    Now stock as on 31.07.2011 is 100 in MB5B
    Still, Stock of a material from 01.07.2011 to 30.07.2011 is zero(in MB5B)
    Now, If I do goods issue of a material quantity 100 on 15.07.2011. System allows goods issue. though opening and closing stock as on 15.07.2011 is zero.
    After goods issue transaction if I check stock of material on any date between 16.07.2011 to 30.07.2011 , The opening stock and closing stock shows negative.
    I want to restrict goods issue if stock on posting date is zero or less then stock available on posting date.
    Please suggest

    Hi,
    This is not the way SAP is designed. As the previous speakers wrote (and as you noticed yourself), SAP maintains stock figures in the database per month rather than per day. MB5B makes complex calculations in order to find out how much stock you had on a specific date - as you probably noticed on the response time. Performing such calculations every time you do a GI would be unfeasibly heavy task for the system - remember there are organisations that perform hundreds of inventory movements a minute!
    An alternative solution I suppose would be to maintain the daily stock figures in the database. This would make the finding of the stock figure very quick, but on the other hand, the maintenance of such table would be unfeasible - if you post today a GI on say July 1st, you would need to calculate 36 stock figures and update 36 database records!
    Hope this explains the technical issue.
    BR
    Raf

Maybe you are looking for

  • Ipod sometimes not playing songs..

    my ipod lately has been not playing certain songs. it will skip through the album until it finds one it wants to play i guess is the best way to describe it. it doesnt happen to the same albums every time. when i reset my ipod (select+menu) it someti

  • Changes in Netprice(KOMP-NETWR) While Creation Sales Order(VA01)

    Hi expert , My issues while creating sales order(Va01) is : i have added two conditions types namely YVAT and YNBT in Condition , while calculating netprice (NETWR) its picking both values for YVAT and YNBT , i want only netprice excluding YVAT and Y

  • CANNOT GET ISYNC TO INSTALL PALM CONDUIT? 10.4, G4, TREO PALM 4.2

    With all of these combinations: I get the PALM DESKTOP to sync with the TREO GREAT! But I cannot find or get the isync 2.0 to create a PALM CONDUIT so I can use iCAL. DOES ANYONE KNOW HOW TO DOWNLOAD OR INSTALL THIS CONDUIT? WHEN YOU CHOOSE "ENABLE P

  • Cannot trim or edit a movie created with a Sony Cybershot DSC-T200 camera?

    Hi there people. I've created some mpeg movies using my Sony Cybershot DSC-T200 then copied them onto my Imac. I want to trim the start and end of the movie which i know is possible within Quicktime as i've done it with other video formats from other

  • How can I most easily create this in illustrator?

    I need to create a nice even illustration of this image, which is the floorplan of a college dorm. We are planning to turn it into a file that we can add names of the residents to and keep track of notes about them (things like their hometown, major,