Connection Issue R/3 and sender RFC

Iam using RFC sender in my scenario. I have created an RFC destination in R/3 with the details Program ID, GatewayHost, Service. Maintained the same details in RFC sender communication channel of XI. After activating my communication channel I tested my RFC destination R/3. It was succesful.
But these days we are facing the problem with that. It says ' Program Id not registered'. We used to get this error whenever either of the system(R/3, XI) goes down. that time i used to go n activate my Comm. channel the connection would be established once again.
Please let me know why iam facing this error also let me know the steps to resolve it.
Even I tried michel's blog on sender RFC....

Hi,
even we applied all the SAP notes what Naveen has suggested in his notes.But still we are facing this issue.
Do we need to check the version of R/3 and XI.Our R/3 system is 4.7e
Please suggest what to do...

Similar Messages

  • My iphone 4s is suddenly showing all my imessages as texts and i am not receiving any messages back.  I am home, connected to our wifi and sending the messages to others in the house. any idea why?

    My iPhone has suddenly started showing my imessages in green.  I am home, connected to wifi and sending them to others in the house.  Also I am not receiving their responses.  Any ideas?

    Apple is having server issues, hopefully to be resolved in the next 24 hours.

  • Iphone 4s-when wifi is off and I am away from my home connection can I receive and send texts and text messages?  I want to keep my wifi off to limit data (email etc) to when I want to check it.  Cellular is roaming"voice only" it says.Can I get texts?

    When my wifi is off and I'm away from my home connection - it shows wifi off (unless I turn it on to check my email etc.) - and in the settings cellular it shows "voice only". Will I be able to receive and send texts in those settings?  Or check voicemail.  I had wanted to keep my email from coming in all the time and only want to check it periodically - so I turn ON my wifi when I want to check my email.  But when my wifi was off away from home- I hadn't seemed to be getting my texts.  So- do I need to keep wifi roaming connected when away from home to receive and send my texts in real time.  (which is what I want) or am I still able to send and receive texts with my wifi off when I'm away from home.  (When I'm home I am connected to my home data plan automatically through wifi and I get texts when I'm home - but I'm thinking I'm not getting texts in real time - is it because my wifi is off when I'm away from home?  My cellular shows voice only when my wifi is off away from home.  Am I doing it right to receive and send texts away from home?  Or do I need to open up the wifi in order to receive and send text messages.  I know that I would need to turn on wifi roaming - which will use data - for email checking or sending - as well as to use browsing apps and now I'm guessing to receive voice messages I may have missed?  So do I need wifi on to receive texts too?  Thank you - GregorySC

    Hello GregorySC,
    In order to send and receive SMS or MMS messages, you will need to have an active cellular data or Wi-Fi connection.
    You will need these to send and receive iMessages:
    An iPhone, iPad, or iPod touch
    iOS 5.0 or later
    A cellular data connection or a Wi-Fi connection
    A phone number or Apple ID registered with iMessage in Settings > Messages
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Cheers,
    Allen

  • Issues with creating and sending BOM XML IDOC to SAP using 2010 WCF-SAP Adapter (without using Biztalk Server)

      I'm trying to replace an existing Biztalk 2006 Send BOM IDOC process, and completely remove Biztalk server from the equation.   The existing Bizatalk 2006 server receives an input BOM (Bill of Materials) flat file, and using a Biztalk Map (BM08),
    and Orchestration, generates an Idoc and sends it to SAP.
      In my replacement C# program, I'm using the 2010 WCF-SAP Adapter, and am trying to generate the BOMMAT03 XML IDOC it to SAP.  
      I generated the BOMMAT03 schema from SAP using the Add Adapter Service in VS 2010.  I was able to generate a BM08 XSLT from the existing BMO8 map in the current Biztalk 2006 process.  I am able to run a XSLT transform on the input BOM flat
    file, and generate an XML file from that.  
      However, I've run into a few issues.   First of which, is that the XML file that is generated from the XSLT transform is NOT the same schema as the BOMMAT03 schema expects.  It's somewhat similar, but different enough that I have to manually
    translate between the two in my code.  I've verified that both the original Bitztalk 2006 process and my replacement program use BOMMAT V3 from SAP.  Question--Is Biztalk 2006 server doing some other magic to turn that transormed XML into the BOMMAT03
    schema?    
     I ended writing code which translates the transformed XML into the BOMMAT03 schema (which is a strong typed XML IDOC at this point).
      However, when I try to send the BOMMAT03 XML IDOC, I get an exception "Object reference not set to an instance of an object."
                   idocClient.Send(idocData, ref sadapterTxGuid);
    idocData is of type BOMMAT03, and I've verified that the various fields are populated.  
      Any help is appreciated. 

    Well, putting in a MSDN subscription support ticket for Biztalk server actually helped with the issue.  They didn't find, or fix the issue directly.  But one of the examples (https://randypaulo.wordpress.com/tag/idoc/) they sent over, jogged my
    memory, and I realized in the code snippet below, I had accidentally deleted the 1st line.  Such a simple mistake, yet was easy to overlook.  The URL example is almost EXACTLY like my code, but without the transform and translation code to convert
    from input XML file to IDOC XML.  If someone is interested in that, let me know.    
    //Forgot the 1st line.  
    idocClient = new IdocBOMMAT03SIEIS_WED_BOMMAT03V3R700Client(binding, endpointAddress);
     idocClient.Send(idocData, ref sadapterTxGuid);
    For anyone else interested in knowing, you CAN send a strongly typed IDOC to SAP using C#.NET and the WCF SAP 2010 Adapter, using the IDOC Binding Client class you generated using the Add Adapter Service Reference in VS2010.  
    The one difference, which no one, not even the tech support from MS could tell me, was why the XSLT which I generated from the original map, did not transform the input BOM XML into the BOMMAT03 XML.  Instead, it transformed it into an intermediate
    XML, which resembled the BOMMAT03 IDOC XML, but still needed to be translated to the BOMMAT03 IDOC format.  
    The tech support person swore up and down that it should.  But I believe that something happens in Biztalk server, after the Mapping occurs, maybe in the Pipeline, which converts that
    intermediate XML into the final BOMMAT03 IDOC XML format.
    I do think that the examples are severely lacking in showing how to send a strong typed IDOC using C# and the WCF-SAP Adapter.  Even worse, the examples are completely lacking in how to actually generate a weakly typed IDOC.  They show how to send
    that weakly typed IDOC, but show me, or give me a class to be able to generate it.
    I realize that this is not quite the "recommended way" to do it, but in reality, not everyone wants or even needs a full Biztalk installation.   For some simple stuff like this, a C#.NET program and WCF-SAP adapter do the trick.  

  • Bridge NOT able to connect to one server and send message

    I have configure JMS bridge between MQ queue and a distributed queue ( which is targeting JMS servers in a cluster ).
    Bridge is able to connect to all servers and transfer messages, except one.
    Messages arriving on the MQ queue are delivered by the JMS bridge to all the JMS servers except one
    We turned on debug on MessagingBridge on affected server and got the error msg in the attached log.
    Following is the exception strace:
    <Jan 21, 2010 7:22:19 PM EST> <Warning> <MessagingBridge> <BEA-200026> <Bridge "TsysTIPSBridge" encountered some problems in one of
    its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The excepti
    on caught was java.lang.Exception: javax.resource.ResourceException: Error sending message
    at weblogic.jms.adapter.JMSBaseConnection.throwResourceException(JMSBaseConnection.java:1470)
    at weblogic.jms.adapter.JMSBaseConnection.send(JMSBaseConnection.java:714)
    at weblogic.jms.adapter.JMSConnectionHandle.send(JMSConnectionHandle.java:144)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessageInternal(MessagingBridge.java:1325)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessage(MessagingBridge.java:1251)
    at weblogic.jms.adapter.JMSBaseConnection$29.run(JMSBaseConnection.java:2070)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.jms.adapter.JMSBaseConnection.onMessage(JMSBaseConnection.java:2066)
    at com.ibm.mq.jms.MQMessageConsumer.receiveAsync(MQMessageConsumer.java:2969)
    at com.ibm.mq.jms.SessionAsyncHelper.run(SessionAsyncHelper.java:406)
    at java.lang.Thread.run(Thread.java:595)
    -------------- Linked Exception ------------
    javax.resource.ResourceException: Error creating producer or sending message
    at weblogic.jms.adapter.JMSBaseConnection.throwResourceException(JMSBaseConnection.java:1470)
    at weblogic.jms.adapter.JMSBaseConnection.sendInternal(JMSBaseConnection.java:815)
    at weblogic.jms.adapter.JMSBaseConnection.access$200(JMSBaseConnection.java:84)
    at weblogic.jms.adapter.JMSBaseConnection$6.run(JMSBaseConnection.java:707)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.jms.adapter.JMSBaseConnection.send(JMSBaseConnection.java:704)
    at weblogic.jms.adapter.JMSConnectionHandle.send(JMSConnectionHandle.java:144)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessageInternal(MessagingBridge.java:1325)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessage(MessagingBridge.java:1251)
    at weblogic.jms.adapter.JMSBaseConnection$29.run(JMSBaseConnection.java:2070)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.jms.adapter.JMSBaseConnection.onMessage(JMSBaseConnection.java:2066)
    at com.ibm.mq.jms.MQMessageConsumer.receiveAsync(MQMessageConsumer.java:2969)
    at com.ibm.mq.jms.SessionAsyncHelper.run(SessionAsyncHelper.java:406)
    at java.lang.Thread.run(Thread.java:595)
    -------------- Linked Exception 2 ------------
    javax.jms.MessageNotWriteableException: MQJMS0008: JMS Client attempts to write a read-only message
    at com.ibm.jms.JMSMessage.newMessageNotWriteableException(JMSMessage.java:4782)
    at com.ibm.jms.JMSMessage.setStringProperty(JMSMessage.java:5738)
    at weblogic.jms.client.WLProducerImpl.send(WLProducerImpl.java)
    at weblogic.jms.adapter.JMSBaseConnection.sendInternal(JMSBaseConnection.java:773)
    at weblogic.jms.adapter.JMSBaseConnection.access$200(JMSBaseConnection.java:84)
    at weblogic.jms.adapter.JMSBaseConnection$6.run(JMSBaseConnection.java:707)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.jms.adapter.JMSBaseConnection.send(JMSBaseConnection.java:704)
    at weblogic.jms.adapter.JMSConnectionHandle.send(JMSConnectionHandle.java:144)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessageInternal(MessagingBridge.java:1325)
    at weblogic.jms.bridge.internal.MessagingBridge.onMessage(MessagingBridge.java:1251)
    at weblogic.jms.adapter.JMSBaseConnection$29.run(JMSBaseConnection.java:2070)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.jms.adapter.JMSBaseConnection.onMessage(JMSBaseConnection.java:2066)
    at com.ibm.mq.jms.MQMessageConsumer.receiveAsync(MQMessageConsumer.java:2969)
    at com.ibm.mq.jms.SessionAsyncHelper.run(SessionAsyncHelper.java:406)
    at java.lang.Thread.run(Thread.java:595)
    I am new to JMS
    Please help

    What version of WebLogic and MQ are you using?
    Have you ensured that the target Destination and Connection Factory are both WebLogic artifacts (neither should reference an MQ resource)?
    Tom

  • WRT610N v1 connection issues, media center and internet

    Good evening. I am having a connection issue with my wireless/wired connection and am wondering if anyone else has had the issue.
    I am running the following
    WRT610N V1
    Firmware Version: 1.00.03 B15
    Windows 7 Enterprise Edition
    I have an Xfxforce 780i motherboard with onboard dual 1gb nics plugged into the router.
    I am also using an Xbox 360 Wireless N device.
    The issue i have been having recently are two, both seem to be router related.  Sometimes while gaming or on the web I will losing connection to my gateway. I have both of my nic mac addressed reserved in the router.  On my windows 7 machine the internet connection will stop working and I will have to repair the connection. 
    The issue i have been experiencing with my Xbox 360 is sever choppiness while streaming recorded tv shows over my network
    For the most part while I am streaming the video's i am doing nothing else, it should be noted that i can watch the vidoes on the PC without an issue so the issue shouldn't be pc related.  I initally though maybe resource related but the vidoes run fine on the pc.  Restarting has no effect.
    I did do a hard reset on my router but that did not solve the issue.  The issue is semi random but the frequence is fairly higher.  Sometimes I will get through a full show or two and sometimes the quality of the steam will be horried. Where pausing and restarting won't do anything.
    I have used a direct wired connection and I still get the video degredation so I believe the issue is my access point.
    For the price that i paid for this unit, $200 - yes i did say 200 as it is a V1 model and i got it when they came out, this is one of the worst issue I have ever had.  
    I am going to test a netgear 54g tomorrow night to see what experience I get.
    I did some poking on the forum here and I noticed others have had some degredation issue but nothing seem to solve it even though their threads are marked as solved.  I have tried turning off windows 7 firewall and disabling my AV to make sure those weren't the issue, which they aren't.
    It should be noticed that my machine is the following and I am fairly sure the issue isn't pc hardware related.
    win7 pro
    xfx force 780i 
    intel e8500 dc 3.16
    evga nvida 9800 gtx ssc
    seagate dual 250gb raid 0 hard drive
    4gb g.skill pc8500 ram.
    I am adding more ram later this weekend to take it to 8gb and a new 1tb drive to transfer my media center data too. I do not believe this will fix my issue since the only issue I can see is the Linksys router.
    thoughts?

    Try these things, in this order:
    1. Disable Home Defender. 
    If that does not work, try
    2. Reducing MTU to 1300 (recommended by someone else on here for a throughput issue). This may not be relevant to you, but it doesn't hurt to try. MTU settings don't generally apply to in-network connections. But who knows what's what when it comes to this router.
    3. Disable Upnp. Some people, like myself find this setting necessary - but you may want to just go ahead and disable to see if that helps.
    4. You need to remove the name of the competing product (that router) from your post. I got banned from the forum for a few days for mentioning that I was using so and so router for the time being. Do it before the post is deleted or you're banned. 
    Good Luck. Let us know if anything here fixes your problem.
    Remember that you'll need to give the router 'time' with each fix separately. Don't  do all 3 things. Do 1 at a time and give the router a few days, to feel out if the solution works or not.
    Good Luck. 

  • Connectivity issue between ABAP and JAVA stack

    Hi All
    we are facing the following issue while running interface. message got failed while processing Graphical mapping in Java stack. Can any one please help us what could be the issue here? Is there anything we missed from Config / XI development.
    This message was failed with not more than 200 MB file.
    XIServer
    JCO_SYSTEM_FAILURE
    connection to partner 'localhost:0' broken / CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 t
    "SYSTEM FAILURE" during JCo call. connection to partner 'localhost:0' broken / CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 t
    A
    Appreciate your quick response.

    Hi Yadagiri,
    Please check the reply from Carlos in the below thread
    Re: increasing heapsize of java on WINDOWS 2003
    Also check your sm59 RFC destination, i guess there is some problem.
    Delete AI_RUNTIME_JCOSERVER(RFC connection between the Java engine and the ABAP engine) and create it again.
    Hope tht will resolve ur issue...
    Regds,
    Pinangshuk.

  • Connectivity issue with LeapPad and Mountain Lion

    Has anyone else had issue with connecting a Leappad game console with Mountain lion? I keep getting an error message asking me to switch off and then on again to solve the problem, but it doesn't solve the problem..... I have tried manually giving the Leapster an ip address but whatever i try just fails.. HELP.???

    I have the same issue and have contacted tech support.
    This is the response I have from them:
    Hi,
    Thank you for your email,
    Unfortunately there is some issues currently with MAC OSX Mountain Lion and the Leappad Explorer drivers. We have been in contact with apple regarding this solution and have developed a fix for the issue. This will be implemented in Apple's next OSX update which should be soon.
    If you have any other questions please let us know,
    Regards
    Don't Miss Out
    To ensure that your LeapFrog emails get to your inbox, please add [email protected] to your email Address Book or Safe List.

  • See users/connections, who ar authenticated and sending huge amount of spam

    I have delay in SMTP server. SMTP server has user authentication, so it means - if someone is sendig mail to outside of my domain, he must be authenticated.
    I have turned on logging on all channels i have one main tcp_local channel, but the logging shows only information about message - from-to, reason. But does not show information about real source.
    1) how can I see, "who" is sending huge amount of mail?
    2) How can I drop connection, diallow this user for time or manage this user connections?
    At this moment queue says:
    qm.maint> summarize
    Queued Queued
    Channel Messages = Active + Delayed Size (Mb)
    ims-ms 0 0 0 0.0
    process 0 0 0 0.0
    reprocess 0 0 0 0.0
    tcp_auth 0 0 0 0.0
    tcp_intranet 0 0 0 0.0
    tcp_local 1461 1461 0 3.5
    tcp_submit 0 0 0 0.0
    Totals 1461 1461 0 3.5
    and main TOP TO domains are:
    Count Destination domain
    ====== ======================================================================
    59 hse.ie
    38 teagasc.ie
    28 oireachtas.ie
    22 entemp.ie
    18 home.com
    17 wexfordcoco.ie
    14 ireland.com

    >
    As always, please provide the exact version of Messaging Server you are running (./imsimta version).
    I have delay in SMTP server.What do you mean by this statement? What "delay"?
    SMTP server has user authentication, so it means - if someone is sendig mail to outside of my domain, he must be authenticated.
    I have turned on logging on all channels i have one main tcp_local channel, but the logging shows only information about message - from-to, reason. But does not show information about real source.There is a whole guide about how to get additional logging information here:
    http://docs.sun.com/app/docs/doc/819-4428/bgbex?a=view
    e.g. enable LOG_USERNAME to see the user that authenticated, and LOG_CONNECTION to see additional IP connection information.
    1) how can I see, "who" is sending huge amount of mail?
    2) How can I drop connection, diallow this user for time or manage this user connections? You could change the users password to stop them authenticating, or set their mailuserstatus: attribute to disabled and so forth.
    Regards,
    Shane.

  • HT2500 cannot receive mail on my mac.  I can connect to the net and send mail out but not receiving

    I cannot reveive mail,but can send and I'm connected to the net.

    http://support.apple.com/kb/HT1277
    This should help you sort things out.

  • Connectivity issues to PC and itunes after 3.1 update

    PC and Itunes doesnt recognise the iphone at all since i updated with 3.1.
    We have tried:
    * uninstalling itunes and reinstalled
    * stopped and restarted apple and ipod services (on PC)
    * Device manager didnt recognise it as a iphone
    * forced start up (on PC) to start up apple services only
    * disc management didnt identify it as a device
    * reset settings on iphone
    * system restore on PC (to before 3.1 was downloaded)
    all of these failed despited these recommendations from apple support site.
    help please!

    Welcome to the discussions,
    Did you try to connect in recovery mode? http://support.apple.com/kb/HT1808
    Did you try to connect to another computer to make sure the USB cable and the docking connector is working?

  • Connectivity Issues WRT54G router and 2915ABG Dell wireless card

    My wife and I both have Dell Inspiron 600m laptops with nearly the same setup: XP Pro, 2915ABG wireless cards, and the wireless connection is controlled through ProSet Wireless. We have Comcast and connect to a WRT54G wireless router. The router has WPA enabled, MAC address filtering, and the latest Firmware.
    I have no trouble connecting to or remaining connected to the router. Her machine connects to the wireless, but randomly loses connection (sometimes it's connected for hours and other times it losses connection in the first five minutes). When I watch the ProSet wireless event viewer, it only says "link down."
    To attempt to fix this problem, I have:
    played with the router's settings including changing channels
    updated her drivers
    allowed windows to control the wireless card
    reset the router
    updated the router's firmware
    None of these actions have fixed the problem. The only real differences between the two machines is that I did the following to mine:
    My machine was the one that initially set up the wireless router
    I used the Comcast install CD on my machine (then deleted all the *junk* that was installed by the CD).
    I would like to avoid using the Comcast install CD on her machine because no one needs the extra junk they install. I did set up her machine according to the internet on how to set up Comcast without the CD.
    I am trying to figure out if the problem is with the router or with her hardware. Thank you,
    Michael

    Try upgrading the firmware on the router.
    For information on upgrading the firmware on the linksys routers :
    http://linksysfirmwares.googlepages.com/upgradingfirmware
    For information on wireless security :
    http://linksysfirmwares.googlepages.com/wirelesssecurity
    Keep the channel on 11 and than give it a try !
    C | EH
    linksyshelp.blogspot.com

  • PC Suite 7.1.30.9 connectivity issue xp pro and E6...

    Ive just spent 3 solid hours trying to connect my E65 to my xp pro pc.
    Ive read all manner of threads and ive tried :
    1.removing nokia pc suite
    2.remove nokia connectivity cable driver
    3.reboot
    4.turn off mobile phone
    5.turn on mobile phone
    6.reinstall PC Suite 7.1.30.9
    7.reinstall Nokia connectiviy Cable Driver Nokia_Connectivity_Cable_Driver_rel_6_82_4_eng.zip 
    8. switching usb ports
    9.switching phones (also have exact problem with nokia 6280)
    10. pc suite connection wizard
    11.pc suite mode / data stoarge mode / sychronisation from mobile
    12. directly upgrading usb driver from device manager on pc
    13. changing cables.
    (and yes the ports and cable connectors are dirt/dust free)
    14.repairing nokia pc suite from add remove programs on pc
    15. turning off all firewalls / antivirus
     and timing the combination of the above in different order.
    in case i ran over a bus of chinamen i didnt know about ive just bought another cable off ebay which should come this week (making this the 3rd cable)
    the resounding answers im picking up from all manner of forum threads is that pc suite USED to work (which in my case it did) until i did the probably retarded thing and upgraded it to the latest (which is popularly recommended).
    so, im asking for more advice really, as to what could possibly be wrong that i have not done or thought of, to make my pc realise that i have connected my E65 and 6280.
    I guess the resounding piece of evidence is that in device manager the connection displays as an unknown usb device....................(these 2cables did work with an older version of pc suite i might add some months ago, so im not altogether sold on the idea that they both could be stuffed)
    thanks for reading and in the event, thank you for answering, ill check back soon.
    Cheers
    M.J

    I have the same problem with N97 and xp pro version 2002...after the update that is

  • Internet Connection Issues using BEFW11S4 and Verizon DSL

    I'm trying to get my son's wireless router running on our home network.  The PC (WXP) works find when directly connected to the DSL modem (client IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    When I install the BEFW11S4, I can connect to the router, reset factory defaults, release and renew IP; but the client times out when accessing the internet.
    The IP info for the router is identical to that which I see on the PC when directly connected (IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    I tried:
    - Easy_LinkConnect - It fails when trying to access the internet. 
    I've tried pinging from my client to known good IPs, that fails
    Reset to factory defaults
    FW upgrades
    - Is there a test untility on the router to test the WAN connection?
    - Could there be a problem with the LinkSysy router IP (192.168.1.1) being the same as the WAN DG (192.168.1.1)? 
    Thanks in advance, Mike

    Here's the latest update on the DSL/LinkSys saga. As it turns out, it had nothing to do with conflicting IPs. After peaking and poking for several days, I finally called verizon tech support. The problem was that the DSL modem (Westell 6100) needs to be in bridge mode if you're using a Linksys router (I suspect the 6100 assumes a sinle end nodes on its LAN side). However once the 6100 is in bridge mode, PPP authentication (which is done by Westell when in the router when in PPPoE) now needs to be done by all the PC's on the home network. Is there a way to have the LinkSys authenticate the PPP? Thx in advance

  • Connectivity Issue with Vista and SQL Server 2005

    Hi all;
    I am unable to log into SQL Server 2005 due to a connectivity problem.
    When I telnet on the port for the server, the attempt at a connection fails.
    Does anyone have any ideas as to what I should do?
    THANKS!!!
    Wally

    Closed the thread regarding: http://social.msdn.microsoft.com/Forums/en-US/sqlsecurity/thread/c20ee682-d329-4678-a8a6-6e10b746bf0e/
    Using the elevated mode fixed the problem.
    Jens K. Suessmeyer

Maybe you are looking for