Applicationserver

Hello
Can we deploy Oracle9i Reports without Oracle Applicationserver and instead take IBM Websphere or another Webserver?
If we would deploy Reports on the intranet, whow many licenses for Oracle9iAS do we need?
thanks
andy

Refer potign at How to run Oracle 9i Reports without Oracle9iAS?
Thanks
Rohit

Similar Messages

  • Error while installing an Applicationserver for SolMan 4.0 / Windows 2003

    Hi,
    we try to install a Solutionmanager 4.0 on a Windows 2003 HP-System.
    When installing an Applicationserver I get the following errormessage:
    ERROR 2007-05-24 10:42:01
    CJS-00030  Assertion failed: in function (nothrow) {    NW.trace("NW.hasABAP(", nothrow, ")");    if (_hasABAP == undefined && !nothrow) {        ASSERT(arguments.callee, false, "NW(" + this.getSID() + ").hasABAP() is undefined");    }    NW.trace("NW.hasABAP() done: ", _hasABAP);    return _hasABAP;}NW(S99).hasABAP() is undefined
    ERROR 2007-05-24 10:42:01
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2007-05-24 10:42:01
    FCO-00011  The step setLoadType with step key |NW_DI|ind|ind|ind|ind|0|0|NW_GetSidFromProfiles|ind|ind|ind|ind|1|0|NW_getDBInfo|ind|ind|ind|ind|4|0|NW_getLoadType|ind|ind|ind|ind|0|0|setLoadType was executed with status ERROR .
    What can I do?
    Thanks in advance!
    Regards
    Martin

    Hi,
    Check these links
    1>NW04s Installation Error -- Cannot proceed
    2>WAS 640 ABAP Database Install Error
    Hope that helps

  • Method not found: 'Void Microsoft.ApplicationServer.Caching.DataCacheFactoryConfiguration.set_DataCacheServiceAccountType('...

    After install SharePoint 2013 SP 1, I have a broken list Workflows.
    The logs contants the following error:
    05/13/2014 14:49:03.86  w3wp.exe (0x2FB4)                               0x0774  SharePoint Foundation      
        DistributedCache                air4g
    Monitorable     Token Cache: Failed to initialize SPDistributedSecurityTokenCache  Exception: 'System.MissingMethodException: Method not found: 'Void Microsoft.ApplicationServer.Caching.DataCacheFactoryConfiguration.set_DataCacheServiceAccountType(Microsoft.ApplicationServer.Caching.DataCacheServiceAc
    countType)'.    
    at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()    
    at Microsoft.SharePoint.DistributedCaching.SPDistributedCache..ctor(String name, TimeSpan timeToLive, SPDistributedCacheContainerType containerType, Boolean encryptData)    
    at
     Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenCache..ctor(String name, TimeSpan timeToLive, SPDistributedCacheContainerType containerType, Boolean encrptyData, TimeSpan minimumTokenExpirationWindow)
    at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenCacheInitializer.Init(Object state)'. 
    As I understand, I have to install some update in the system, but windows update don't show any available updates.
    Any ideas?

    Hi,
    According to your post, my understanding is that you got a broken list Workflows after install SharePoint 2013 SP1.
    I recommend to check is that your cachecluster is up and running through:
    Get-CacheHostConfig -ComputerName $env:computername -CachePort 22233
    when your cache is up and running, run the following 2 commands:
    Remove-SPDistributedCacheServiceInstance
    Add-SPDistributedCacheServiceInstance
    For more information, you can refer to:
    Distrubited Cache in SharePoint 2013
    SharePoint 2013 - Distributed Cache: ErrorCode ERRCA0017 SubStatus ES0006 e ES0001
    Replacing missing named caches to a SharePoint Distributed Cache cluster
    Thanks,
    Linda Li                
    Forum Support
    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]
    Linda Li
    TechNet Community Support

  • Error with Microsoft.ApplicationServer.Caching.VelocityPacketTooBigException

    Hello All
    I am getting the below error while I am searching for a huge record (more than 8.5 MB).
    Microsoft.ApplicationServer.Caching.VelocityPacketTooBigException: Size of message to be sent is 8837220 bytes which is larger than the maximum message size 8388608 specified in configuration.
    I have tried to change the settings in web.config cloud as below:-
    <dataCacheClient name="default" isCompressionEnabled="true">
    <autoDiscover isEnabled="true" identifier="foo" />
    <!--<localCache isEnabled="true" sync="TimeoutBased" objectCount="100000" ttlValue="300" />-->
    <transportProperties maxBufferSize="67108864"/>
    </dataCacheClient>
    But no luck...
    Please help me as am new to Azure.
    Thanks in Advance
    Deepak Gupta
    [email protected]
    919910164863

    Hi Deepak,
    Looks like, you only changed the Cache client config setting in app.config/web.config.
    You have to set the maxbuffersize on both the client and server.
    You also need to set the maxBufferSize for the server. To do this
    Right click your role
    Add -> New Item -> XML File
    Name it "CacheSettings.xml"
    Paste the following XML:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <section name="dataCache" type="Microsoft.ApplicationServer.Caching.DataCacheSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere" />
    </configSections>
    <dataCache size="Small">
    <advancedProperties>
    <transportProperties maxBufferSize="XXXX" maxBufferPoolSize="XXXX" />
    </advancedProperties>
    </dataCache>
    </configuration>
    Regards,
    Manu Rekhar

  • Microsoft.ApplicationServer.Caching.AzureClientHelper.dll in Caching 2.3.1.0 can not be copied locally

    There is a problem with Microsoft.ApplicationServer.Caching.AzureClientHelper.dl.
    Here is the problem :
    I have Web assembly which does not use caching. Caching is used by other assembly and it is in another assembly. But the config is in web. Caching nuget package is added in Services assembly and all the implementations and usages go there.
    At the end everything must be copied to Web/bin for the app to load all of its dependencies. The problem is here - Settings CopyLocal = True for Microsoft.ApplicationServer.Caching.AzureClientHelper.dll in Service assembly copies it locally to the Service/bin/Debug
    but not in Web/bin because I do not reference it in Web assembly.
    The problem could be solved easily with a type variable somewhere but the problem is that all the types of this assembly are internal.
    Any proposal to solve this?
    Thanks.

    Hi,
    From my experience, we could use startup task to do this, startup tasks are actions that are taken before your roles begin, we could copy the dll file to the folder where we want to. see more details at:
    http://msdn.microsoft.com/en-us/library/hh180155.aspx
    Best Regards
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode ERRCA0017 :SubStatus ES0002 :

    Hello everyone!
    For a long time I've been using the shared cache feature without any trouble with a Windows Azure Website (using session cache).
    The last couple of days, I've been receiving a slew of errors: 
    Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0002>:
    It continues by saying this:
    There is a temporary failure. Please retry later. (The request did not find the primary.). 
    I really don't understand why this is happening now. It was working fine. And all my configuration settings in my web.config are correct.
    The URL is right, and my key is right.  What could be wrong?
    Thanks!
    -Eric
    Eric

    Hi,
    Did you update your azure SDK? Or encounter this issue without doing anything? From my research, I found an article,
    Please have a look at it:
    http://blogs.msdn.com/b/akshar/archive/2011/05/01/azure-appfabric-caching-errorcode-lt-errca0017-gt-substatus-lt-es0006-gt-what-to-do.aspx 
    Hope this helps
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error creating site collection - Could not load file or assembly 'Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0

    Hi,
    When creating a Site collection using Central admin, i am getting the error "One or more types failed to load. Please refer to the upgrade log for more details." . Microsoft.ApplicationServer.Caching.Core dll version on my machine is 1.0.4632 (App
    Fabric 1.1). 
    Stack Trace
    SharePoint Foundation Upgrade SPSiteWssSequence ajywy ERROR Exception: Could not load file or assembly 'Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot
    find the file specified. dd64ad9c-0f90-e07d-aaaa-13533e0e9e4f
    Thanks,
    Thomas

    Hi Thomas,
    According to your description, my understanding is that you got an error when you created a site collection in SharePoint 2013.
    I found a similar thread with yours, maybe it also was created by you. Anyway ,in the thread, the workaround is Changing the virtual directory web config of CA (Option 1 and 2 mentioned at
    http://technet.microsoft.com/en-us/library/dn473937.aspx ) and it worked.
    More information, please take a look at:
    http://sharepoint.stackexchange.com/questions/111439/error-creating-site-collection-could-not-load-file-or-assembly-microsoft-appl
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • SAP Linux Applicationserver to SAP on I

    Hello,
    Has anyone a solution to connect an Applicationserver under Linux to a SAP-System on IBM I?
    In the PAM we see, that this is not supported by SAP, perhaps there is a planning to do this.
    regards
    Cornelius Klement

    Hi Cornelius,
    unfortunately, this was supported since 4.6D and is no longer supported because too few customers used it. So, this is not an option for now ro the future.
    If you want to connect the 2 systems, you can do this via RFC on the one hand and with a secondary connect from Linux to DB2 on IBM i - this is now supported in a great way because of the XDN driver. The DB Multiconnect works really great !
    But, you still do need a linux DB like MaxDB or Oracle for this ...
    Regards,
    Volker Gueldenpfennig, consolut international ag

  • BO Enterprise with SAP NW AS JAVA as JAVA ApplicationServer ...

    Hi All,
    we wanted to start a test, using BO Enterprise XI 3.1 with SAP NW AS JAVA ...
    our environment :
    Oracle 10.2.0.4 as database
    SAP NW AS JAVA as JAVA ApplicationServer ( EHP1 )
    BO Enterprise XI 3.1 SP2 FIX 2.3
    the Web-Applications were successfully deployed and are working very well;
    Question :
    Does anyone have experiences with this setup ?
    Is it possible to use 'Windows AD' Authentication for CMC ?
    Are there any guides for BO Enterprise and SAP NW ?
    How about SSO (Kerberos) and the BO Web-Applications ?
    meanwhile supported or is there any other solution ?
    Thank you in advance
    Oliver

    first of all, I'm trying to get authentication via "windows AD" working for InfoView;
    it's already woking for the Client Tools ( DeskI );
    as you now, we are working with SAP NW 7.01 as JAVA Application Server.
    instead of the "bscLogin.conf" I created a component in Security Provider with the same name, as in "bscLogin.conf";
    I added KRB5LoginModule to this component ( with parameter debug=true );
    when I'm trying to logon to InfoViewApp via Domain User I get the error FWM 00006; when password/username matches the AD information I can read the 'Username(at)DOAMIN.DE' in security.log of J2EE; if username/password doesn't match the username can't be read in the security.log file; there's only a "N/A" visible; so I think, a connection to AD was made and the username/password was verified when the username(at)DOMAIN.DE is readable in security.log;
    That's what you can see in security log ...
    User: username(at)DOAMIN.DE
    Authentication Stack: com.businessobjects.security.jgss.initiate
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sun.security.auth.module.Krb5LoginModule                            REQUIRED    ok          true       true       true      
    Central Checks                                                                               
    exception             Wrong username password combination.#
    User: N/A
    Authentication Stack: com.businessobjects.security.jgss.initiate
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sun.security.auth.module.Krb5LoginModule                            REQUIRED    ok          exception             false      Pre-authentication information was invalid (24)#
    What does this exception mean ?
    " ...exception Wrong username password combination"
    BTW:
    %JAVA_HOME%\bin\kinit <username>(at)DOMAIN.DE is working ( ticket gets stored in local cache ! )
    Do you know what I can do to get this scenario work ?
    Thanks and best regards
    Oliver

  • Server exiting: ApplicationServer entered state FAILED_IN_CONFIG

    HI
    i have this message when i Run my ADF Application
    can any one help me PLZ
    thanks

    Hello,
    same here,
    when run ejb using Oracle JDeveloper 11g Technology Preview 4,
    get
    SEVERE: Server exiting: ApplicationServer entered state FAILED_IN_CONFIG
    Process exited with exit code 1.
    Any ideas why, pls? :-)
    P.S.
    complete error:
    Jul 16, 2008 3:53:30 PM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Jul 16, 2008 3:53:31 PM oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed processing configuration
    java.security.AccessControlException: access denied ( CredentialAccessPermission credstoressp.credstore.default.systemuser read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:256)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:180)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:280)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:315)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:338)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:527)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:420)
         at oracle.security.jps.fmw.util.JpsFmwUtil.makeJpsSystemUser(JpsFmwUtil.java:221)
         at oracle.security.jps.fmw.JpsUserManager.initSystemUser(JpsUserManager.java:270)
         at oracle.security.jps.fmw.JpsUserManager.init(JpsUserManager.java:238)
         at oracle.security.jps.fmw.JpsUserManager.<init>(JpsUserManager.java:250)
         at oracle.security.jps.fmw.JpsUserManagerFactory$JpsUserManagerFactoryI.create(JpsUserManagerFactory.java:257)
         at com.evermind.server.deployment.UserManagerConfig$JAZN.construct(UserManagerConfig.java:635)
         at com.evermind.server.deployment.UserManagerConfig.delegatee(UserManagerConfig.java:253)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.server.XMLApplicationServerConfig.setPassword(XMLApplicationServerConfig.java:3170)
         at com.evermind.server.XMLApplicationServerConfig.<init>(XMLApplicationServerConfig.java:246)
         at com.evermind.server.ApplicationServer.createConfig(ApplicationServer.java:661)
         at oracle.oc4j.server.ServerFactory$Worker.prepareConfig(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:244)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:259)
         at java.lang.Thread.run(Thread.java:595)
    Jul 16, 2008 3:53:31 PM oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state FAILED_IN_CONFIG
    Process exited with exit code 1.
    Message was edited by:
    Inna O.

  • Server exiting: ApplicationServer entered state FAILED_IN_START

    Hi,
    I am trying to run the sampleHelloApp , getting the following error when i try to run ...
    When i tried to configure ...it showed me Build Successful.......
    ---------------------------------------Error ------------------------------------
    [Starting DefaultServer using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\product\Jdev11G\jdk\bin\javaw.exe -client -classpath C:\product\Jdev11G\j2ee\home\oc4j.jar;C:\product\Jdev11G\jdev\lib\jdev-oc4j-embedded.jar -Xmn64m -Xmx192m -Doracle.home=C:\product\Jdev11G -Doracle.component.type=o.j2ee -Doracle.instance=C:\jdevinstance\system11.1.1.0.22.47.96 -Djava.net.preferIPv4Stack=true -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler -Doc4j.userThreads=true -Doracle.component.name=embedded-oc4j -XX:MaxPermSize=256m -Doracle.sysman.emRep.repositoryMode=repository_less -Doracle.oc4j.instancename=oc4j_em -Doracle.notification.filewatching.interval=10000 -DLOCATOR_PORT=23891 -Dhttp.proxyHost=www-proxy.us.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=localhost|127.0.0.1|indl250bb -Dhttps.proxyHost=www-proxy.us.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=localhost|127.0.0.1|indl250bb -Xverify:none -Ddisable.checkForUpdate=true -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false -Djava.security.policy=C:\jdevinstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\java2.policy oracle.oc4j.loader.boot.BootStrap -config C:\jdevinstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Mar 18, 2008 3:11:27 PM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Mar 18, 2008 3:11:28 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:11:40 WARNING: ApplicationServer.enableOC4JDocumentChangeNotifier Alternate DocumentChangeNotifier in use!
    08/03/18 15:11:40 JMS server will listen on port 9227.
    08/03/18 15:11:44 oracle.j2ee.jms.oc4j.JMSServer startup complete
    Mar 18, 2008 3:11:45 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:11:47 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:11:48 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JCA-02013
    Mar 18, 2008 3:11:48 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JCA-02013
    Mar 18, 2008 3:11:48 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JCA-02013
    Mar 18, 2008 3:12:11 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:11 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:11 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:11 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JNDI-00002
    Mar 18, 2008 3:12:11 PM oracle.j2ee.util.AnnotatedLogger log
    WARNING: No javax.jms.ConnectionFactory found at null
    Mar 18, 2008 3:12:11 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:12 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:12 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:12:14 WARNING: ExecutorService.inform Unknown event state3 Ignored
    08/03/18 15:12:14 WARNING: ExecutorService.inform Unknown event state4 Ignored
    Mar 18, 2008 3:12:15 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Mar 18, 2008 3:12:16 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:12:25 Error initializing the Oracle JMS Resource provider for Topics: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    localhost:1521:XE
    Mar 18, 2008 3:12:25 PM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JNDI-00009
    08/03/18 15:12:27 WARNING: ExecutorService.inform Unknown event state4 Ignored
    08/03/18 15:12:29 DiagnosticService java logger init
    08/03/18 15:12:29 log level = INFO
    08/03/18 15:12:29 filter = null
    Mar 18, 2008 3:12:29 PM oracle.tip.b2b.system.DiagnosticService checkLoggable
    WARNING: WARNING
    Mar 18, 2008 3:12:29 PM oracle.tip.b2b.system.DiagnosticService checkLoggable
    SEVERE: SEVERE
    08/03/18 15:12:29 DiagnosticService finish
    08/03/18 15:12:29 DiagnosticService : s_baseDirectoryName = C:\jdevinstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\log\b2b
    08/03/18 15:12:29 ApplicationServerFactory<clean-only> ENV in ThreadMDBBean():
    08/03/18 15:12:29 ApplicationServerFactory<clean-only> ENV in EventListener():
    08/03/18 15:12:29 WARNING: ExecutorService.inform Unknown event state4 Ignored
    08/03/18 15:12:31 WARNING: ExecutorService.inform Unknown event state4 Ignored
    08/03/18 15:12:33 Error initializing the Oracle JMS Resource provider for Topics: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    localhost:1521:XE
    Mar 18, 2008 3:12:33 PM com.evermind.server.ejb.logging.EJBMessages logException
    SEVERE: [soa-infra] An error occured deploying EJB module: java.lang.InstantiationException: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
    java.lang.InstantiationException: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSDestination(MessageDrivenHome.java:315)
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSResources(MessageDrivenHome.java:293)
         at com.evermind.server.ejb.MessageDrivenHome.initialize(MessageDrivenHome.java:229)
         at com.evermind.server.ejb.MessageDrivenHome.start(MessageDrivenHome.java:134)
         at com.evermind.server.ejb.EJBPackageDeployment.startMessageDrivenHomes(EJBPackageDeployment.java:1086)
         at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:490)
         at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:271)
         at com.evermind.server.Application.setConfig(Application.java:551)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    08/03/18 15:12:33 WARNING: Application.setConfig Application: soa-infra is in failed state as initialization failed.
    java.lang.InstantiationException: Error initializing ejb-modules: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
         at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:497)
         at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:271)
         at com.evermind.server.Application.setConfig(Application.java:551)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.InstantiationException: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSDestination(MessageDrivenHome.java:315)
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSResources(MessageDrivenHome.java:293)
         at com.evermind.server.ejb.MessageDrivenHome.initialize(MessageDrivenHome.java:229)
         at com.evermind.server.ejb.MessageDrivenHome.start(MessageDrivenHome.java:134)
         at com.evermind.server.ejb.EJBPackageDeployment.startMessageDrivenHomes(EJBPackageDeployment.java:1086)
         at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:490)
         ... 9 more
    08/03/18 15:12:33 WARNING: ExecutorService.inform Unknown event state3 Ignored
    08/03/18 15:12:33 WARNING: ExecutorService.inform Unknown event state4 Ignored
    08/03/18 15:12:34 ThreadMDBBean.java ApplicationServerFactory<clean-only> ejbRemove()
    08/03/18 15:12:35 EventListener.java ApplicationServerFactory<clean-only> ejbRemove()
    Mar 18, 2008 3:12:35 PM com.evermind.server.ServerMessages severe
    SEVERE: Exception initializing deployed application: soa-infra. Application: soa-infra is in failed state as initialization failed
    java.lang.InstantiationException: Application: soa-infra is in failed state as initialization failed
         at com.evermind.server.Application.setConfig(Application.java:645)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.InstantiationException: Error initializing ejb-modules: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
         at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:497)
         at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:271)
         at com.evermind.server.Application.setConfig(Application.java:551)
         ... 7 more
    Caused by: java.lang.InstantiationException: No javax.jms.Destination found at the specified destination-location (java:comp/resource/b2b/Topics/b2bWorkerQueue) for MessageDrivenBean eventListenerMdb
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSDestination(MessageDrivenHome.java:315)
         at com.evermind.server.ejb.MessageDrivenHome.lookupJMSResources(MessageDrivenHome.java:293)
         at com.evermind.server.ejb.MessageDrivenHome.initialize(MessageDrivenHome.java:229)
         at com.evermind.server.ejb.MessageDrivenHome.start(MessageDrivenHome.java:134)
         at com.evermind.server.ejb.EJBPackageDeployment.startMessageDrivenHomes(EJBPackageDeployment.java:1086)
         at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:490)
         ... 9 more
    Mar 18, 2008 3:12:35 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:12:35 WARNING: ExecutorService.inform Unknown event state3 Ignored
    08/03/18 15:12:35 WARNING: ExecutorService.inform Unknown event state4 Ignored
    Mar 18, 2008 3:12:36 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:12:36 WARNING: Application.setConfig Application: worklist is in failed state as initialization failed.
    com.evermind.server.ApplicationStateStopped$ApplicationStoppedException: Application: application null is in stopped state. Method "getWrappersClassLoader()"cannot be accessed
         at com.evermind.server.ApplicationStateStopped.getWrappersClassLoader(ApplicationStateStopped.java:72)
         at com.evermind.server.Application.getWrappersClassLoader(Application.java:884)
         at com.evermind.server.ejb.EJBContainer.getWrappersClassLoader(EJBContainer.java:363)
         at com.evermind.server.ejb.MessageDrivenHome.getClassLoader(MessageDrivenHome.java:718)
         at com.evermind.server.ThreadState.getClassLoader(ThreadState.java:937)
         at com.evermind.server.ApplicationServerThread.getContextClassLoader(ApplicationServerThread.java:173)
         at javax.xml.parsers.SecuritySupport$1.run(SecuritySupport.java:31)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.xml.parsers.SecuritySupport.getContextClassLoader(SecuritySupport.java:26)
         at javax.xml.parsers.FactoryFinder.find(FactoryFinder.java:133)
         at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:98)
         at com.evermind.xml.JavaxXMLUtils.getFactory(JavaxXMLUtils.java:59)
         at com.evermind.xml.JavaxXMLUtils.getJavaxDocument(JavaxXMLUtils.java:27)
         at com.evermind.xml.XMLUtils.getDocument(XMLUtils.java:251)
         at com.evermind.xml.XMLConfig.init(XMLConfig.java:177)
         at com.evermind.server.J2EEComponent.init(J2EEComponent.java:152)
         at com.evermind.server.http.XMLHttpApplicationConfigContext.getConfiguration(XMLHttpApplicationConfigContext.java:126)
         at com.evermind.server.Application.getHttpApplicationConfig(Application.java:804)
         at com.evermind.server.Application.initHttp(Application.java:1633)
         at com.evermind.server.Application.setConfig(Application.java:566)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2008 3:12:36 PM com.evermind.server.ServerMessages severe
    SEVERE: Exception initializing deployed application: worklist. Application: worklist is in failed state as initialization failed
    java.lang.InstantiationException: Application: worklist is in failed state as initialization failed
         at com.evermind.server.Application.setConfig(Application.java:645)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: com.evermind.server.ApplicationStateStopped$ApplicationStoppedException: Application: application null is in stopped state. Method "getWrappersClassLoader()"cannot be accessed
         at com.evermind.server.ApplicationStateStopped.getWrappersClassLoader(ApplicationStateStopped.java:72)
         at com.evermind.server.Application.getWrappersClassLoader(Application.java:884)
         at com.evermind.server.ejb.EJBContainer.getWrappersClassLoader(EJBContainer.java:363)
         at com.evermind.server.ejb.MessageDrivenHome.getClassLoader(MessageDrivenHome.java:718)
         at com.evermind.server.ThreadState.getClassLoader(ThreadState.java:937)
         at com.evermind.server.ApplicationServerThread.getContextClassLoader(ApplicationServerThread.java:173)
         at javax.xml.parsers.SecuritySupport$1.run(SecuritySupport.java:31)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.xml.parsers.SecuritySupport.getContextClassLoader(SecuritySupport.java:26)
         at javax.xml.parsers.FactoryFinder.find(FactoryFinder.java:133)
         at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:98)
         at com.evermind.xml.JavaxXMLUtils.getFactory(JavaxXMLUtils.java:59)
         at com.evermind.xml.JavaxXMLUtils.getJavaxDocument(JavaxXMLUtils.java:27)
         at com.evermind.xml.XMLUtils.getDocument(XMLUtils.java:251)
         at com.evermind.xml.XMLConfig.init(XMLConfig.java:177)
         at com.evermind.server.J2EEComponent.init(J2EEComponent.java:152)
         at com.evermind.server.http.XMLHttpApplicationConfigContext.getConfiguration(XMLHttpApplicationConfigContext.java:126)
         at com.evermind.server.Application.getHttpApplicationConfig(Application.java:804)
         at com.evermind.server.Application.initHttp(Application.java:1633)
         at com.evermind.server.Application.setConfig(Application.java:566)
         ... 7 more
    Mar 18, 2008 3:12:36 PM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/03/18 15:12:37 WARNING: Application.setConfig Application: soa-console is in failed state as initialization failed.
    com.evermind.server.ApplicationStateStopped$ApplicationStoppedException: Application: application null is in stopped state. Method "getWrappersClassLoader()"cannot be accessed
         at com.evermind.server.ApplicationStateStopped.getWrappersClassLoader(ApplicationStateStopped.java:72)
         at com.evermind.server.Application.getWrappersClassLoader(Application.java:884)
         at com.evermind.server.ejb.EJBContainer.getWrappersClassLoader(EJBContainer.java:363)
         at com.evermind.server.ejb.MessageDrivenHome.getClassLoader(MessageDrivenHome.java:718)
         at com.evermind.server.ThreadState.getClassLoader(ThreadState.java:937)
         at com.evermind.server.ApplicationServerThread.getContextClassLoader(ApplicationServerThread.java:173)
         at javax.xml.parsers.SecuritySupport$1.run(SecuritySupport.java:31)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.xml.parsers.SecuritySupport.getContextClassLoader(SecuritySupport.java:26)
         at javax.xml.parsers.FactoryFinder.find(FactoryFinder.java:133)
         at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:98)
         at com.evermind.xml.JavaxXMLUtils.getFactory(JavaxXMLUtils.java:59)
         at com.evermind.xml.JavaxXMLUtils.getJavaxDocument(JavaxXMLUtils.java:27)
         at com.evermind.xml.XMLUtils.getDocument(XMLUtils.java:251)
         at com.evermind.xml.XMLConfig.init(XMLConfig.java:177)
         at com.evermind.server.J2EEComponent.init(J2EEComponent.java:152)
         at com.evermind.server.http.XMLHttpApplicationConfigContext.getConfiguration(XMLHttpApplicationConfigContext.java:126)
         at com.evermind.server.Application.getHttpApplicationConfig(Application.java:804)
         at com.evermind.server.Application.initHttp(Application.java:1633)
         at com.evermind.server.Application.setConfig(Application.java:566)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2008 3:12:37 PM com.evermind.server.ServerMessages severe
    SEVERE: Exception initializing deployed application: soa-console. Application: soa-console is in failed state as initialization failed
    java.lang.InstantiationException: Application: soa-console is in failed state as initialization failed
         at com.evermind.server.Application.setConfig(Application.java:645)
         at com.evermind.server.Application.setConfig(Application.java:448)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:2114)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1854)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1226)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: com.evermind.server.ApplicationStateStopped$ApplicationStoppedException: Application: application null is in stopped state. Method "getWrappersClassLoader()"cannot be accessed
         at com.evermind.server.ApplicationStateStopped.getWrappersClassLoader(ApplicationStateStopped.java:72)
         at com.evermind.server.Application.getWrappersClassLoader(Application.java:884)
         at com.evermind.server.ejb.EJBContainer.getWrappersClassLoader(EJBContainer.java:363)
         at com.evermind.server.ejb.MessageDrivenHome.getClassLoader(MessageDrivenHome.java:718)
         at com.evermind.server.ThreadState.getClassLoader(ThreadState.java:937)
         at com.evermind.server.ApplicationServerThread.getContextClassLoader(ApplicationServerThread.java:173)
         at javax.xml.parsers.SecuritySupport$1.run(SecuritySupport.java:31)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.xml.parsers.SecuritySupport.getContextClassLoader(SecuritySupport.java:26)
         at javax.xml.parsers.FactoryFinder.find(FactoryFinder.java:133)
         at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:98)
         at com.evermind.xml.JavaxXMLUtils.getFactory(JavaxXMLUtils.java:59)
         at com.evermind.xml.JavaxXMLUtils.getJavaxDocument(JavaxXMLUtils.java:27)
         at com.evermind.xml.XMLUtils.getDocument(XMLUtils.java:251)
         at com.evermind.xml.XMLConfig.init(XMLConfig.java:177)
         at com.evermind.server.J2EEComponent.init(J2EEComponent.java:152)
         at com.evermind.server.http.XMLHttpApplicationConfigContext.getConfiguration(XMLHttpApplicationConfigContext.java:126)
         at com.evermind.server.Application.getHttpApplicationConfig(Application.java:804)
         at com.evermind.server.Application.initHttp(Application.java:1633)
         at com.evermind.server.Application.setConfig(Application.java:566)
         ... 7 more
    Mar 18, 2008 3:12:37 PM oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed (com.evermind.server.ApplicationServer@b9e55c)
    com.evermind.server.ApplicationStateStopped$ApplicationStoppedException: Application: soa-console is in failed state. Method "getWrappersClassLoader()"cannot be accessed
         at com.evermind.server.ApplicationStateStopped.getWrappersClassLoader(ApplicationStateStopped.java:72)
         at com.evermind.server.Application.getWrappersClassLoader(Application.java:884)
         at com.evermind.server.ejb.EJBContainer.getWrappersClassLoader(EJBContainer.java:363)
         at com.evermind.server.ejb.MessageDrivenHome.getClassLoader(MessageDrivenHome.java:718)
         at com.evermind.server.ThreadState.getClassLoader(ThreadState.java:937)
         at com.evermind.server.ApplicationServerThread.getContextClassLoader(ApplicationServerThread.java:173)
         at java.lang.Thread.init(Thread.java:329)
         at java.lang.Thread.<init>(Thread.java:429)
         at oracle.oc4j.transaction.TransactionManagerImpl.launchRecoveryThread(TransactionManagerImpl.java:1656)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1230)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2008 3:12:37 PM oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state FAILED_IN_START
    Process exited.

    The System user error is ok. But I can see problems with the SOA Console and infrastructure. The Build Successful is only one indication of the configuration success. You also have to look for the SOA infrastructure success message.
    Please review the install instructions. You need to re-configure.
    http://www.oracle.com/technology/products/ias/bpel/techpreview/index.html
    Heidi.

  • Works PDF Gen PS only with ApplicationServer ?

    Hello,
    is the PDF Gen PS on UNIX (Solaris10) only works with ApplicationServer ?
    Was there no way to use the PDF Gen PS on UNIX an other way ?
    We would work with a SUN-Server and the Solaris 10 OS.
    The PDF Gen PS can work as process behind, we use Scripts which starts the distill-process. In this time we use the distiller-server 6 on Solaris 9 OS.
    Would it give another software to create PDF/X-3 files on UNIX.
    (please not helios pdf-handshake)
    best regards
    Chriss

    p13n_system.jar under weblogic/p13n/lib/platform/lib/p13n/p13n_system.jar
    regards
    deepak

  • How to get the name of the ApplicationServer during runtime

    Within a Servlet or JSP, I'm trying to programmatically get the name of the JVM (AppServer) where the code (war or ear) is deployed and running under.
    (This is like getting "server1" when using WSAD).
    I tried the System, Runtime and Thread approaches with no luck.. any ideas??
    Thanks.
    Example:
    If I have 2 AppServers created: Server1 and Server2
    The ear could be deployed to either, but I want to show to the user if he/she is pointing to Server1 or Server2.

    do you want to get the defined length of the field right.
    i.e
    itab-field1(10) .
    and not the length of the value in the itab.
    one of the ways is to use the following FM
    move: sy-repid to wf_repid  ,
            'INT_OUTPUT' to int_tab_name .
      call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
         i_program_name              = wf_repid
         i_internal_tabname          = int_tab_name
    *   I_STRUCTURE_NAME             =
    *   I_CLIENT_NEVER_DISPLAY       = 'X'
        i_inclname                   = wf_repid
        i_bypassing_buffer           = 'X'
    *   I_BUFFER_ACTIVE              =
        changing
          ct_fieldcat                  = wf_fld_cat[]
       exceptions
         inconsistent_interface       = 1
         program_error                = 2
         others                       = 3
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    which would give you all the field definitions of your itab.
    Raja

  • There is no Applicationserver on Host with System ID 00?!?

    Hi there,
    i tried to import a Scenratio from our XI Consolidation System to the Prod System.
    When i go to tools - > Import Configuration Objects and Import the Scenario the following Error Occurs:
    As you can see in the Screenshot:
    http://img10.imageshack.us/my.php?image=xip.jpg
    In English:
    There was no application server on the host under s362 of the system number 00 found.
    The Problem is.. our System is known as XIPSCS and not s362... XIPSCS is a alias.. behind XIPSCS is s362
    But there is no entry about s362 anywhere.. in the RFC Destinations i only write XIPSCS.. Did you have any clue from where the Integration Builder / Integration Directory takes his HOST Names?
    Can somebody help here?
    Thanks
    Bjoern

    Thanks,
    but it did not help..
    i changed all what i find in the Exchange Profile from S362 to XIPSCS
    My SLD / Echnage Profile looks so:
    http://img18.imageshack.us/img18/4756/sldw.jpg
    I have no idea from where the Integration Builder takes the Hostname s362?
    Please help.
    Thanks
    Regards
    Bjoern
    Edited by: bjoern bayerschmidt on Mar 17, 2009 7:57 AM

  • Creating Entitybeans from Database-Views with Sun Applicationserver 8.1

    Hello,
    I�m implementing a databaseapplication with J2EE and Sun AppServer 8.1. Now I actually don�t want to use the database-tables directly. Instead I want to use views, because then the structure of the underlying table doesn�t matter. Only the view needs to be modified.
    Is it possible to use Entitybeans with views? Or is it only possible to use EJBs with tables?
    If it is possible please be so kind to give an example or explain how. I tried the capture-schema - Approach but there are no views in the capturefile. Please help!
    Thank you!
    Gregor

    You should be able to use views with EJBs, but as you correctly realized, you need to get them into your dbschema file first. Try specifying the view names as parameters to the table arguments in the capture schema tool, or try the UI for schema capture in NetBeans or Studio.

Maybe you are looking for

  • New MacMini with SLS as Mail Service

    Hi to all, my company needs to replace the older Mail Server (a DP powerPC / macosx server10.4), we're targeting on MacPro 2.66 quadcore but i take a look at MiniMac shipped with SLserver and a double HardDisk and i think it's very interesting. Consi

  • Help to add data to a component Table

    Hi to all I do not know how to binding componet Table to a SQL Server data base.... Is possible? regards

  • Sharing iMovie with iDVD

    I have just made an iMovie that is about 90 minutes in length. I tried to share it with iDVD and it says the movie is too long. I can burn it to a dual layer DVD so room on the DVD is not a problem. Is it possible to share a movie with iDVD and have

  • Having trouble accessing media in Verizon Cloud.  Any tips??

    For the past month, I have been unable to download the pictures backed up via Backup assistant.  When they actually come up, they are NOT in chronological order.  That's a pain, but the bigger problem is that, every time I try to download a photo, I

  • Excessive Access to Infotypes.

    Hi all, greatly appreciate if someone can advice on a situation i encounter. Setup. I have setup a role with Access to Employee Group 1-3 (excluding 0). I then assign this role to a User A. User A tries to access Employee ZZ whereby Employee ZZ has t