Unable to call webportal through internet - but works in intranet

I am working on Collaborate planning in APO (SCM), I enabled all the required services using SICF and published services.
Portal works correctly in Intranet (with in our network), But doesnot work in Internet, link/url doesn't not bring up log on screen and get error no page found.
We are on SCM5.0 (Netwaver 7.0) and using integrated ITS.
What other settings required to access through internet?
Thanks in advance,
Niranjan
Edited by: Niranjan on Jan 4, 2010 5:15 PM

Hi,
Maybe it can be a security problem. Do you have your firewall/proxy well defined?
Can you access to server from Internet (for example, using ping command)?
From SE80 transaction, Utilities --> Options --> ITS server, verify your configuration (HTTP/HTTPS, ports, ...).
Hope this helps,
Iván.

Similar Messages

  • Error calling DLL in LabVIEW, but works in VC

    I compiled a DLL from Matlab, and then compiled a wrapper DLL in VC++. I tested the wrapper DLL in VC++, and it works fine, generating the correct output as in Matlab. 
    But when I call the wrapper DLL in LabVIEW, the first thing I noticed was that it only ran once. The second time I ran the VI, it returns an error. And the output is always a single number instead of an array when it runs. 
    I followed the examples how to create a wrapper DLL for Matlab compiled code. One of the examples said three functions Initialize, run and terminate should be implemented so that the DLL function can run continuously. I did all those, but it still does not work. 
    Here is the test code in C++. I explicitely loaded the DLL and ran the functions. It worked fine. Why the VI in LabVIEW does not do the same thing?
    // contourWrapper3.cpp : Defines the entry point for the console application.
    #include "stdafx.h"
    #include <Windows.h>
    #include <iostream>
    typedef int (*InitFunc)();
    typedef void (*TerminateFunc)();
    typedef void (*contourFunc)(double*,double*,int,int,double);
    int _tmain(int argc, _TCHAR* argv[])
    InitFunc _InitFunc;
    TerminateFunc _TerminateFunc;
    contourFunc _contour;
    HINSTANCE hInstLibrary = LoadLibrary("contourcWrapper.dll");
    if(hInstLibrary)
    _InitFunc=(InitFunc)GetProcAddress(hInstLibrary,"c​ontourcInit");
    _TerminateFunc=(TerminateFunc)GetProcAddress(hInst​Library,"contourcTerminate");
    _contour=(contourFunc)GetProcAddress(hInstLibrary,​"contourcGenerate");
    if(_InitFunc)
    _InitFunc();
    if(_contour)
    double image2DArray[] = {1,2,6,4,6,8,0,5,1,3,5,4,7,8,8,9,10,0};
    int width = 3;
    int height = 6;
    double c[sizeof image2DArray] = {0};
    _contour(c, image2DArray, width, height, 0.6);
    for (int i=0; i<width*height; ++i)
    std::cout << c[i] << std::endl;
    _TerminateFunc();
    else
    std::cerr << "Could not initialize libcontour properly."
    << std::endl;
    return 0;
     This is the output window of the above C tester code. It displays the correct output of array. 
    And this is the VI that does not work. 
    In the attached files, 'libcontour.zip' contains the matlab-generated dll and wrapper dll. 
    Attachments:
    contourcWrapper_test.vi ‏12 KB
    libcontour.zip ‏50 KB

    But LabVIEW does.  The declarations (in C) for different types of arrays are not the same.  I think you are passing extranious data to the DLL which is causing the issue.
    I will defer to your expertise however.  Over the years my knowledge in this area has waned.  Perhaps you are correct (in which case I am not sure what is wrong).
    Examples:
    typedef struct
        int dimSize;
        double data[1];
      } t_LvArrayDbl1D, *p_LvArrayDbl1D, **h_LvArrayDbl1D;
    typedef struct
        int dimSize[2];
        double data[1];
      } t_LvArrayDbl2D, *p_LvArrayDbl2D, **h_LvArrayDbl2D;

  • Unable to call CreateJavaVM through .so file

    Hi,
    I was able to run the basic invoke2.c program to call a java class.
    What I did was, changed the main() as load_func() with all statments intact.
    I created a module.so file (code attached) with this program.
    I tried to call the java program by calling the function in .so file, but it gave me an error. I have given the .log file that was created on executing this program.
    Can any one let me know what could be the problem.
    I have installed Ch Language environment in my system. which can be downloded from www.softintegration.com
    I doubt that Ch defines some symbols that java also wants to define. and it causes trouble during execution and the expected functions are not run.
    It would be of great if some could help me on this.
    thanks in advance
    kabilesh
    //main.c which i used to call the module.so
    #include <stdio.h>
    #include <dlfcn.h>
    int main(){
       void *handle;
       int (*fp)();
       char *modname = "./module.so";
       handle = dlopen(modname, RTLD_LAZY);
       if (handle == NULL) {
          fprintf(stderr, "Can't load %s %s\n", modname, dlerror());
          exit(1);
       fp = (int (*)())dlsym(handle, "load_func");
       if (fp== NULL) {
          fprintf(stderr, "ERROR: dlsym()  %s \n", dlerror());
          exit(1);
       printf("ok\n");
       fp();
    //module.c which i compiled and linked to create module.so
    #include<jni.h>
    #include<math.h>
    #include<stdio.h>
    #define USER_CLASSPATH "." /* where Prog.class is */
    jint load_func(void *varg)
    //int main()
    JNIEnv *env;
    JavaVM *jvm;
    jint res;
    jclass cls;
    jmethodID mid;
    jstring jstr;
    jclass stringClass;
    jobjectArray args;
    JavaVMInitArgs vm_args;
    JavaVMOption options[1];
    options[0].optionString =
    "-Djava.class.path=" USER_CLASSPATH;
    vm_args.version = 0x00010002;
    vm_args.options = options;
    vm_args.nOptions = 1;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    printf("Inside load_func.c \n");
    printf("before JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args\n");
    res = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    /* never reach here */
    printf("after JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args\n");
    if (res < 0) {
    printf("Can't create Java VM res = %d\n",res);
    exit(1);
    cls = (*env)->FindClass(env, "Prog");
    if (cls == NULL) {
            printf("findd class NULL \n");
            goto destroy;
    mid = (*env)->GetStaticMethodID(env, cls,
    "main","([Ljava/lang/String;)V");
    if (mid == NULL) {
    goto destroy;
    jstr = (*env)->NewStringUTF(env, " \n from C!");
    printf("\n from c just for fun\n");
    if (jstr == NULL) {
    goto destroy;
    stringClass = (*env)->FindClass(env, "java/lang/String");
    args = (*env)->NewObjectArray(env, 1, stringClass, jstr);
    if (args == NULL) {
    goto destroy;
    (*env)->CallStaticVoidMethod(env, cls, mid, args);
    destroy:
    printf("destroy\n");
    if ((*env)->ExceptionOccurred(env)) {
    (*env)->ExceptionDescribe(env);
    (*jvm)->DestroyJavaVM(jvm);
    //Prog.java
    public class Prog {
        public static void main(String[] args) {
            System.out.println("Hello World from java \n" + args[0]);
    #Makefile that i used
    CC = cc
    IFLAG= -I  /home/kcheeta/sunjava/j2sdk1.4.2_06/include -I /home/kcheeta/sunjava/j2sdk1.4.2_06/include/linux
    LFLAG=  -L /home/kcheeta/sunjava/j2sdk1.4.2_06/jre/lib/i386/client
    # for Linux
    CFLAGS =
    LFLAGS = -shared
    all: prog module.so
    prog: main.o
    #       $(CC) -o a.out main.o -lc -lm -ldl -rdynamic -lcurses -lcrypt
            $(CC) -o a.out main.o -ldl
    main.o: main.c
            $(CC) $(CFLAGS) -c main.c
    module.so: module.o
            $(CC) $(LFLAGS) -o module.so module.o $(LFLAG) -ljvm
    module.o: module.c
            $(CC) $(CFLAGS) -c module.c $(IFLAG)
    clean:
            rm -f *.o *.so prog a.out *.dl
    //The log file that the program generated on execution
    Unexpected Signal : 11 occurred at PC=0x402831A2
    Function=(null)+0x402831A2
    Library=/home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
          just occurred. Please refer to release documentation for possible
          reason and solutions.
    Current Java thread:
    Dynamic libraries:
    08048000-08049000 r-xp 00000000 03:03 3925708    /home/kcheeta/sunjava/c2java_linux/demos/a.out
    08049000-0804a000 rw-p 00000000 03:03 3925708    /home/kcheeta/sunjava/c2java_linux/demos/a.out
    40000000-40015000 r-xp 00000000 03:02 98139      /lib/ld-2.3.2.so
    40015000-40016000 rw-p 00015000 03:02 98139      /lib/ld-2.3.2.so
    40016000-40017000 r-xp 00000000 03:03 3925716    /home/kcheeta/sunjava/c2java_linux/demos/module.so
    40017000-40018000 rw-p 00000000 03:03 3925716    /home/kcheeta/sunjava/c2java_linux/demos/module.so
    40018000-40023000 r-xp 00000000 03:02 181427     /lib/tls/libpthread-0.34.so
    40023000-40024000 rw-p 0000a000 03:02 181427     /lib/tls/libpthread-0.34.so
    40027000-4002a000 r-xp 00000000 03:02 98185      /lib/libdl-2.3.2.so
    4002a000-4002b000 rw-p 00002000 03:02 98185      /lib/libdl-2.3.2.so
    4002b000-40427000 r-xp 00000000 03:03 492335     /home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    40427000-40443000 rw-p 003fb000 03:03 492335     /home/kcheeta/c2java_linux/bin/jre/lib/i386/client/libjvm.so
    40456000-4045e000 r-xp 00000000 03:03 492329     /home/kcheeta/c2java_linux/bin/jre/lib/i386/native_threads/libhpi.so
    4045e000-4045f000 rw-p 00007000 03:03 492329     /home/kcheeta/c2java_linux/bin/jre/lib/i386/native_threads/libhpi.so
    4045f000-40463000 rw-s 00000000 03:02 263384     /tmp/hsperfdata_kcheeta/27916
    40465000-40477000 r-xp 00000000 03:02 98161      /lib/libnsl-2.3.2.so
    40477000-40478000 rw-p 00011000 03:02 98161      /lib/libnsl-2.3.2.so
    4047a000-4049b000 r-xp 00000000 03:02 181426     /lib/tls/libm-2.3.2.so
    4049b000-4049c000 rw-p 00020000 03:02 181426     /lib/tls/libm-2.3.2.so
    404ac000-404b7000 r-xp 00000000 03:02 98334      /lib/libnss_files-2.3.2.so
    404b7000-404b8000 rw-p 0000a000 03:02 98334      /lib/libnss_files-2.3.2.so
    404b8000-404c0000 r-xp 00000000 03:02 98171      /lib/libnss_nis-2.3.2.so
    404c0000-404c1000 rw-p 00008000 03:02 98171      /lib/libnss_nis-2.3.2.so
    404c1000-404d1000 r-xp 00000000 03:03 492340     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libverify.so
    404d1000-404d3000 rw-p 0000f000 03:03 492340     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libverify.so
    404d3000-404f3000 r-xp 00000000 03:03 492341     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libjava.so
    404f3000-404f5000 rw-p 0001f000 03:03 492341     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libjava.so
    404f5000-40509000 r-xp 00000000 03:03 492343     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libzip.so
    40509000-4050c000 rw-p 00013000 03:03 492343     /home/kcheeta/c2java_linux/bin/jre/lib/i386/libzip.so
    4050c000-41eb3000 r--s 00000000 03:03 492412     /home/kcheeta/c2java_linux/bin/jre/lib/rt.jar
    41efd000-41f13000 r--s 00000000 03:03 492365     /home/kcheeta/c2java_linux/bin/jre/lib/sunrsasign.jar
    41f13000-41ff0000 r--s 00000000 03:03 492409     /home/kcheeta/c2java_linux/bin/jre/lib/jsse.jar
    42000000-42130000 r-xp 00000000 03:02 179899     /lib/tls/libc-2.3.2.so
    42130000-42133000 rw-p 00130000 03:02 179899     /lib/tls/libc-2.3.2.so
    42136000-42147000 r--s 00000000 03:03 492366     /home/kcheeta/c2java_linux/bin/jre/lib/jce.jar
    42147000-426a0000 r--s 00000000 03:03 492410     /home/kcheeta/c2java_linux/bin/jre/lib/charsets.jar
    Heap at VM Abort:
    Heap def new generation   total 576K, used 0K [0x44750000, 0x447f0000, 0x44c30000)
      eden space 512K,   0% used [0x44750000, 0x44750048, 0x447d0000)  from space 64K,   0% used [0x447d0000, 0x447d0000, 0x447e0000)
      to   space 64K,   0% used [0x447e0000, 0x447e0000, 0x447f0000) tenured generation   total 1408K, used 0K [0x44c30000, 0x44d90000, 0x48750000)
       the space 1408K,   0% used [0x44c30000, 0x44c30000, 0x44c30200, 0x44d90000) compacting perm gen  total 4096K, used 277K [0x48750000, 0x48b50000, 0x4c750000)   the space 4096K,   6% used [0x48750000, 0x487956c0, 0x48795800, 0x48b50000)
    Local Time = Wed Mar  9 10:28:58 2005
    Elapsed Time = 0#
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at# http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    #

    Hello,
    How are you calling the chm file? If you are using a click
    box, you should be able to set the on success field to "Open URL or
    File" and type in the name of the file that you want to open. As
    long as it is in the same directory, this should not be a problem.
    Hope this helps
    Doug

  • I'm unable to connect (and the internet is working properly...)

    I'm trying to get started with my apple tv and it does not connect to netflix, youtube, etc. I've checked the internet and it is working properly. Can you advice? thanks so much,
    Marivi

    Check firewall, if you're on wifi then try ethernet to rule out interference. It is likely a network issue.

  • I Can't type in my Blog Search Box through Firefox but works fine in Chrome and IE

    My Search box Doesn't type when using Firefox but it works well when I am using Chrome or IE , so I asked some of my friends to check out the blog and tell me If the search box is working or not, and they faced the same problem as well, I can press Search but I can't type words in the box.

    Can you reach the search box via the Tab key?
    What element is selected when you right-click that search box and click Inspect Element to open the Inspector?
    *https://developer.mozilla.org/Tools/Page_Inspector
    Some have reported that pressing F9 and the Windows key simultaneously one or more times has worked to fix issues with the keyboard not working.

  • Firefox is unable to connect to the internet but Internet Explorer can.

    My Firefox is not loading any websites. When I open Firefox, the home screen comes up (google), but if i try to navigate to any other website it says that it cannot connect. I then tried inernet explorer and it works perfectly. I tried all the options on the Firefox Help page (checking the firewall, proxy..) but it still doesnt work.

    From another computer, go to http://www.mozilla.com/firefox/, click "Free download" button, click "Save File" button, select your flash drive in "Save as" window. "Firefox Setup 3.6.13.exe" file will be saved in your flash drive.
    You just need to insert it in your new computer and double-click on "Firefox Setup 3.6.13.exe" from Windows Explorer and follow instructions.

  • 3G network problems in DC: cannot connect to internet, but works with EDGE

    I can load web pages fine when I turn off 3G in the settings tab (and use only EDGE), but when I turn on 3G I need to "reload" the page several times before it will load.
    This is really annoying because it is clearly a AT&T 3G network problem. After spending about an hour on the phone troubleshooting the problem with Apple-iphone and ATT "customer support", they concluded that although I was having a problem, because ATT does not show a current issue in the Washington, DC area, there is nothing they can do.
    Argh! ATT and Apple need to work things out to fix the network problems, I hate being caught in the middle of their animus relationship.
    I guess I will have to continue paying for a service that is spotty, because as the ATT representative pointed out, they do not guarantee any service and will not recompense for any alleged outage.
    Wow, now that is a prime example of why having no effective competition in cellular providers means the customer loses.

    I appears to me that the problem is not related to whether you are on the phone or not. Generally, it seems like there is a problem with the 3G network being EXTREMELY slow and non-responsive. When I press the reload button several times, sometimes is loads very quickly as I would expect on 3G.
    Still having this problem today.

  • I keep getting, "Unable to connect". Yet Internet Explorer works fine.

    I've been trying to get to the web, but keep getting the above message, followed by, "Firefox can't establish a connection to the server at mozilla.com."
    IE connects just fine, so it's not a connection problem with my modem, or provider. I even tried typing mozilla.com, and nothing but the error message. This follows an incident before logging off last night, in which my firefox windows suddenly went full screen (no search window, toolbar, etc).
    What gives?

    It may be due to your firewall. Try this: [[Cannot connect after upgrading Firefox]]

  • Can't access weblogic server from internet but can from intranet

    Hopefully this isn't the wrong place to post but I've searched through many many
    newsgroups to figure out where to post this but can't find a specific enough one.
    I've recently run into a problem with my weblogic server in that it can not be
    accessed from the internet now. This was all working several weeks ago, when
    I had the wl server listening for SSL communications on port 7002. I could access
    the server from both within our corporate intranet (kind of) as well as access
    it from the internet. I say kind of for the intranet in that when I chose to
    setup SSL on the the wl server, I couldn't get port 7002 to communicate through
    our proxy server. After a little research I determined that it would be best
    to communicate on the default SSL port of 443. After switching to 443, I didn't
    need to bypass the proxy any longer, when accessing from within intranet, but
    now couldn't access the server from the internet. The wl server is behind a firewall,
    but I had the network administrators open up port 443 on the firewall. They ran
    a network sniffer and determined that the wl server is sending a TCP FIN packet
    immediately following the last ACK packet in a TCP session establishment. I don't
    really understand what that all means, but it seems really strange that everything
    works great when inside the intranet and I don't get any TCP FIN packets sent
    from the server, but when you try to communcate through the firewall you do.
    Does anyone have any insight into this issue? something else I could look at.
    The network administrators are basically saying it's the webserver that needs
    configuration (even though it worked great in the past when listening on port
    7002 instead of 443). PLEASE HELP!!!

    Got it.  This thread helped!
    Thanks!
    https://discussions.apple.com/thread/3193444?tstart=60

  • Connected to network but unable to connect to the internet wirelessly

    I recently installed a new hard drive in my dell inspirion e1405 laptop and I can no longer connect to the internet wirelessly using the WRT54G v2. When I use ethernet it works. It says I am connected to the network. I punched in the WEP key and I am connected. I power cycled my cable modem, laptop and router several times. I followed these linksys suggestions:
    Checking the IP Address of the PC
    Checking the Wireless Settings on a Linksys Router
    Disabling Computer's Firewall
    Disabling Proxy Settings
    Pinging the Router
    Pinging the Internet
    and it still isn't working. I downloaded the firmware and that did not work. I am using XP MCE 2005. I updated the driver for my dell wireless card several times and also deleted it from the device manager and rebooted. Still nothing.
    Anyone have an idea?

    Well, hope this might help
    make sure you only get IP from the router's DHCP. yes, you must set Obtain IP Address for all network adapter on your notebook (wired and wireless). the basic is, all things will be fine if this IP issue is not around. coz, at behind, they do something more than give / got IP, such as creating routing path automatically. that which will be guaranteed the success of ethernet communication for wired and wireless.
    i cannot guess your problem, but you might want to do this.
    first, as above said, just Obtain IP Address, make it for both adapter on your notebook
    second, wireless security, must talk in same way (SSID, Channel, b/a/g/n) and use same key (WEP or WPA, passphrase/secret key).
    third, if anyhow you got connected but still can't go through internet, but, you can ping or access your router, for example, open your router web server to do some change of the configuration, means your packet is stuck on the router and cannot deliver further to internet and it is gateway issue. no else.
    well, three shots shall go but you might need more bullets coz this is called troubleshoot
    let's see how it will go.
    wish you luck

  • Cannot call pacman through schroot

    I have a 32-bit chroot setup which I use for building i686 packages.  Ever since upgrading to pacman4, I am unable to call pacman through the shcroot command:
    Example:
    $ schroot -p -- sudo pacman -S libnetfilter_queue
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): libnfnetlink-1.0.0-2 libnetfilter_queue-1.0.0-1
    Total Installed Size: 0.14 MiB
    Proceed with installation? [Y/n]
    (2/2) checking package integrity [#####################################] 100%
    error: GPGME error: Inappropriate ioctl for device
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    I can use pacman as expected if do not try through the schroot command, but if I manually chroot into the chroot.
    Example:
    $ sudo chroot /opt/arch32 /bin/bash
    # pacman -S libnetfilter_queue
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): libnfnetlink-1.0.0-2 libnetfilter_queue-1.0.0-1
    Total Installed Size: 0.14 MiB
    Proceed with installation? [Y/n]
    (2/2) checking package integrity [#####################################] 100%
    (2/2) loading package files [#####################################] 100%
    (2/2) checking for file conflicts [#####################################] 100%
    (1/2) installing libnfnetlink [#####################################] 100%
    (2/2) installing libnetfilter_queue [#####################################] 100%
    Thoughts?

    falconindy wrote:ttyname_r calls are failing because of the way you've mounted /dev/pts. Do not mount it with the "newinstance" option. Better yet, just bind mount it over from the real root. We already solved this in devtools.
    Here is the relevant bit of /etc/rc.d/arch32 initscript which setups-up my chroot for me.  I'm confused what you mean by the "newinstance" option.  Can you take a peek and educate me?
    dirs=(/dev /dev/pts /tmp /home)
    case $1 in
    start)
    stat_busy "Starting Arch32 chroot"
    [[ ! -f /opt/arch32/.arch32 ]] && mount LABEL="arch32" /opt/arch32
    for d in "${dirs[@]}"; do
    mount -o bind $d /opt/arch32$d
    done
    mount -t proc none /opt/arch32/proc
    mount -t sysfs none /opt/arch32/sys
    linux32 chroot /opt/arch32 sh -c "/etc/rc.d/distccd start" || return 1
    add_daemon arch32
    stat_done
    Thanks!
    Last edited by graysky (2011-11-18 19:11:45)

  • Connect Oracle through internet

    Hi,
    I am trying to connect my oracle database through internet.
    but it is saying ORA-12203: TNS:unable to connect to destination
    although i tested tnsping utility, it is giving OK status. and i have also tested through telnet utility with my server static IP and port 1521, this is also OK.
    but when i try to connect via PL/SQL it returns error.
    although with same setting is runing successfully in LAN.
    any idean please?
    regards
    aak

    After the initial connect at port 1521 the Oracle server sends a packet to the client with a new port number to continue the conversation. You either need a firewall that's aware of the SQL*Net protocol and "sees" this new number and opens it up, or you can switch to a static port but apparently that could have a performance impact on Windows.
    See Oracle 9.2 and Firewall - Dynamic Ports between 1024-5000
    http://www.qorbit.net/nn/Sep-2004/2177.html and http://www.qorbit.net/nn/Sep-2004/2197.html

  • Bad video quality on Atom over Internet, but not o...

    I have an Asus netbook with a 1.66GHz Atom, 1GB DDR3, and XP.  The video quality when in a call over the Internet is almost always bad, and Skype complains the computer is "slow".  There is no virus scanner or any other garbage running that sucks up resources.  I keep it lean.
    So I tried using a different computer to make the call; an 8 year old Sempron laptop, also with XP and 2.2GHz or close to that.  Video quality is great.  So it's obviously a computer performance issue, right? 
    It gets stranger.  I set up a video call between these two computers over my LAN (i.e. within the same house).  Video quality is great on both. 
    The results have been similar over a span of a year or more, calling people in different parts of the country, and even dropping Wifi and using a cable.  
    So what causes Skype to think the computer is slow when video calling over the Internet, but not when calling another computer on the same LAN?  I have a theory, but I'll hold that thought for right now.

    I have been using iChat exclusively over WiFi (Airport Extreme) from my iMac, and via Ethernet and WiFi from my Powerbook. I have not had any quality issues when connecting in this manner. Connections within my local network from WiFi to WiFi, as well as to outside connections over Broadband have all been of very good quality. Now if I can just get it all working again following the upgrade to Leopard 10.5.1.
    FYI: I have even used iChat AV on Tiger using DUN on my Treo650 (Sprint), which worked fine as well.

  • Unable to use all the feature of my email service (Juno on the web) like; font size/color, bolding, italics, highlighting etc why? Those features work through Internet Explorer but not Firefox.

    When I go to my Juno on the web through Firefox, I am unable to use the tool features such as:
    Font size / Color
    Bolding
    Italics
    Bullets
    Highlighting
    just to name a few. Yet when I bring it up through Internet Explorer these features work, plus the way Firefox reads my Juno the tabs are distorted (the page is not formatted correctly, I contacted Juno they said I should contact my modem company AT& T they said no so you are my last resort.. Please help resolve my issue, THANK YOU in advance for assisting with this matter.

    It is up to Juno to enable Midas, the Rich Text Editor which is built into Firefox, with one little line of code on every web page that has RTE for IE. There's nothing that you can do to turn that feature on your self, it has to be coded on each web page that has Rich Text Editing.
    http://www.mozilla.org/editor/midas-spec.html <br />
    http://kb.mozillazine.org/Midas
    Their ignorance probably lies with their staff programmers only knowing how to do it for IE ''(their training and certificates are probably from the Microsoft cabal)'', and not realizing that Gecko and WebKit apps each have their own Rich Text Editor's, which require their own small line of code to enable those Editor's.

  • My iphone 5 went into search mode and I can't place or receive calls or use the internet but my text messages work. Sprint had me do a master reset and my phone doesn't work at all now I can't get it past the activation. Will I have to pay in store?

    My iphone 5 went into search mode and I can't place or receive calls or use the internet but my text messages work. Sprint had me do a master reset and my phone doesn't work at all now I can't get it past the activation. Will I have to pay for repairs in store because I didnt get the Apple care plan when I purchased it. Sprint said it may be a phone problem not sure if I should take it to Sprint or Apple...I just need my phone

    I'm sorry to learn that you are not able to make/receive calls chelseabee! (ticket number removed) results indicate that there is no issues with the network or account provisioning. Since you have already done a hard reset http://vz.to/1gBkSJc (as per your post), I recommend exploring replacement options. If your phone is within the one year manufacturers' warranty we can provide a Certified Like New replacement http://vz.to/uyYF0o as long as no physical/liquid damage exist. If your phone has sustained physical/water damage and you have insurance, you can submit a claim to the insurance company online at this link http://bit.ly/07CrqPK
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

Maybe you are looking for

  • Problem with Photoshop Elements 10 organizer

    My Photoshop Elements 10 organizer will not let me use any of the features.  I have a number of photos that show up when I open the organizer, but it won't let me scroll through them.  Whenever I try to move through the photos with my mouse, it keeps

  • Problem in Creating new row & inserting data using CreateInsert and Commit

    Hello All, I have created a page there are few input text and i want to insert the data into a database table. I have created an Application Module I am using CreateInsert and Commit operation but there is one problem. At first it created a row in da

  • Apply changes button not working as expected

    Hi I have a page, this page has some fields and a drop-down list where it has a projectname as the values and when I change a value in the drop-down list and click on "Apply Changes" button it does update the table and the changes can be viewed on th

  • Interface objects not appearing

    Hi, When I tried to open interface objects in integration repository.It asked for password.After giving password I got prompt that server connection established successfully. But I can't see any interface objects or mapping objects. Kindly help Regar

  • Using both aperture and iphoto

    is there a way to use both aperture and iphoto without duplicating all the pictures? can I just point aperture to the iphoto folder with my pictures? i would like to use both, but don't want to have to duplicate all of my pictures, my hard drive can'