Same code, but difference result in Windows & Linux ??!!!

my code below:
String s1 = "&#27979;&#35797;Test";    // < ----- the s1's content include double bytes charset, e.g: Chinese
String s2 = null;
byte[] b = null;
try
b = s1.getBytes("iso-10646-ucs-2");
for (int i=0; i<b.length; i++)
System.out.print(b[i] + " ");
System.out.println();
s2 = new String(b, "iso-10646-ucs-2");
b = s2.getBytes();
for (int i=0; i<b.length; i++)
System.out.print(b[i] + " ");
System.out.println();
catch (UnsupportedEncodingException e)
e.printStackTrace();
}

if the String content is Englist is no problem.
but why? java is dependence on OS?Yes. When you do this:b = s2.getBytes();that converts the String s2 to bytes, using the system's default charset. And different environments have different default charsets, depending on how they are configured.
If you don't want different values, don't write code that uses default values that may vary from one system to the next.

Similar Messages

  • Same exact Code but different results

    I am trying to fill a Listbox in a single Dialog based program using names
    from a file. I started by using an example program from the MSDN - Modeless.
    A simple Dialog based program using a modeless dialog to add strings to a
    Listbox in the main dialog. I inserted into the sample program the following
    code, which works perfectly:
    #include <Fstream>
    BOOL CLeasesDlg:nInitDialog()
    char* names;
    CListBox* pList = (CListBox*) GetDlgItem(IDC_LIST);
    infile.open("Leases",ios::in, filebuf:penprot);
    while( (infile.getline(names,25,'\n')) != NULL)
    pList->AddString(names);
    infile.close();
    Sunce the sample program was just a stepping stone I created my own Dialog
    based program using the AppWizard. I inserted the above code. I now receive
    an "unhandled exception" error every time during the "getline" execution. I
    have been trying for the last several days to track down the problem but can
    not.
    Some of what I learned:
    First-chance exception in Leases.exe (MSVCIRTD.DLL): 0xC0000005: Access
    Violation.
    so I wrote code to establish access permissions:
    int test = 0;
    // Check for existence
    if( test = ((_access( "Leases", 0 )) != -1) )
    // Check for read permission
    if(test = ((_access( "Leases", 4 )) != -1) )
    I stepped thru both with no problem. The file exist and is readable but can
    not retreive the first name.
    In the disassembly window it stops on this line:
    strgetl.cpp --------------------------------------------------------------
    102A75CD 88 08 mov byte ptr [eax],cl
    I do not understand how the code can work in the sample program and not work
    in the one I created. I looked back at another program I wrote several years
    ago and I used the exact same code with no problem. I would think that my
    compiler was corrupted but it compiles the modeless sample program.
    I am totally baffled .... PLEASE ... PLEASE help!
    I would be greatly appreciative

    Hey Randy,
    This forum is reserved for Measurement Studio questions.  I recommend checking with Microsofts forums because the people there will have more experience doing what you are looking for. 
    Regards,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Micro SD crashes entire OS(Mac) but works perfectly on Windows/Linux

    Hello,
    I bought a Micro SD(class 10) card and an adapter that works perfectly(and extremely fast) on Windows/Linux but it doesn't matter the file system scheme that I use with, my Mac will ENTIRELY FREEZE while trying to read/write anything!.
    Tried different adapters and different filesystems(fat32, exfat, ntfs, HFS in all flavors, etc).
    Thanks in advance!

    Ok, no problem with the backup thing.
    But the apps? Will I have to reinstall them all?
    I´ve tryied deleteng the preferences file and restarting, but nothing happens. When I try to manually add an interface on the network preferences, there is no ethernet choice. In terminal, there is no ethernet interface when I call ifconfig, and I cannot ping to another computer.
    I´m verifying/repairing disk permissions right now.

  • Same code gives different results in Matlab Script in Labview and Matlab

    I am implemeting a Matlab code into a LabVIEW application using Matlab script. When I import the exactly same code to the Matlab Script in LabVIEW it gives a different result than it is in Matlab. This code is a simulation code including first kind bessel functions. Using LabVIEW 7.1 and Matlab R14 service pack 3.

    Labview 8.5
    Matlab R2009b
    Attached are the graphs produced by matlab script in labview and in matlab.
    The minimum of graph produced by matlab code is below 1 and that in labview is above 1.
    Thanks a lot for your reply.
    Sorry, I haven't quantified the "sometimes" yet. 
    Attachments:
    matlabsResult.jpg ‏29 KB
    LV.png ‏84 KB

  • Same code but different output on different cpu

    Hi to all,
    I realized a simple class to receive data from a tcp server.
    In the code I allocate a bytebuffer with dimension of x byte. I receive this byte from a server.
    the problem is: if I use a x86 processor class run correctly. If I use x86_64 processor a receive from the server a great value and then when the application try tu run ByteBuffer.allocate I receive a memory excedeed error.
    Why is there a different running mode if I change cpu?
    I would to attach code but in wich way I can? this forum has a limited number of words.

    I have problem at the line where is
    dati = ByteBuffer.allocate(tot_byte);
    I post you the code: sorry but it isn't optimized ....
    int numero_canali = canals.size();
            ByteBuffer packet5 = ByteBuffer.allocate(12);
            ByteBuffer packet2 = ByteBuffer.allocate(24 + 4 * numero_canali);
            packet2.putInt(0x7ABCDE0F);
            packet2.putInt(124);
            packet2.putInt(12 + 4 * numero_canali);
            packet2.putInt(0);
            for(int i = 0; i < numero_canali; i++)
                ArrayList appoggio = (ArrayList)canals.get(i);
                String s = String.valueOf(appoggio.get(3));
                int s1 = Integer.valueOf(s).intValue();
                packet2.putInt(s1);
            packet2.putInt(0);
            packet2.putInt(0);
            packet2.rewind();
            packet2.rewind();
            while(packet2.hasRemaining())
                try
                     out.write(packet2);
                catch(IOException ex)
                    ex.printStackTrace();
            do
                ByteBuffer dati = null;
                //packet.rewind();
                int total_byte;
                try
                    total_byte = in.read(packet5);
                    System.out.println ("Numero Byte letti : " + total_byte );
                catch(IOException ex)
                    ex.printStackTrace();
                packet5.rewind();
               //packet.reset();
                System.out.println((new StringBuilder()).append("Signature messaggio : ").append(Integer.toHexString(packet5.getInt())).toString());
                System.out.println((new StringBuilder()).append("Tipo Messaggio : ").append(packet5.getInt()).toString());
                int tot_byte = 0;
                tot_byte = packet5.getInt();
                //tot_byte=0;
                System.out.println("Lung mess : " + tot_byte);
                System.out.println((new StringBuilder()).append("Lunghezza del messaggio : ").append(tot_byte).toString());
                dati = ByteBuffer.allocate(tot_byte);
                dati.rewind();
                while(dati.hasRemaining())
                    try
                        in.read(dati);
                    catch(IOException ex)
                        ex.printStackTrace();
                dati.rewind();
                dati.rewind();
                byte b4 = dati.get();
                byte b3 = dati.get();
                byte b2 = dati.get();
                byte b1 = dati.get();
                long older_sequence_number = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Older Sequencial Number : ").append(older_sequence_number).toString());
                System.out.println((new StringBuilder()).append("Tipo pacchetto : ").append(dati.get()).toString());
                b4 = dati.get();
                b3 = dati.get();
                b2 = dati.get();
                b1 = dati.get();
                long seconds = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Secondi : ").append(seconds * 1000L).toString());
                Date prova = new Date(seconds * 1000L);
                System.out.println((new StringBuilder()).append("Data : ").append(prova.toString()).toString());
                long sub_second = ((long)dati.get() & 255L) << 8 | (long)dati.get() & 255L;
                System.out.println((new StringBuilder()).append("Sub second : ").append(sub_second).toString());
                b2 = dati.get();
                b1 = dati.get();
                long instrument = ((long)b1 & 255L) << 8 | (long)b2 & 255L;
                System.out.println((new StringBuilder()).append("Instrument ID : ").append(instrument).toString());
                ArrayList array_temp = new ArrayList(numero_canali);
                for(int s = 0; s < numero_canali; s++)
                    ArrayList appoggio = (ArrayList)canals.get(s);
                    boolean add = array_temp.add(appoggio.get(0));
                b4 = dati.get();
                b3 = dati.get();
                b2 = dati.get();
                b1 = dati.get();
                long sequence_number = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Sequece Number : ").append(sequence_number).toString());
                b2 = dati.get();
                b1 = dati.get();
                long payload = ((long)b1 & 255L) << 8 | (long)b2 & 255L;
                System.out.println((new StringBuilder()).append("Byte Payload : ").append(payload).toString());
                int posizione_id = array_temp.indexOf(Long.valueOf(instrument));
                System.out.println((new StringBuilder()).append("instrument \350 alla posizione : ").append(posizione_id).toString());
                ArrayList appoggio = (ArrayList)canals.get(posizione_id);
                Object set6 = appoggio.set(5, Long.valueOf(older_sequence_number));
                Object set5 = appoggio.set(6, Long.valueOf(seconds));
                Object set4 = appoggio.set(7, Long.valueOf(sequence_number));
                Object set3 = appoggio.set(8, Long.valueOf(payload));
                Object set2 = appoggio.set(9, prova.toString());
                Object set = canals.set(posizione_id, appoggio);
            } while(true);

  • Drawing images gives 2 different results with the same code.

    Im adding my code on here, and its sort of long but ill try to explain it. Most of it you can ignore.
    Anyway i'm making a tree menu with only 1 level of expansion. So you have a TreeMenu object, and this object has some Branch classes. These Branch classes have Leaf classes. That is all. On the menu there is also a little box where you can click to expand and collapse each branch. if a branch is expanded, all of its leaves are shown. if it is collapsed only the branch name is shown.
    So far what I've described above works, there is a small scale compilable working program, that is alright. Theres just a few bugs to fix.
    A little feature of the tree is if a branch or a leaf is selected (has been clicked on in the past) it has a blue background. This sort of works. The branch names seem to work alright, and some of the leaves. However other if you run the example i provided you can click on Leaf 1, and it will be ok, but if you click on Leaf 2 then there blue background is twice as big as it should be. But for the rest, it works ok.
    This is weird to me because the same code handles any of these same situations. So it seems that i get 2 diferent results with the same code. If anyone would like to help heres some stuff you should know:
    You can ignore Leaf class, i dont think theres any errors in there.
    You can ignore just about all of Branch class except the update() method.
    You can ignore all of TreeMenu class except the inner MouseListener class might be useful.
    You can ignore TreeTester. Just the JFrame tester class.
    to run the code:
    javac TreeMenu.java
    java TreeMenu
    http://cs.ucsb.edu/~jsterling/treemenu.zip
    thanks.

    You make a good point Stefan but unfortunately I already checked that.  I have even copied the mapping (right click copy) and pasted it from the working Mapping to the bad Map (Paste) to make sure the context values were all the same.
    I also opened all the queues and compared the values in each.  All values match exactly except for the result(out) queue.
    In both tests I am using the same IDOC XML file. 
    These are the only differences I see.
    1.  The IDOC is exactly the same as far as I can tell but they come from two different source SWCV.  SAP APPL 4.7 and Steelcase_Procurement (ECC 6.0). 
    2.  The working map uses a local UDF.  The bad map calls the UDF from a Function Group.  Is there a Java version difference between the two?
    A better sample of the result queues look like this:
    Correct Result:
    Thickness of Glass: 20
    Height: 10
    Width: 5
    Length: 18
    Thickness of Glass: 10
    Height: 15
    Width: 8
    Length: 14
    Bad Result:
    Thickness of Glass: 20
    <null>
    <null>
    <null>
    Width: 5
    <null>
    <null>
    <null>
    I took this chance to redesign my Variant Config output to separate the characteristics/values, but I'm still bothered that I was unable to determine what would cause the differing values.
    Any ideas?
    Thanks,
    Matt

  • Why differences in the way different machines handle the same code??

    OK, I've posted some other threads re some difficulties in getting the same code to function identically on, not only different platforms, but even on different machines running Windows!
    Here's another, and I would really appreciate an explanation:
    I have a tree control. Per the user's request, I made the right button function the same way it does on MS File Explorer: When they right click, the currently selected nodes are compared to the node they clicked over. If they clicked over a selected node, then the context menu for the nodes selected is displayed. If they clicked over a different node, then the selection is changed to the new node and the context menu displayed. If they right click over the tree control, but not a node in the tree, then the selection is cleared and no context menu is displayed.
    Works great on my machine.
    However, on some machines, no context menu is displayed, nor is the node selected... UNLESS THEY ALREADY HAVE A NODE SELECTED. I.e., if they have no nodes in the tree selected, they cannot display the context menu by right clicking on a node, nor does the selection change to the node they right click over. It only works if they already have something selected.
    My app is distributed as an executable jar file and I am distributing the JRE with it, so there are no class path issues or differences in the JDK. Basically, my problem can be paraphrased as: Why doesnt' Swing behave the same way on different machines...? At least why not the same on the eame machine.
    It's driving me nuts to think that I've resolved some UI glitch only to find out that, no, it's only fixed on some machines, not others.
    Thanks.

    Well, I normally develop on OSX and then deploy to Windows. But, this last build I have switched to Windows XP. The kinds of differences I am seeing are subtle: what triggers a repaint of the UI and now, it seems, what events are getting triggered by mouse clicks.
    My deployment is an executable jar file, therefore it uses the manifest in the jar, not any classpath variables. I deploy an entire JRE along with the app, and the bat file that launches the app ensures that is the JAVA_HOME I'm using.
    I can only guess that it's some underlying difference in versions of the platform and OS that causes this.
    Here's the entire code for this latest issue re the popups:
            private void maybeShowPopup(NodeInfoTree tree, MouseEvent e) {
                if (e.isPopupTrigger()) {
                    //  They clicked the platform dependent popup trigger...
                    int x = e.getX();
                    int y = e.getY();
                    TreePath[] selectedPaths = tree.getSelectionPaths();
                    if (selectedPaths == null) {
                        selectedPaths = new TreePath[0];
                    TreePath clickedPath = tree.getPathForLocation(x,y);
                    if (clickedPath == null) {
                        //  they right clicked, but not on a node, so clear the selection and return
                        tree.clearSelection();
                        return;
                    } else {
                        // They clicked on a path, so let's see if it is a selected
                        // node.  Search the selected array of paths, short circuiting
                        // out if it is found...
                        boolean foundInSelection = false;
                        for (int i=0; (!foundInSelection && (i < selectedPaths.length)); i++) {
                            foundInSelection = clickedPath.equals(selectedPaths);
    if (!foundInSelection) {
    // They right clicked elsewhere than the selection, so
    // reset the selection to the new path...
    tree.setSelectionPath(clickedPath);
    final TreePath menuPath;
    selectedPaths = tree.getSelectionPaths();
    if (selectedPaths == null) {
    return;
    } else {
    menuPath = selectedPaths[selectedPaths.length-1];
    // Since they did click on a node, now we need to determine
    // what popup menu should be displayed...
    tree.scrollPathToVisible(menuPath);
    NodeInfo ni = (NodeInfo) menuPath.getLastPathComponent();
    // If the last path component is null, then they don't have
    // anything selected, so we do nothing
    if (ni == null) return;
    // See if the Node is overriding our default popup menu...
    com.harcourt.applications.tgen.browser.nodes.NodeMenu nodeMenu = ni.getMenu();
    nodeMenu.activate(tree.getView(),ni);
    JPopupMenu popup = (JPopupMenu) nodeMenu;
    if (popup != null) {
    popup.show(e.getComponent(),
    e.getX(), e.getY());
    The nodeMenu.activate call is just used to check whether or not certain menu options need to be enabled or disabled before displaying the menu. My theory right now is that, on some of these machines (all windows), a right click of the mouse is not generating a mouse event unless they have already something selected. I don't think it's a focus issue, because if they left click to select a node, and then ctrl-left click to de-select it, the right button then no longer generates a popup menu. They must select a node, then right click. Maybe there's no mouse event generated, or maybe this line is failing on some machines?:
    TreePath clickedPath = tree.getPathForLocation(x,y);

  • TS1741 I am having difficulty connecting my Remote App on iPad to iTunes. It used to work fine, but with latest iTunes and latest Remote, I can't get it to work. iTunes should open a 'pop up' window to add 4 digit code, but nothing happens. Any clues plea

    Would appreciate in connecting Remote App on iPad to iTunes. It used to work find, before iTunes 11.0 - but now pop up window to input  4 digit code does not appear. Any ideas how to prompt window to open on iMac? Remote App works OK, but says that Home Sharing is not Turned On, although it is. Both devices are logged into my profile account.

    You no longer need the 4 digit code in iTunes 11.
    iTunes (10.0.1 or later)
    Open iTunes on your Mac or PC.
    iTunes 11 or newer: Turn on Home Sharing in iTunes by going to File > Home Sharing> Turn on Home Sharing.
    iTunes 10.7 or older: Turn on Home Sharing in iTunes by going to Advanced > Turn on Home Sharing.
    Connect iPhone, iPad or iPod touch to a Wi-Fi network that is connected to the local network that your Mac or PC is also connected to.
    Open the Remote app (software version 2.0 or later) on your mobile device.
    Turn on Home Sharing in the Remote Settings screen. Make sure to sign into the same Home Sharing account you used to sign in to from iTunes on your computer.
    Once Home sharing is enabled for both your computer and your mobile device, Remote app will be be able to view and control audio and video playback in your iTunes library.
    http://support.apple.com/kb/ht1947

  • Same code, different result

    I have been using Javascript to create popups in Creator using the onclick property of a button or hyperlink.
    Today any popups created fail with the message:
    HTTP Status 500 -
    type Exception report
    message description The server encountered an internal error () that prevented it from fulfilling this request.
    exception javax.servlet.ServletException: Cannot find FacesContext
    Strangely the popups created earlier still work OK.
    How can Creator cause code that works in older pages not work when cut and pasted into new pages?
    After all the Javascript is standard stuff widely used across the web.
    In the <head> tag I have
    <script Language="JavaScript1.2">
                    function popup(url, name, left, top, width, height)
                    settings=
                    "toolbar=no,location=no,directories=no,"+
                    "status=no,menubar=no,scrollbars=yes,"+
                    "left="+left+",top="+top+","+
                    "resizable=yes,width="+width+",height="+height;
                    MyNewWindow=window.open(url,name,settings);
                    MyNewWindow.focus();
                </script>          and in the link the code is
    <h:outputLink binding="#{yayw$yayw13Content.yw13hyperlink6}" id="yw13hyperlink6"
                    onclick="popup('AidPopup.jsp', 'WinKC6', 150, 250, 600, 200); return false;" styleClass="tabProps">
                    <h:outputText binding="#{yayw$yayw13Content.ywhyperlink6Text}" id="ywhyperlink6Text" styleClass="cmdLnk" value="#{c.w130}"/>
                </h:outputLink>where AidPopup.jsp is the jsp page tp pop up when called by the link.
    The calling page and the popup page are in the same folder.
    Thanks for any advice on this problem.
    John.

    It turns out the solution is that the full path to the popup file has to be given for the URL. So in the example above the code for the link should be
    <h:outputLink binding="#{exer$exer1Content.hyperlink1}" id="hyperlink1" onclick="popup('/attain/faces/exer/RefocusPop.jsp', 'WinRef', 150, 250, 600, 200); return false;">
       <h:outputText binding="#{exer$exer1Content.hyperlink1Text}" id="hyperlink1Text" value="#{es.ex1}"/>
    </h:outputLink>The project name is Attain and exer is a sub-directory containing the calling page and the RefocusPop.jsp.
    I'll leave it to someone at Sun to explain the mystery of why pages written up to a few days ago still work on the old code but new pages must use a full path for them to work.
    John.

  • Different Systems, same Configuration in ID, but different Result?!

    Hi guys,
    i´m working on a Idoc to File Scenario, which works in our development environment (DXI) but fails in our test environment (QXI)
    first of all some information about our system landscape.
    We are using 3 XI Systems for development (DXI), test (QXI) and production (PXI).
    For some reason we don´t have one central SLD, but 3 SLD (one for each XI System)
    So the Repository content could be transported via File, the configuration in ID is environment specific (not transported) and have to be maintained manually.
    As I sad above the scenario is Idoc to File, more exactly it is 1 Idoc to 2 files.
    The result files of one idoc are used to have the "same" file name pattern for example
    file 1 = file2_TIMESTAMP.idoc
    file 2 = file1_TIMESTAMP.eds
    The order of the files is important. file 1 should be created first, file 2 afterwards.
    in this pattern TIMESTAMP is the timestamp should be the same for both file, so I use the timestamp of the XI message of the idoc
    (=> StreamTransformationConstants.TIME_SENT)
    the content of the file differs. While file 2 contains one text line with some control information (static and some payload data), contains the file 1 the idoc xml, but with a
    different codepage (ISO-8859-1 instead of UTF-8)
    To get the wright content and filename, 2 java mappings are used, that are referenced in interface determination. furthermore the order of the files should be maintained, so that file 1 (idoc xml) should be created first, and file 2 (control information) afterwards
    (filename mapping is done via Dynamic configuration)
    As I sad at the beginning the whole scenario works fine for development environment, but fails for test.
    In test the 2 files are created with the correct filename, but the file content of the file 1 is wrong. It contains the same content then the file 2 (control information)
    when i have a look at the apap monitoring sxmb_moni the message content after java mapping is correct for both files.
    but in message monitoring (RWB) the file 1 has the same content as file 2, which is incorrect.
    Directory content of development and test are the same.
    why is the result different?
    anybody has an idea.
    This error drives me crazy
    Kind regards
    Jochen

    Hi Suddha,
    thanks for your help.
    obviously something like that must be the reason for that behaviour.
    I compared the audit logs of a succesful message (DXI) and a failed message (QXI)
    there was only one difference between this to messages.
    In the QXI there was a entry like "process the underlying message of mulit-message-ID xxxxxx"
    I have searched both the RWB and the integration server for thismsg-ID, but without success.
    I forgot one detail.
    There is one difference between development environment and test.
    In test and production we have two java nodes. In development we only have one single java node.
    Could this be of any influence on a scenario like that?
    Suddhasatta Guha wrote:
    Could this be a problem while retrieving the message from the Receive queue...............the application retrieving the wrong message before delivering it to the File Channel
    Since the IDoc message is splitted in the Interface Determination Step - is there any Parent Message ID to this individual messages?
    In RWB the messages from the Integration Engine have a reference and a parent msg id, but the adapter engine message don´t.
    In this point there is no difference between DXI and QXI.
    maybe somebody have another idea how to get more information about this error
    Kind regards
    Jochen

  • EVENT 36888, Schannel A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 43. The Windows SChannel error state is 252.

    I keep losing my network connection for a few seconds at a time.  Not  a big deal unless I just spent time filling in a form and have to redo it.
    Getting:
    A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 43. The Windows SChannel error state is 252. Using windows 8.  I just installed the new ARRIS
    TG862 provided by Comcast. 
    Any Ideas?
    Also get the following errors in my events:
    The name "WORKGROUP      :1d" could not be registered on the interface with IP address 10.0.0.2. The computer with the IP address 10.0.0.3 did not allow the name to be claimed by this computer.
    Realtek PCIe GBE Family Controller is disconnected from network.
    Any help is appreciated

    Hi,
    Critical Kernel-power event ID 41 is used appear after PC restarts or randomly restarts with error
    BugcheckCode listed or a cold reboot. Do you get BSOD and some dump files?
     Default location is %SystemRoot%\Minidump. You can upload it to skydrive, then paste link here.
    How to use Skydrive
    http://www.wikihow.com/Use-SkyDrive
    Kernel-PnP event ID 219: A Plug and Play device driver on your system is failing to load due to a device driver or device malfunction, you can unplug any external devices (except mouse and keyboard, but please keep the latest drivers), and
    check device status in device manager, please also keep the all latest driver update of your PC.
    And for error 36888, I found a similar thread, please refer to this link
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/4c5430f5-43f6-41b4-97d3-03cfb3efa70b/schannel-error-event-id-36888-is-there-a-way-to-identify-what-causes-schannel-to-log-error?forum=winserverDS
    Regards
    Yolanda
    TechNet Community Support

  • I have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me

    i have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me???

    If Join was on then your home wi-fi must be set to Non-Broadcast.  If you did not set this up (maybe your provider did) then you will need to find the Network Name they used, and any password they used.  The SSID is Security Set ID and to see more try http://en.wikipedia.org/wiki/SSID .  Basically it is the name used to identify your router/network.  A lot of times the installer will leave it set as LinkSys, or Broadcom or whatever the manufacturer set it as for default.  Your best bet is to get whoever installed it to walk you through how they set it up, giving you id's and passwords so you can get in.  HOWEVER, if you are not comfortable with this (if you set security wrong, etc.) you would be well ahead of the game to hire a local computer tech (networking) to get this working for you.  You can also contact the vendor of your router and get help (if it is still in warranty), or at least get copies of the manuals as pdf files.  Sorry I can't give you more help, I hope this gives you an idea where to go from here to find more.

  • How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    What do you mean by dynamically? When yo set up a 2D bar code field you specify which field name/value pairs you want to include, along with other parameters. But be aware that they won't work with Reader unless you Reader-enable the document with LiveCycle Reader Extensions and include the bar code usage right. It will work with Acrobat Standard/Pro.

  • I just purchased an IMac with lion and I tryed to install an old math program that is for winmac running systems. When I try to boot the cd it comes up with a notepad window with a bunch of weird symbols and codes but the program will not start up.

    I just purchase my first IMac with lion and I was trying to install a math program I bought 6 years ago. When I went to boot it off the disk while following the program instructions a window popped up with a note pad format with symbols and codes but the program would not download or open. How do I get this program to work? It is a mac compatible program by the way.

    Your Mac probably does not know with which application to open the file and is opening a file with a text editor that really needs to be opened by the application itself.  Try starting the application first, then use the File > open command to open the file.
    As varjak paw comments, there isn't a "winmac" so that's not telling us anything.
    Note that it is possible that software purchased 6 years ago may no longer run on your computer.  Once we know what it is we can help more.

  • I am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    i am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    download the 64bit installer,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for

  • Excise duty changes

    Dear gurus, What is the steps of process for change the excise duty from 14 % to 10 %. Regards R.Rajendran

  • Can PI listen to message on FTP server?

    Dear experts, We have an external system that places messages on our FTP server. Now those messages need to be processed within 5-10 seconds. Defining a job in R3 that does that will not work because the time interval of a few seconds is too difficul

  • Best Practices Web Services - Complex Data Types

    Can someone provide some best practices documentation or info that for customers using CR against web services? Speciffically any information on complex data types such as  String[] or Address. Thanks Ian S

  • Where will it end?

    Im using an iMac G5 1.6Ghz PowerPC with 256MB DDR SDRAM running Mac OSX version 10.3.9 I have used this mac for a few years now, but consider it still a reasonably modern and expensive computer. I use my iPod alot and had a iPod 30GB video, all was g

  • Missing Rich Content PDF  Acrobat 8.1.1

    Does any one know where I can download or install the Rich Content PDF job option? I am running windows XP SP2, and Acrobat 8.1.1 I looked in C:\Documents and Settings\All Users\Application Data\Adobe\Adobe PDF\Settings and C:\Documents and Settings\