Error in redeploy to 9iAS 9.0.2 from jDev 9.0.3.1

I've been trying to follow the howto on using jDev to deploy portal applications. ( http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/BUILD.JAVA.PORTLETS.USING.JDEVELOPER.V2.HTML )
I made it through the first part OK and deployed (through remote DCM) a sample servlet that I can browse to and it functions.
Now I want to re-deploy the app with an updated servlet, adding more functionality. The deployment fails with little information. The deployment log reads:
---- Deployment started. ---- Jun 4, 2003 11:20:25 AM
Wrote WAR file to C:\jdev9031\jdev\mywork\portal_tests\test_proj\deploy\test_proj.war
Wrote EAR file to C:\jdev9031\jdev\mywork\portal_tests\test_proj\deploy\test_proj.ear
Invoking DCM servlet client...
C:\jdev9031\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\jdev9031\jdev\lib\oc4j_remote_deploy.jar http://*****.*****.*****.mtu.edu:1810/Oc4jDcmServletAPI/ ias_admin **** redeploy /extra/oracle/9ias_app C:\jdev9031\jdev\mywork\portal_tests\test_proj\deploy\test_proj.ear HelloServlet
Initializing log
Servlet interface for OC4J DCM commands
Command timeout defined at 600 seconds
Executing DCM command...
Executing command redeploy /extra/oracle/9ias_app C:\jdev9031\jdev\mywork\portal_tests\test_proj\deploy\test_proj.ear HelloServlet UNDEFINED
Command = REDEPLOY
Reading application's ear file
Ear file was successfully read
Opening connection to Oc4jDcmServlet
Setting userName to ias_admin
Sending command to DCM servlet
HTTP response code = 200, HTTP response msg = OK
Command was successfully sent to Oc4jDcmServlet
Receiving session id from servlet to check command status
Session id = 2476224db2c74191a5edf6b1013da37c
Please, wait for command to finish...
Checking command status...
Setting userName to ias_admin
Setting Cookie to JSESSIONID=2476224db2c74191a5edf6b1013da37c
Checking command status
HTTP response code = 200, HTTP response msg = OK
Command has finished
Receiving command exit value
Receiving command output
**** No output was received from command
Closing connection to Oc4jDcmServlet
#### DCM command did not complete successfully (-1)
#### HTTP return code was -1
Exit status of DCM servlet client: -1
Elapsed time for deployment: 14 seconds
#### Deployment incomplete. #### Jun 4, 2003 11:20:39 AM
If I can see the .ear file through the Enterprise Manager. If I try to make any changes to the application or attempt to undeploy it I get the following error messege:
"An error occured while undeploying the application. This Oracle9iAS instance is not in sync with the repository, cannot do further configuration and deployment changes."
I can still deploy new applications but it seems that once they are out on the 9iAS server I cannot delete or modify them!!!
In summary I need to figure out the problem redeploying/deleting applications before I take the next step and make the application a portlet.

If it's failing trying to undeploy with Enterprise Manager, you should repost this in the iAS forum to see if someone more familiar with the internals can help with this.
Rob

Similar Messages

  • Error accessing EJB bean on ias 10.1.2 from Jdev 10.1.3

    I have deployed an ADF Application Module from Jdev 10.1.3 to Oracle Application Server 10.1.2 as an EJB.
    Then I made að sample java client (by right clicking the EJB).
    When I run the client I get the following exception (which is thrown at the Application Server):
    java.lang.NoClassDefFoundError: javax/servlet/jsp/el/VariableResolver
         at oracle.jbo.mom.DefinitionManager.getCurrentDefinitionContext(DefinitionManager.java:1592)
         at oracle.jbo.mom.DefinitionManager.loadProjectDefinition(DefinitionManager.java:874)
         at oracle.jbo.server.SessionImpl.init(SessionImpl.java:143)
         at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.createSession(AbstractRemoteApplicationModuleImpl.java:343)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.createSession(ServerApplicationModuleImpl.java:118)
         at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.createRootApplicationModule(AbstractRemoteApplicationModuleImpl.java:208)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.initAsRoot(ServerApplicationModuleImpl.java:138)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.createInstance(ServerApplicationModuleImpl.java:55)
         at oracle.jbo.server.ejb.SessionBeanImpl.createApplicationModule(SessionBeanImpl.java:400)
         at is.fiskistofa.ask.vigtun.bc4j.appmod.server.ejb.beanmanaged.VigtunAppModuleServer.ejbCreate(VigtunAppModuleServer.java:73)
         at VigtunAppModuleHome_StatefulSessionHomeWrapper7.create(VigtunAppModuleHome_StatefulSessionHomeWrapper7.java:90)
         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:324)
         at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:124)
         at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:48)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I have installed the ADF runtime libraries at the application server so why won't it find this class ?

    We installed the ias again completely deployed our application and were able to run this simple test without errors. Then we installed the ADF Runtime (from JDev 10.1.3, without errors) and then the error in our application came again.
    We reverted the ADF Runtime installation so I don't currently have the 10.1.3 runtime installed on the Application Server.
    A simple test case would be:
    1. create new business components project
    2. define a database connection (e.g. scott)
    3. generate business components from tables (e.g. scott.emp), make a entity, a view object and an applicationmodule
    4. define a connection to an application server (in our case it is ias 10.1.2 on solaris)
    5. right click the appmodule and select "business components deployment"
    6. select EJB session beans (not simple archive)
    7. in the next step select the application module and create new local configuration
    8. deploy to appserver (using enterprise manager, I think direct deployment from JDev 10.1.3. to ias 10.1.2 is not possible)
    9. right click the EJB (in JDev) that was created after step 7 and select "new sample java client"
    10. uncomment the line where create is called.
    11. run the sample client

  • Error Creating Application Server 10.1.3.1 connection from JDev 10.1.3.1

    Hi All,
    I have installed OAS 10.1.3 on Linux RH ES 4 and it is running.
    But I get error when trying to create Application Server Connection from JDev 10.1.3.1. This is our first time with full version OAS, pls help..
    Below is what I did :
    On Connection Tab :
    Connect To : Single Instance
    HostName : Linux2
    OPMN Port : 6003
    OC4J Instance Name : appserver
    When I do Test Connection I get this error :
    Error getting OC4J Process for: opmn-appserver+oc4j-linux2.sas.co.id-6003-default:
    Error connecting to OPMN (is it running?): Connection refused: connect
    I have check with OPMN status on the OAS Server, it is running.
    What is wrong here ?
    Thank you for your help,
    xtanto

    Hi Xanto,
    I assume it does work because but I could not get it to work. It may have been my inexperience with the connection settings to the server. There seemed to be a number of methods of deployment and it was unclear what was needed.
    Also, when i used the Enterprise Server Control I could see the deployment crashing with out of memory errors.
    The Enterprise Server Console link can be found on the home page for the AS eg:
    http://your-server.com:7777/
    Both the server port and oc4jadmin password would have been specified during the install of the 10G AS. The ESC is also needed for configuring security providers and settings for the OC4J.
    If you find you are having memory problems this is the memory configuration fix from the middleware forums:
    10.1.3 Apps Server java.lang.OutOfMemoryError: PermGen space
    cheers,
    Brenden

  • Error while installting Oracle 9iAS Infrastructure on WIN XP

    Hi all
    I'm getting the "Database Configuration Assistant failed" error while installing Oracle 9iAS rel2 on Windows XP.
    How can I rectify this problem on Windows??..Metalink gives a troubleshooting strategy on Unix but not for windows...
    Please anyone..Help pl..

    What error are you getting ?
    Joel Pérez

  • Handling an error of redeploy command of WLST

    Hello.
    I use WLST 6.4 on WebLogic 8.1sp5.
    I have a problem about redeploy command.
    In normal situation, it works very well.
    In error situation, e.g. there is no J2EE package file
    for redeploying, I expected WLST to catch an exception
    as a result of failure of redeploying, but I could not
    catch an exception.
    I know that WLSTProgress is not supported in WebLogic 8.1.
    So I tried to handle an exception.
    How can I handle an error of redeploy command ?
    Thanks!
    Katsuya, dev2dev Osaka, Japan

    Please attach the script. I would expect you would do soemthing like,Yes, my script for prototype is as follows:
    START--------------------------------------------------------------------------
    def redeployTest(appname):
    try:
    connect("weblogic", "weblogic", "t3://localhost:7001")
    redeploy(appname)
    print "$$$$$ Successfully done ! $$$$$"
    disconnect()
    except WLSTException, er:
    print "### Caught WLSTException"
    dumpStack()
    END---------------------------------------------------------------------------
    Under the situation like that there is no ear-package file for redeploying,
    this script printed messages as follows:
    START---------------------------------------------------------------------------
    Connecting to weblogic server instance running at t3://localhost:7001 as usernam
    e weblogic ...
    Successfully connected to Admin Server 'myserver' that belongs to domain 'wlst'.
    Redeploying 'myapp' ...
    Redeployment Failed:
    Exception:weblogic.management.ApplicationException: Cannot create JarFile forE:\
    home\katuya\work\myapp.ear
    $$$$$ Successfully done ! $$$$$
    END-----------------------------------------------------------------------------
    I also tried deploy command.
    It works very well. This script caught an exception under the same situation.
    Script is as follows:
    START---------------------------------------------------------------------------
    def deployTest(appname, path):
         try:
              connect("weblogic", "weblogic", "t3://localhost:7001")
              deploy(appname, path)
              print "$$$$$ Successfully done ! $$$$$"
              disconnect()
         except WLSTException,er:
              print "### Caught WLSTException"
              dumpStack()
    END-----------------------------------------------------------------------------
    Messages are:
    START---------------------------------------------------------------------------
    Connecting to weblogic server instance running at t3://localhost:7001 as usernam
    e weblogic ...
    Successfully connected to Admin Server 'myserver' that belongs to domain 'wlst'.
    ### Caught WLSTException
    weblogic.management.ManagementRuntimeException: weblogic.management.ApplicationE
    xception: Failed to parse application descriptors: java.io.FileNotFoundException
    : File not found
    END-----------------------------------------------------------------------------
    Are there any faults in my script?
    Thanks!
    Katsuya, dev2dev Osaka, Japan

  • Deploying Webservice from JDev 9.0.3 to 9iAS Release 2

    Hello,
    i have written a webservice with JDeveloper 9.0.3 and on my local OC4J Installation the webservice is working fine.
    I can also connect from JDev to that OC4J-Instance and deploy it. I installed that standalone OC4J also on other machines
    and had also no problems connecting and deploying to them from JDev 9.0.3.
    No I tried to connect to a 9iAS Release 2 (Linux) but everytime I connect I get following errors (see below)
    What am I doing wrong ? Workarounds?
    Many thanx !!
    Greetings from Germany
    Marc Teufel
    Here are the JDEV-Messages:
    C:\JDev903\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\JDev903\jdev\lib\oc4j_remote_deploy.jar http://LIN1.hama.de:1810/Oc4jDcmServletAPI/ ias_admin XXX listApplications /home/oracle/ias902
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command listApplications /home/oracle/ias902 UNDEFINED UNDEFINED UNDEFINED
    Command = LISTAPPLICATIONS
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 404, HTTP response msg = Not Found
    #### HTTP response is NOT ok
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (404)
    #### Invalid servlet path

    You need to install DCM Servlet on 9iAS (902x) before you can deploy to 9iAS .
    If you have already done that, Make sure the binding name is correct (it is case sensitive).
    Check out the following thread for details
    Re: SQL query to fetch approximately 9000 rows
    raghu
    JDev Team

  • Error while accessing Oracle E-Business Suite 11i from Linux/firefox

    error while accessing Oracle E-Business Suite 11i from Linux/firefox
    OS: SUSE Linux Desktop 11(SLED11)
    Web browser: firefox 3.x
    Java versions:
    # rpm -qa |grep java
    java-1_6_0-sun-plugin-1.6.0.u18-0.1.1
    java-1_6_0-sun-1.6.0.u18-0.1.1
    # java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    when I access the url firefox says
    "Additional plugins are required to display all the media on this page"
    then I clicked on "Install Missing Plugin" button
    then I got the following message
    No Suitable Plugins were found
    Unknown Plugin (application/x-java-applet;jpi-version=1.4.1)
    please help/suggest
    Regards

    Hi user;
    Its not certified to login EBS from linux client
    Please check:
    Linux-cleint (ebs) certification
    pluggins
    Hope it helps
    Regard
    Helios

  • Error while accessing a public method of applet from javascript.

    Hi,
    I am getting "Object doesn't support this property or method" error
    when accessing a public method of applet from javascript in IE 6 using
    document.applets[0].myMethod();
    The same is working in IE 7.
    Thanks in advance.
    Regards,
    Phanikanth

    I don't know why it happens, but this works for me in both versions:
    <applet ..... name="MyApplet">
    </applet>and in javascript use
    document.MyApplet.myMethod()

  • When trying to sign in with 2 different apple id's I get a message saying "unknown error". I succeed to sign in directly from my iphone though. What has changed?

    When trying to sign in with 2 different apple id's that i use for year now, I get a message saying "unknown error". I succeed in signing in directly from my iphone though. What has changed?

    You will need to contact iTunes support. 

  • Receiving errors trying to run adpatch after a clone from production.

    applprod@oracle-dev4#>adpatch
    exec(): 0509-036 Cannot load program /prod/prodappl/ad/11.5.0/bin/adpatchnew because of the following errors:
    rtld: 0712-001 Symbol __pth_init was referenced
    from module adpatchnew(), but a runtime definition
    of the symbol was not found.
    rtld: 0712-001 Symbol __pthread was referenced
    from module adpatchnew(), but a runtime definition
    of the symbol was not found.
    O have try executed solution in note 1237003.1. with no luck.
    The run of adrelink.sh force=y "ad" finished with status 0. I've also tried running the adadmin utility and chose to relink all products. But adpatch also fails with same error. At this point the only thing I can think of is to have a UNIX admin install AIX 6.1 on the dev server and see if the clone has issues and see if adpatch fails. Is there any other relink or script I can run or need to run to help this particular situation out? OR is cloning from an AIX 6.1 unix environment to an AIX 5.3 environment just not compatible with oracle E-Business Suites?
    Thanks in advance

    The run of adrelink.sh force=y "ad" finished with status 0. I've also tried running the adadmin utility and chose to relink all products. But adpatch also fails with same error. Have you tried to relink adpatch only and see if this helps (I understand you did for all AD executable files) -- Also, please check the adpatch timestamp to verify.
    OR is cloning from an AIX 6.1 unix environment to an AIX 5.3 environment just not compatible with oracle E-Business Suites?This is not supported -- See (FAQ: Cloning Oracle Applications Release 11i [ID 216664.1], 13. Can I clone from one operating system version to another?).
    Thanks,
    Hussein

  • Just updated to IOS 7 and two issues:  First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".

    Just updated to IOS 7 and two issues: 
    First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".  I'm not sure what this really means...
    The second issue is when I try to select "Manually Manage Music"
         The iPhone "My iPhone" is synced with another iTunes libary on "MY-PC".  Do you want to erase this iPhone and sync with this iTunes library?  An iPhone can be synced with only one iTunes library at a time.  Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So... I don't want to do that, but I do what to be able to Manage my music.  I'm not sure what it means by being synced to another iTunes unless it means to an older version of itunes?
    Anyone have any ideas?

    I cannot address the sync services error right now, but the error that you receive when you change from sync to manually manage music is what happens when you change. Once you change to manually manage music, it erases all of the music and will only put the music that you want on the phone, content that you manually drag over to it. See if this support document helps you out. http://support.apple.com/kb/HT1535

  • Hello. I am owner of an iPod Touch 5gen. I have an error "iTunes was unable to load provider data from sync services". I tried: All Apple's tutorials including reseting sync data, reinstalling and deleting all of iTunes components including deleting it fr

    Hello. I am owner of an iPod Touch 5gen. I have an error "iTunes was unable to load provider data from sync services". I tried: All Apple's tutorials including reseting sync data, reinstalling and deleting all of iTunes components including deleting it from system registry. My system is Windows 7 64bit.

    UPDATE: The true error is : '
    "itunes was unable to load data class information from sync services"
    Any of the topics didnt work.
    Sync on my wife's laptop works.

  • Just purchased online Adobe Acrobat XI Pro and error message appeared, but payment has been debited from my credit card already

    Hello,
    Just purchased online Adobe Acrobat XI Pro and error message appeared, but payment has been debited from my credit card already and I do not have the software, so paid for nothing.
    I am using a Mac OS X.
    Thanks for your help.
    Ossama

    [discussion moved to Acrobat Installation & Update Issues forum]

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • JCO.Server Error while trying to execute a RFC program from SAP

    Hi,
    We are connecting to an external registered server program from SAP via Web Methods.
    The external server program is registered with the SAP Gateway. We have created a TCP/IP RFC destination and are able to connect to the destination successfully via SM59.
    An RFC function is created in SAP and is called using the syntax CALL FUNCTION "/NGN/BAPI_STRE_SEARCH_PROCESS" DESTINATION 'PRDB2B'. We have also handled the COMM_FALIURE and SYSTEM_FALIURE exceptions in the function call.
    We are monitoring the gateway via SMGW and see a connection log to the RFC destination as below
    Number - 10
    LUname - dev01
    TPName - sapgw00
    User - KRAORANE
    Status - CONNECTED
    Symbolic - PRDB2B
    Conversation - 86520353
    Prot - REG
    SAP return code - 0
    CPIC rtn code - 0
    The external program returns results as expected.
    However sometimes the RFC fails and returns the message “JCO.Server could not create server function /NGN/BAPI_STRE_SEARCH_PROCESS”.
    We are not able to figure what exactly is causing this error. Any help will be highly appreciated.
    -Kiran

    Hi,
    Please see the below links..
    JCO.Server Error while trying to execute a RFC program from SAP
    Re: JCO.Servcer could not find server function
    Re: JCO.Server could not find server function 'SET_SLD_DATA'
    /people/kathirvel.balakrishnan2/blog/2005/07/26/remote-enable-your-rfchosttoip-to-return-host-ip-to-jco
    Re: interfacing SAP with an existing java applications
    http://help.sap.com/saphelp_nw04/helpdata/en/47/80f671ee6e4b41b63c0fe46bd6e4f8/content.htm
    http://www.sapgenie.com/faq/jco.htm
    Regards
    Chilla..

Maybe you are looking for

  • Tracking a Moving Subject for PiP

    I recorded a two video shoot to merge together - one of the presenter and the other of the powerpoint they gave. I normally put the presenter in a small box to the left, but in this case I was far back enough to get a full body shot. I was going to c

  • Can't open already created project

    I am total Flex beginner and I have tried lots of ways how to open one existing Flex project, but it looks too complicated for me. I think problem is that I've got nonstandard project source. Please take a look at this source here picasa-image-expres

  • Problem with starting a sqlplus-process via java.lang.Process

    Hi, I want to start a sqlplus-Process from a java-application via java.lang.Process. Works great with XP. On a W2K-Machine, the process is started (I can see it in the Taskmanager), but it doesn't connect to the db - the OS-process hangs, also the ja

  • How to replace single backslash(\) to double backslash(\\)

    Hi I want to replace single backslash to double backslash from the string. Code is here String data="File name :\n.txt;File name:\t.txt";                data = data.replace("\\","\\\\"); System.out.println("-->" +data); i tried to this code but its n

  • Ora Golden gate: Extract Process error.

    As soon as i start the extract process i have the following error message pop up.. The procedure entry point longjmp could not be located in the dynamic link library orauts.dll. Can any1 help in dis?? Thanks in Advance.