Issues with remote client accessing EJB3

Hi folks,
I tested Weblogic 10.3 these days and had some trouble to access a stateless session bean (EJB3) via a remote Java client. My development system is Windows Vista 32bit.
First, Weblogic doesn't like blanks in folder names! The Test Client throws an exception complaining that the business interface is not found:
Exception in thread "Main Thread" java.lang.AssertionError: java.lang.ClassNotFoundException: ejb3session.Trader
at weblogic.ejb.container.internal.RemoteBusinessIntfGenerator.generateRemoteInterface(RemoteBusinessIntfGenerator.java:69)
at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.readObject(RemoteBusinessIntfProxy.java:205)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197)
at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:564)
at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193)
at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:240)
at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source)
at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:392)
at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
at ejb3session.Client.lookup(Client.java:99)
at ejb3session.Client.(Client.java:34)
at ejb3session.Client.main(Client.java:61)
Caused by: java.lang.ClassNotFoundException: ejb3session.Trader
at weblogic.ejb.container.deployer.DownloadRemoteBizIntfClassLoader.getClassBytes(DownloadRemoteBizIntfClassLoader.java:85)
at weblogic.ejb.container.deployer.DownloadRemoteBizIntfClassLoader.loadClass(DownloadRemoteBizIntfClassLoader.java:46)
at weblogic.ejb.container.internal.RemoteBusinessIntfGenerator.generateRemoteInterface(RemoteBusinessIntfGenerator.java:66)
In fact, the compiled class file of the business interface is located on the file system in a path that contains a blank. Debugging session shows that the internal weblogic class RemoteBusinessIntfGenerator fails to open the class file because of a wrong used URL file reference. If the path contains no blank, everything works fine. This is obviously a bug!
Second, generics don't work in the business interface. As soon as I insert a generic return type or method parameter, I get an exception at runtime, no matter if the actually called method is generic or not:
java.lang.NullPointerException
     at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.getTargetMethod(RemoteBusinessIntfProxy.java:162)
     at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:53)
     at $Proxy0.saveContact(Unknown Source)
     at Main.testIt(Main.java:45)
     at Main.main(Main.java:34)
Third problem is already known by Oracle (CR373734): when using JPA and serializing entities to the remote client, serialization fails until you implement a writeObject() method in every entity.
What is your experience concerning these issues? For my opinion quite severe bugs...
Cheers, Thomas

But most of the O/S like Linux ,Solaries does not allow blankspaces in the classpath. Only the O/S that does allow is Windows. and there are a lot of issues regarding the spaces in the classpath.
If a blank in the classpath exist in the admin console as a remote start argument for a managed node, a patch exist.its CR375981.
But for the above case 808498 (blank for remote client classpath) Engineering did not given any patch and asked to go with the work around ie not to use a blank in the classpath.
Thanks !!

Similar Messages

  • Uk date format issue with ASP and Access Database

    I have an Asp form which updates records in an Access
    database. Problem is
    that the date format in the database record is dd/mm/yyyy
    (UK), when
    the record is displayed on the form it is mm/dd/yyyy(US)
    which after I
    update the record in the database the date has changed to the
    new format.
    I have tried everything I can to change the format but to no
    avail...anyone any ideas how I can resolve this issue?
    Thanks
    Steve

    stevo.s wrote:
    > Hi
    >
    > I have tried changing the format on the date field on
    the server behaviours
    > panelto ddmmyyy. Also have tried to set the form field
    format to ddmmyy. I have
    > also tried to use a function I got from a posting
    somehwere on the net to no
    > avail. <%function ddmmyyyy(varDate)
    > ddmmyyyy = Day(DateValue(varDate)) & "/" &
    Month(DateValue(varDate))
    > & "/" & Year(DateValue(varDate))
    > end function
    >
    > I believe that this is a recognised issue with
    Dreamweaver and Access but
    > can't seem to grasp the work around! Problem being I am
    teaching myself through
    > books and internet articles and can be weeks at a time
    without being able to
    > look at the issue..each time I come back to it it is
    like starting all over
    > again! I was hoping that somewhere out there there is a
    simple solution the
    > issue perhaps a date picker with the built in
    functionality to address the
    > issue...I am keen to understand how to deal with the
    issue rather than just
    > change my database date field to fudge the problem as I
    am in the UK and when I
    > eventually start to use the application I would like
    there to be some
    > consistency with dates and that users are familiar with
    the format.
    >
    > Any help gratefully received!
    Its not Dreamweaver, or Access, its your servers locale, its
    set to US
    format, not the UK.
    On your page at the top use:
    <% Session.LCID = 2057 %>
    This will force the page into using UK formatted dates. Use
    it on any
    page that needs to format the page correctly.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Facing issues with oracle client installation 32 bit 10.2.0.1

    Hi ,
    I am facing issues with oracle client installation 32 bit 10.2.0.1
    Windows 2008 R2 enterprise edition 64 bit
    Java 1.6 update 34
    Below is the error recieved:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079055
    Function=[Unknown.]
    Library=C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\client\jvm.dll
    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:
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(Native Method)
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:516)
      at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:473)
      at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.setInstallerKey(OiipgBootstrap.java:511)
      at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:418)
      at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:401)
      at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
      at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
      at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
      at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
      at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:547)
      at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:935)
      at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:872)
    Dynamic libraries:
    0x00400000 - 0x0040B000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\javaw.exe
    0x77C60000 - 0x77DE0000 C:\Windows\SysWOW64\ntdll.dll
    0x75AB0000 - 0x75BC0000 C:\Windows\syswow64\kernel32.dll
    0x77420000 - 0x77467000 C:\Windows\syswow64\KERNELBASE.dll
    0x77370000 - 0x77410000 C:\Windows\syswow64\ADVAPI32.dll
    0x76610000 - 0x766BC000 C:\Windows\syswow64\msvcrt.dll
    0x75DD0000 - 0x75DE9000 C:\Windows\SysWOW64\sechost.dll
    0x776E0000 - 0x777D0000 C:\Windows\syswow64\RPCRT4.dll
    0x757C0000 - 0x75820000 C:\Windows\syswow64\SspiCli.dll
    0x757B0000 - 0x757BC000 C:\Windows\syswow64\CRYPTBASE.dll
    0x77470000 - 0x77570000 C:\Windows\syswow64\USER32.dll
    0x764F0000 - 0x76580000 C:\Windows\syswow64\GDI32.dll
    0x77C30000 - 0x77C3A000 C:\Windows\syswow64\LPK.dll
    0x75820000 - 0x758BD000 C:\Windows\syswow64\USP10.dll
    0x74EA0000 - 0x74EEC000 C:\Windows\system32\apphelp.dll
    0x6EF10000 - 0x6EF9D000 C:\Windows\AppPatch\AcLayers.DLL
    0x76720000 - 0x7736A000 C:\Windows\syswow64\SHELL32.dll
    0x761D0000 - 0x76227000 C:\Windows\syswow64\SHLWAPI.dll
    0x76350000 - 0x764AC000 C:\Windows\syswow64\ole32.dll
    0x75F30000 - 0x75FBF000 C:\Windows\syswow64\OLEAUT32.dll
    0x74660000 - 0x74677000 C:\Windows\system32\USERENV.dll
    0x74650000 - 0x7465B000 C:\Windows\system32\profapi.dll
    0x74340000 - 0x74391000 C:\Windows\system32\WINSPOOL.DRV
    0x74570000 - 0x74582000 C:\Windows\system32\MPR.dll
    0x6E8B0000 - 0x6EAC8000 C:\Windows\AppPatch\AcGenral.DLL
    0x6EFA0000 - 0x6F020000 C:\Windows\system32\UxTheme.dll
    0x6F060000 - 0x6F092000 C:\Windows\system32\WINMM.dll
    0x74840000 - 0x7484F000 C:\Windows\system32\samcli.dll
    0x6F0D0000 - 0x6F0E4000 C:\Windows\system32\MSACM32.dll
    0x74C80000 - 0x74C89000 C:\Windows\system32\VERSION.dll
    0x6F340000 - 0x6F343000 C:\Windows\system32\sfc.dll
    0x6F260000 - 0x6F26D000 C:\Windows\system32\sfc_os.DLL
    0x6F040000 - 0x6F053000 C:\Windows\system32\dwmapi.dll
    0x758C0000 - 0x75A5D000 C:\Windows\syswow64\SETUPAPI.dll
    0x75C90000 - 0x75CB7000 C:\Windows\syswow64\CFGMGR32.dll
    0x77570000 - 0x77582000 C:\Windows\syswow64\DEVOBJ.dll
    0x75DF0000 - 0x75F27000 C:\Windows\syswow64\urlmon.dll
    0x775A0000 - 0x77695000 C:\Windows\syswow64\WININET.dll
    0x75FD0000 - 0x761CF000 C:\Windows\syswow64\iertutil.dll
    0x76230000 - 0x7634E000 C:\Windows\syswow64\CRYPT32.dll
    0x75FC0000 - 0x75FCC000 C:\Windows\syswow64\MSASN1.dll
    0x6F0C0000 - 0x6F0C6000 C:\Windows\system32\SHUNIMPL.DLL
    0x6F030000 - 0x6F03D000 C:\Windows\system32\SortServer2003Compat.dll
    0x75CC0000 - 0x75D20000 C:\Windows\system32\IMM32.DLL
    0x75BC0000 - 0x75C8C000 C:\Windows\syswow64\MSCTF.dll
    0x08000000 - 0x08138000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\client\jvm.dll
    0x10000000 - 0x10007000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\hpi.dll
    0x003F0000 - 0x003FE000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\verify.dll
    0x007B0000 - 0x007C9000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\java.dll
    0x007D0000 - 0x007DE000 C:\Users\ADMINI~1\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\zip.dll
    0x051D0000 - 0x052E2000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\awt.dll
    0x052F0000 - 0x05341000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\fontmanager.dll
    0x6E7C0000 - 0x6E8A7000 C:\Windows\system32\ddraw.dll
    0x6F020000 - 0x6F026000 C:\Windows\system32\DCIMAN32.dll
    0x75DA0000 - 0x75DCD000 C:\Windows\syswow64\WINTRUST.dll
    0x6E6F0000 - 0x6E7BC000 C:\Windows\system32\D3DIM700.DLL
    0x05770000 - 0x05793000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\JavaAccessBridge.dll
    0x007E0000 - 0x007E5000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\jawt.dll
    0x007F0000 - 0x007F7000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\JAWTAccessBridge.dll
    0x06340000 - 0x06359000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\oui\lib\win32\oraInstaller.dll
    0x06470000 - 0x0648E000 C:\Users\Administrator\AppData\Local\Temp\2\OraInstall2013-08-22_02-41-00PM\jre\1.4.2\bin\jpeg.dll
    0x776B0000 - 0x776DA000 C:\Windows\syswow64\imagehlp.dll
    0x6E600000 - 0x6E6EB000 C:\Windows\syswow64\dbghelp.dll
    0x776A0000 - 0x776A5000 C:\Windows\syswow64\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation   total 704K, used 90K [0x10010000, 0x100d0000, 0x10770000)
      eden space 640K,  13% used [0x10010000, 0x10026448, 0x100b0000)
      from space 64K,   2% used [0x100c0000, 0x100c07a8, 0x100d0000)
      to   space 64K,   0% used [0x100b0000, 0x100b0000, 0x100c0000)
    tenured generation   total 8436K, used 5698K [0x10770000, 0x10fad000, 0x16010000)
       the space 8436K,  67% used [0x10770000, 0x10d00a40, 0x10d00c00, 0x10fad000)
    compacting perm gen  total 12288K, used 12049K [0x16010000, 0x16c10000, 0x1a010000)
       the space 12288K,  98% used [0x16010000, 0x16bd47a0, 0x16bd4800, 0x16c10000)
    Local Time = Thu Aug 22 14:42:03 2013
    Elapsed Time = 40
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # 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_08-b03 mixed mode)
    Thanks

    10.2.0.1 is not supported/certified on Win 2008, so expect issues with the install and/or with using the software.
    Why cannot you use a supported version - minimum is 10.2.0.4, which is only available to customers with an Extended Support contract
    http://docs.oracle.com/cd/B19306_01/relnotes.102/b14264/toc.htm#BABGFAJI
    HTH
    Srini

  • J2EE Tutorial With Remote Client

    Where can I find a J2EE tutorial that demonstrates a remote client accessing an EJB? The Sun tutorial are all localized examples. Does a remote client have to run on a J2EE server?
    Thanks,
    -Ray

    Remote Clients do not have to run in a J2EE server. All you need is the j2ee.jar and your app server's required runtime jar file(s) e.g oracle9iAS(oc4j.jar) and the .properties files.
    Let me know if you need any more information.

  • PSP, router, and modem issues with Remote Play

    Background:
    Verizon DSL
    Westell 6100 modem
    WRK54G router
    PS3
    PSP
    I haven't seen a post on this topic yet, so I'll explain the issue.  The Playstation 3 is networkable either through a wired ethernet or wireless connection.  The Playstation Portable is also networkable over wifi.  The PSP has always worked at hot spots for web surfing and gaming.  With the release of the PS3, there was a new feature called Remote Play, which let you connect your PSP to your PS3 and stream the PS3 interface.  You can manipulate the options, watch videos and listen to music, just like you are at the controls of the PS3.  The PS3 has to be put in "remote play" mode for this to work.
    Last week, Sony released an update that made this functionality work over the internet.  For most people this worked just fine.  Others had to open ports here or there, but there is a group of users that cannot connect from a hot spot, but can connect over the internet at home.  The original remote play connection (before the update) was a direct connection between the PS3 and PSP.  Now you can connect through your router at home (scan for your router and connect that way).  This connection works since the PS3 and PSP are both connected to the same router in your home.  When you go to a hotspot, you can get all the way up to the point that the PS3 streamed screen should start, but it times out.
    This is taken directly from the PS3 owner's manual:
    "If the PS3 system is connected to the Internet via two or more routers, communication may not work correctly."
    It seems like internet connection from a hot spot doesn't work because the request for the PS3 gets lost between two routers when it gets to my home network.
    Finally to my question.  It seems like my Westell 6100 is functioning as a router, as is my WRK54G.  When i look at my modem's settings, it is set up as a bridge protocol in routed bridge mode.  Everything else I try makes me lose my internet connection.
    Anybody know what I'm talking about or have any suggestions?
    Thanks

    A lot of PS3/PSP owners are having this issue with Remote Play. I have a WRT350N and have been through Sony forum as well as this one to know about all setups from port forwarding to giving your PS3 a static IP and placing in DMZ. I can say I had success connected via or public wi-fi but I also noticed how unstable Remote Play is. There will be times you can connect to it but if you turn your PS3 completely off (not standby) and back on you will pretty much need to setup your PSP again with the PS3 for Remote Play. The problem itself lies more with Sony and not our modem and routers except that fact that you do have to make some minor changes like disable UPnP, forward ports and etc. I own the Sony LocationFree Player which uses a similiar function like Remote Play but instead gives you control over your cable tv remotely anywhere on laptop or psp. LocationFree never failed me since day one because Sony created a DDNS for it which worked for me no matter who my carrier was or what router I have used over the years. Remote Play was introduced later for PS3 which pretty much like LocationFree but Sony doesn't provide a DDNS for it, instead we have to go through all the crazy configurations which is never stable. However you can register for a DDNS at DynDNS.org and configure your router with it which I have done before and found it to be very stable. No matter what Sony still needs to address the issue with the PS3 communication for Remote Play. You can find a lot of info here for setting up DDNS and as for Remote Play your better off going to the Playstation Forums. Good Luck!

  • Issue with sccm client installation

    hi,
    iam facing issue with sccm client 2007 installation on secondary site.please find the logs below,

    Refer for the above error : http://www.myitforum.com/forums/MSI-SMS-Advanced-Client-does-not-support-peruser-installations-m183336.aspx
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Issues with Remote Users, VPN Connections, etc.

    Hi there,
    A few weeks ago I was asked to enable EWS and Outlook Anywhere which had not been previously enabled.  I did so, but this seemed to cause issues (they may not have been implemented correctly) for users in remote offices; they would be prompted
    for credentials to log into Outlook 2010, but no issues with OWA.  I disabled Outlook Anywhere as it turned out we didn't need it, and this has caused VPN users to now not be able to open Outlook.
    At this point I'm not sure what the issue is.  I've tried implementing a few fixes from Googling around but haven't been able to determine the root cause and actually caused more issues this morning, where many local users were being prompted for credentials,
    which was alleviated by creating new mail profiles for them.
    We're using Exchange 2010 and Outlook 2010, with OWA being served by Forefront TMG.
    I've seen in some other cases where results of the following queries were asked for, so here they are:
    Get-OutlookProvider | fl
    RunspaceId : a71467aa-c7ca-4a71-a349-41c860cb6db9
    CertPrincipalName :
    Server :
    TTL : 1
    OutlookProviderFlags : None
    AdminDisplayName :
    ExchangeVersion : 0.1 (8.0.535.0)
    Name : EXCH
    DistinguishedName : CN=EXCH,CN=Outlook,CN=AutoDiscover,CN=Client Access,CN=Business Name,CN=Microsoft Exchan
    ge,CN=Services,CN=Configuration,DC=domain,DC=com
    Identity : EXCH
    Guid : 0e397d7f-fecc-451f-8774-3b4225cce8c9
    ObjectCategory : sunrype.com/Configuration/Schema/ms-Exch-Auto-Discover-Config
    ObjectClass : {top, msExchAutoDiscoverConfig}
    WhenChanged : 10/10/2013 2:56:34 PM
    WhenCreated : 9/28/2011 2:42:58 PM
    WhenChangedUTC : 10/10/2013 9:56:34 PM
    WhenCreatedUTC : 9/28/2011 9:42:58 PM
    OrganizationId :
    OriginatingServer : server.domain.com
    IsValid : True
    RunspaceId : a71467aa-c7ca-4a71-a349-41c860cb6db9
    CertPrincipalName : msstd:*.domain.com
    Server :
    TTL : 1
    OutlookProviderFlags : None
    AdminDisplayName :
    ExchangeVersion : 0.1 (8.0.535.0)
    Name : EXPR
    DistinguishedName : CN=EXPR,CN=Outlook,CN=AutoDiscover,CN=Client Access,CN=Business Name,CN=Microsoft Exchan
    ge,CN=Services,CN=Configuration,DC=domain,DC=com
    Identity : EXPR
    Guid : 3bed6181-e70e-4c93-ac2d-bc57605cbeae
    ObjectCategory : domain.com/Configuration/Schema/ms-Exch-Auto-Discover-Config
    ObjectClass : {top, msExchAutoDiscoverConfig}
    WhenChanged : 8/20/2014 9:32:10 PM
    WhenCreated : 8/20/2014 3:21:11 PM
    WhenChangedUTC : 8/21/2014 4:32:10 AM
    WhenCreatedUTC : 8/20/2014 10:21:11 PM
    OrganizationId :
    OriginatingServer : server.domain.com
    IsValid : True
    RunspaceId : a71467aa-c7ca-4a71-a349-41c860cb6db9
    CertPrincipalName :
    Server :
    TTL : 1
    OutlookProviderFlags : None
    AdminDisplayName :
    ExchangeVersion : 0.1 (8.0.535.0)
    Name : WEB
    DistinguishedName : CN=WEB,CN=Outlook,CN=AutoDiscover,CN=Client Access,CN=Business Name,CN=Microsoft Exchang
    e,CN=Services,CN=Configuration,DC=domain,DC=com
    Identity : WEB
    Guid : 659f40b8-815e-43ac-95ed-49bed9766ebc
    ObjectCategory : domain.com/Configuration/Schema/ms-Exch-Auto-Discover-Config
    ObjectClass : {top, msExchAutoDiscoverConfig}
    WhenChanged : 10/10/2013 2:56:34 PM
    WhenCreated : 9/28/2011 2:42:58 PM
    WhenChangedUTC : 10/10/2013 9:56:34 PM
    WhenCreatedUTC : 9/28/2011 9:42:58 PM
    OrganizationId :
    OriginatingServer : server.domain.com
    IsValid : True
    Get-OutlookAnywhere | fl
    No output.
    I've also run the Microsoft Connectivity Analyzer locally, which appears to fixate on Outlook Anywhere connectivity and fails because OA isn't enabled.  Specifically it reports that "The EXPR Provider section is missing in the Autodiscover response. 
    RPC over HTTP may not be enabled."

    Hi Steve,
    According to the description, my understanding as below:
    1. To make users use Outlook externally, you want to enable Outlook Anywhere. However cannot connect to Exchange server via Outlook, it prompts password again and again.
    2. Because Outlook Anywhere doesn't work, so you disable it and enable VPN. But it doesn't work neither.
    Please correct me if there is any misunderstanding.
    Based on the result of running Microsoft Connectivity Analyzer, it means that the Outlook Anywhere is disabled. However it isn't an error.
    I suggest enable Outlook Anywhere on Exchange server 2010 and configure Outlook Anywhere on Outlook.
    Find an article related Configuration on Outlook for your reference:
    Configure Outlook Anywhere in Outlook 2013
    http://technet.microsoft.com/en-us/library/cc179036(v=office.15).aspx
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Issue with remote printing

    Hello
    we have an issue with printing from redirected printer
    on the local machine Windows 8.1 i have a printer installed and when i try to print from a remote pc to my installed printer on my local pc the paper type is replaced.
    on the local printer it was set to letter but on the remote the redirected printer is set to legal.
    i try to switch it to letter but it was not kept it switch back to legal.
    any adviced will be good ?
    Thanks

    Hi,
    What's the operating system of remote PC we log onto? Here, I am not sure that this can help but we can give a try by disabling the following policy setting:
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Printer Redirection\Use Remote Desktop Easy Print printer driver first
    Regarding this point, the following KB article can be referred to for more information.
    The client printer may print the documents by using an incorrect paper size if the "Use Remote Desktop Easy Print printer driver first" policy is enabled
    https://support.microsoft.com/en-us/kb/980056
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Issue with Windows mobile accessing to Controller web authenticate page

    I have an issue with my customer that use Windows mobile that can't access the web authentication page in the WLC using IE. The error message that it display is "The page can not be found. Website can not be authenticated". When the browser is trying to load the "https://1.1.1.1/login.html". It is workable with opera browser on the same mobile phone. I have try to regenerated the certificate in the WLC but it does not help.
    WLC model is 4404, firmware version :4.2. Any one have a solution to this?

    In version 4.2 on the controller SSLv2 is disabled by default. IE by default doesn't do SSLv3. Either enable SSLv2 on the controller or SSLv3 on the client.

  • Remote client accessing ejb - question

    This may be a very simplistic question, but here goes -
    scenario: I have a J2EE application running on a server Y with session beans/entity beans.
    I need a remote client on machine X to access EJB objects on Y.
    I have set the initial conext with INITIAL_CONTEXT_FACTORY, PROVIDER_URL etc...
    But, in order to narrow the reference of the object returned by lookup() method, I need to instantiate the Home object of my session (or entity) bean ...
    here's my problem: How do I instantiate EJBHomeInterface or EJBRemoteInterface, when they do not exist on the remote client machine?? (does this have something to do with the stub??)
    THANKS!

    This answer assumes you're using Weblogic, although most any other EJB container has a facility for this. Basically you need to distribute a client jar file with the client. This client jar is created during the EJB compile/deployment process and creates a jar separate from the normal jar file associated with your deployment. This jar file contains the class stubs you need to call for and use EJB's on a remote client.
    I hope this makes some sense.
    SeanB

  • Weblogic 10.3.0 issues with remote object calls.

    All:
    I was wondering if anyone has experienced any issues with Weblogic 10.3.0 dropping initial remote object calls over AMF Secure Channel. Here are the issues we are experiencing.
    1.     FLEX applications fail consistently on the first remote object call made across the AMF Secure Channel. Resulting in the request not returning from the application server; which has had varying affects on the different applications including missing data, application freeze and general degrading of the user experience.
    2.     FLEX applications require a browser/application refresh once the application has been inactive for a certain period of time. In our experiences the behavior occurs after 30 minutes of inactivity.
    I've deployed this same code to Weblogic 10.3.3 and the behaviors go away. Are there any patches to 10.3.0 that might take care of this issue that we are not aware of?
    Thanks for you help,
    Mike

    Hello,
    I found the problem. But I needed change the target of all my datasources until discover that one of my datasource didn´t answer and no errors was trigged.
    My server was waiting this datasource, and not get started.

  • It doesn�t work lazy loading with remote client (toplink)

    I am trying to use lazy loading in a @ManyToOne field but I get an exception. I have been reading in some oracle tutorials that it's necesary use -javaagent:.../lib/toplink-essentials-agent.jar for that it works because this argument activate dynamic weaving in JavaSE. I have put this command line argument javaagent but it doesn't work. Why? Can I have to do another thing? I have done a lot of tests in base to comments read in another forums but I only obtains an exception.
    Caused by: java.io.IOException: Mismatched serialization UIDs
    NOTE: The server use toplink and the remote client query the entitties through a session bean of the server. Besides, I am using Glassfish (Sun application server and toplink).
    Thanks in advance.
    hayken

    At first, thank you for your reply.
    I know that I haven´t explained the problem too well. I have a stateless bean with one remote method that execute a query an returns an entity like this
    @Entity
    public class ModuloEntity extends Serializable
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long idModulo;
    private String nombre;
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="IdProyecto")
    private ProyectoEntity proyecto;
    The remote client invoke this method and in that moment I get this exception.
    21-may-2007 18:55:48 com.sun.corba.ee.impl.encoding.CDRInputStream_1_0 read_value
    ADVERTENCIA: "IOP00810211: (MARSHAL) Exception from readValue on ValueHandler in CDRInputStream"
    org.omg.CORBA.MARSHAL: vmcid: SUN minor code: 211 completed: Maybe
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.valuehandlerReadException(ORBUtilSystemException.java:7053)
    Caused by: java.io.IOException: Mismatched serialization UIDs : Source (Rep. IDRMI:com.syskonic.gesplan.entities.ModuloEntity:6D06A8C14D488FFF:8E6FC8687EA9E512) = 8E6FC8687EA9E512 whereas Target (Rep. ID RMI:com.syskonic.gesplan.entities.ModuloEntity:1C6925798CDFD3DF:3455DBF4457AE337) = 3455DBF4457AE337
    at com.sun.corba.ee.impl.util.RepositoryId.useFullValueDescription(RepositoryId.java:573)
    If I look the server log, I can see that the call has not been produced, it doesn´t show any exception. It looks that the object managed by the server and the remote client aren´t the same and the corba service doesn´t work when remote client call session method. If I change the ModuloEntity and remove the fetch attribute then all this process executes correctly. The problem is in this attribute.
    NOTE: I am using the javaagent command line argument.
    Hayken

  • Allow remote client access

    Sorry if this has already been posted. I recently installed 3.1.2 on 10g xe and I am unable to find where I can allow access by remote clients. I remember on 2.1 that there was a section that allowed you to manage http-access. I've logged in as ADMIN and can't find it anywhere.

    I needed to allow login page access by browser from another machine on the network. Setting this in sqlplus allowed me to enable that. To bring up the login page for the remote machine I use http://xxx.xxx.x.xxx:8080/apex as the url. Where xxx.xxx.x.xxx = ip address where APEX and 10g xe instance is running.

  • Domain access issue with limited user access

    Hi all,
    I have to deploy a flex site (without the flex data services,
    unless essential) that acesses xml data from servlets that arent
    neccessarily under the same domain, and some will be physically
    located on different servers.
    I am using the cross-domain policy file, and this works fine
    provided the server is logged in with Administrative privlidges.
    However if it is logged in under a domain (with some limited
    access) I can no longer access the required data. This data is
    still available if I access it direct by typing the location into
    the browser address bar. So there is definately something stopping
    me from accessing the data within flex.
    If anyone has encountered similar problems and come up with
    solutions (which does not involve forwarding data using additional
    servlets) then your tips and advice would be much appreciated.
    Thanks!

    It was issue due to some configurations in 'External Facing Extension Service' inside configuraton-content management-global service.

  • Newly created vLAN in VTP Domain issue with VTP Client

    Hello,
    I have a VTP Domain with WS-c4506 switch "server" and multiple c2950 "clients" along Microsoft DHCP server.
    I have this infrastructure 5 years ago up & running without any problems but nowadays we need to add a new vLAN wireless access points i already created the vlan on the server checked it is created on clients show vlan found the new vlan.
    I
    assigned fa port to it on the core switch "server" i have the access point connected to it have some problems obtaining IP Address but it got fixed by restarting the DHCP server.
    problem with VTP clients that when i try to assign port to the new vlan it always takes APIPA and even when i give the laptop connected directly to the port static IP address with the same range of the new vlan at acts like there is now networks exist it cannot ping anything within the network.
    it all looks right but i dont know why it doesnt connect to the network like it should.
    any recommendations?

    Yes. I can Telnet over the site to site tunnel to the Cisco 881. I can not Telnet via the VPN Client to the Cisco 881 or ping it's LAN interface.
    GM

Maybe you are looking for

  • Fms onLoad fails in one environment, but not another

    Totally stumped! I have an application that was running at influxis, no problem. The server side script performs an XML sendAndLoad, and then calls the client based upon the xml response. But then i installed my main.asc file into a different dev env

  • Slide Action on Exit Cancelled by Length of Audio File

    Captivate 8.0 Responsive Project Status:  Solution to problem works but makes no sense Problem:  Slide actions on exit designated in the Properties Inspector do not function.  Although the "jump to slide" action was selected, the transition at the en

  • Using two Macs with differing OSs.   Password refused on one for purchases/updates

    I'm running an old MacPro with OS10.5.8 and a 27" i7 iMac withOS10.9.5 which I use for working in FCPX.   The older MacPro still had FCP6 in use.    For a little while now Apple refuses to recognise my password for their store downloads and updates. 

  • Web Auth Cert Download

    I have a verasign cert that I put on all my old bbsm's for guest portal access via https. I wanted to put that cert on my 5508 controller as well for the same purpose. But when I try to download it I get a message saying it failed, even though the tf

  • Installing OEM grid control on Linux 64 bit

    Was someone able to install OEM grid control 10.2.0.1 on a RedHat linux 4.0 x86-64. I Know that it is not certified yet but most of the time it is possible to install a 32 bit application on a 64 bit OS. Thanks