DTR client disappeared. Need help!

Hello!
We had a problem described in Can't connect to DTR. NWDS tries to connect to wrong server We resolved it by running NWDS under another Windows user. But when we tried to work with new track (ESS) we've got another issue: our DTR client for new track has been created successfully but disappeared later! Since DTR client dsappeared we cannot check-in our modifications.
I found these records in logs:
!MESSAGE Jun 4, 2009 2:52:11 PM       com.sap.ide.eclipse.component.devconf.DevConfManager     [Thread[main,5,main]] Error: Development Configuration Instantiation failed: C:\Documents and Settings\Администратор\.dtc\1\: DTR client definition not found for this configuration. VFS client-def name: BEP_SANDBOX_D
!STACK 0
com.sap.tc.devconf.InvalidDefinitionException: DTR client definition not found for this configuration. VFS client-def name: 'BEP_SANDBOX_D'
     at com.sap.tc.devconf.DevelopmentConfigurationFactory.upgradeLocalConfigurationMode(DevelopmentConfigurationFactory.java:1534)
     at com.sap.tc.devconf.DevelopmentConfigurationFactory.reInitializeConfiguration(DevelopmentConfigurationFactory.java:565)
     at com.sap.tc.devconf.DevelopmentConfigurationFactory._getDevelopmentConfigurationInstance(DevelopmentConfigurationFactory.java:418)
     at com.sap.tc.devconf.DevelopmentConfigurationFactory.getDevelopmentConfigurationInstance(DevelopmentConfigurationFactory.java:197)
     at com.sap.ide.eclipse.component.devconf.DevConfManager.getInstalledDevConfs(DevConfManager.java:411)...
Why DTR client disappeared? How to resolve it?
Please help.
Our NWDS is 7.0.14
regards, Lev

Hello,
Since you read my thread, you already know sometimes the DTR Client configuration is not working really well.
I don't know if re-starting the NWDS could work.
Otherwise, your colleague has create an activity and check-in it, so if you want to activate pending activities and have administrator permissions, try:
1. Log on http://<server-di>:<port-di>/devinf/main as user administrator.
2. Go to "Component Build Service"
3. On the top select 'Activities'
4. Search on the right Buildspace.
5. There are different Tabs, select "Pending Activities" and filter if needed.
6. If there, you see the activities, you can select and 'activate' or 'activate even if build fails' it.
7. You will upload + activate the source code of your colleague and will be able to get it when you sinchronize the DC again from another NWDS.
The last solution, would be to sinchronize the DC into another user laptop. Then override the local code of your colleague in this new DC. New activity will be ask for changes. Apply changes, check-in and activate.
Hope it helps.
Regards,
David.
Edited by: David Ruiz de Azúa on Jun 10, 2009 5:32 PM

Similar Messages

  • HT1657 My movie has disappeared need help finding it

    My movie has disappeared need help finding it

    I downloaded it on the iTunes store on my computer.
    I seen it downloading on iTunes under the rentals folder. Once the download was complete and it started processing iTunes froze for a bit and the movie pulled a Harry Houdini. I checked under purchased, movies, and looked for the rentals folder and got nothin'.

  • Dynamic Client Exception - Need help

    Hi,
    Need help.......
    I am getting following exception, when I run
    my dynamic client.
    Attached below is my code as well as WSDL.
    Thanks in advance..
    Regards
    -Shakeel
    [java] javax.xml.rpc.JAXRPCException: failed to invoke operation 'Print' du
    e to an error in the soap layer (SAAJ); nested exception is: Message[ failed to
    serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.Serial
    izationException: mapping lookup failure. class=interface javax.xml.soap.SOAPEle
    ment class context=TypedClassContext{schemaType=['http://learn.technologies.com/
    WS']:PrintRequest}]StackTrace[
    [java] javax.xml.soap.SOAPException: failed to serialize interface javax.x
    ml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping l
    ookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedCla
    ssContext{schemaType=['http://learn.technologies.com/WS']:PrintRequest}
    [java] at weblogic.webservice.core.DefaultPart.invokeSerializer(Default
    Part.java:328)
    CODE
    // Setup the global SAAJ message factory
    System.setProperty("javax.xml.soap.MessageFactory", "weblogic.webservice.core.soap.MessageFactoryImpl");
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory", "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    // define qnames
    String targetNamespace = "http://learn.technologies.com/WS";
    QName serviceName = new QName(targetNamespace, "PersonalDataService");
    QName portName = new QName(targetNamespace, "PersonalDataInterface");
    QName operationName = new QName(targetNamespace, "Print");
    URL wsdlLocation = new URL("http://localhost:7001/simpleexample/PersonalDataInterface?WSDL");
    // create service
    Service service = serviceFactory.createService(wsdlLocation, serviceName);
    // create call
    Call call = service.createCall(portName, operationName);
    WSDL
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://learn.technologies.com/WS"
    targetNamespace="http://learn.technologies.com/WS">
    <types>
    <schema targetNamespace="http://learn.technologies.com/WS"
    xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <element name="PrintRequest">
    <complexType>
    <sequence>
    <element name="firstName" type="string"/>
    <element name="age" type="int"/>
    <element name="salary" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="PrintResponse">
    <complexType>
    <sequence/>
    </complexType>
    </element>
    <element name="QueryRequest">
    <complexType>
    <sequence>
    <element name="id" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="QueryResponse">
    <complexType>
    <sequence>
    <element name="return" type="tns:ArrayOfPersonalData"/>
    </sequence>
    </complexType>
    </element>
    <complexType name="PersonalData">
              <sequence>
              <element name="name" type="string"/>
              <element name="age" type="int"/>
              <element name="salary" type="double"/>
              </sequence>
    </complexType>
    <complexType name="ArrayOfPersonalData">
              <sequence>
              <element maxOccurs="unbounded" minOccurs="0" name="Item" type="tns:PersonalData"/>
              </sequence>
    </complexType>
    </schema>
    </types>
         <message name="PrintRequestMessage">
         <part name="PrintRequest" element="tns:PrintRequest"/>
         </message>
         <message name="PrintResponseMessage">
         <part name="PrintResponse" element="tns:PrintResponse"/>
         </message>
         <message name="QueryRequestMessage">
         <part name="QueryRequest" element="tns:QueryRequest"/>
         </message>
         <message name="QueryResponseMessage">
         <part name="QueryResponse" element="tns:QueryResponse"/>
         </message>
         <portType name="PersonalDataInterface">
              <operation name="Print">
                   <input name="PrintRequestMessage" message="tns:PrintRequestMessage"/>
              <output name="PrintResponseMessage" message="tns:PrintResponseMessage"/>
              </operation>
              <operation name="Query">
                   <input name="QueryRequestMessage" message="tns:QueryRequestMessage"/>
                   <output name="QueryResponseMessage" message="tns:QueryResponseMessage"/>
              </operation>
         </portType>
         <binding name="PersonalDataIntfBinding" type="tns:PersonalDataInterface">
         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
         <operation name="Print">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         <operation name="Query">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         </binding>
         <service name="PersonalDataService">
         <port name="PersonalDataInterface" binding="tns:PersonalDataIntfBinding">
              <soap:address location="http://localhost:7001/simpleexample/PersonalDataInterface"/>
         </port>
         </service>
    </definitions>

    Exception is coming on following line (forgot
    to paste in first post)
         Object result = call.invoke(new Object[] { "Shakeel", new Integer (30), new Double(2000) });

  • Implementing web service Client? need help

    hi,
    i need to develop a funciton in java that takes WSDL address as a input. and using the web service address, start the web service programmatically from that function. the web service could be any.
    i need help and suggestion what to do in the area, how can i start this, as i am a new bie.
    thanks
    Farurkh

    I got the following error.
    But If I call it from a jsp page or a servlet. Nothing happend, Transaction is successful.
    java.lang.NullPointerException
         at org.apache.commons.discovery.resource.ClassLoaders.getAppLoaders(ClassLoaders.java:206)
         at org.apache.axis.AxisProperties.getClassLoaders(AxisProperties.java:118)
         at org.apache.axis.AxisProperties.getNameDiscoverer(AxisProperties.java:105)
         at org.apache.axis.AxisProperties.getResourceClassIterator(AxisProperties.java:112)
         at org.apache.axis.configuration.EngineConfigurationFactoryFinder$1.run(EngineConfigurationFactoryFinder.java:116)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:113)
         at org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:160)
         at org.apache.axis.client.Service.getEngineConfiguration(Service.java:813)
         at org.apache.axis.client.Service.getAxisClient(Service.java:104)
         at org.apache.axis.client.Service.<init>(Service.java:113)
         at org.tempuri.wsdl.EFSnet2Locator.<init>(EFSnet2Locator.java:10)
         at com.ipharmacy.payment.Payment.main(Payment.java:12)

  • Contacts have disappeared need help...newbie here

    I need tech support for synching my Blackberry to my desktop on my Mac.
    Here's what happened:
    I plugged in my phone to my Mac.
    My phone gave me an option: I chose to NOT turn Mass Storage On.
    I Synched my Contacts and Calendar.
    Then I clicked "Back Up"
    I disconnected when complete.
    What happened was that all the contacts that I had in my phone since the last time I synched it with my Mac disappeared.  My calendar stayed current.
    What do I do?  Did I lose all the contacts that I had in my phone over the last 3 months?
    Concerned,
    John

    Have you installed the Application Manager?
    Apart from that I believe this is one for this specialized forum (where you may be able find the answer from previous threads),
    http://forums.adobe.com/community/download_install_setup
    or for Customer Care (tick I Still Need Help and hope for an agent available for a chat),
    http://helpx.adobe.com/contact.html?product=illustrator&topic=downloading-installing-and-s etting-up

  • Adobe Reader in browser window disappearing-need help

    I have created a word document (WD1) containing links to other word documents (WD2, WD3, etc). I then turned WD1 into a .pdf file. I then upload this .pdf file to a web page. I go to this webpage and click the link to open the WD1.pdf file. When I click the WD1.pdf link on the webpage, a new browser window opens with Adobe reader in it displaying WD1.pdf. so far so good. Now when I click on the links to WD2 or WD3, these links open in Word and the correct files display, but the browser window containing WD1.pdf file disappears (thats the best way to describe it) and the first webpage is still open.
    What I am trying to achieve is to have the second browser window stay open so the trainees using this web page will be able to click on the other references on the .pdf to get to all of the links without having to re-open it each time.
    I have Researched in help and web forums, the only reference I can find is to uncheck the box next to Open cross-documents in the same window in preferences in Adobe. Which I have done and restarted my computer. I also noticed a preference show each document in its own window which is checked.
    Here is the other rub, I have a desktop computer (OS is XP) and a laptop (OS is vista). I have Adobe 8.1.2 installed on both. The laptop with vista works the way I would like. But the desktop computer with XP does not. I did have Adobe 7.0.9 on the desktop but when it did do what I wanted I upgraded to 8.1.2 and it still isnt working. The real problem is that most of the trainees will be using their work computers with XP. I dont know even know if there is any significance in this observation or not. But thought I would throw it out there.
    Does anyone have any suggestions of things I could try or know of any solutions? Please help.

    There is a technology on Labs called BrowserLab that is designed to assist with browser compatibility. Is this question regarding BrowserLab or is the question more general?

  • Shared computer has disappeared - Need help !!!

    i have an i*Mac 2.16ghz* (leopard 10.5.1) & a *macbook pro 2.4gh*z (leopard 10.5.1)
    when i click on "shared" from my iMac to connect to my MBP i get _"connection failed"_
    when i do the same from my MBP to connect to iMac i connect without a problem.
    if i click "connect as" or "shared screen" ,on either computer, i can input user name and password and connect fine.
    *some background info*
    today for some reason leopard decided to make my HD disappear from the desktop and finder window on my iMac.
    so i done some searching and rang this script:
    +tell application "System Events"+
    + set visible of disk "NameofDisk" to true+
    +end tell+
    +tell application "Finder" to quit+
    +delay 1+
    +tell application "Finder" to launch+
    this worked and i got my HD showing back up again.
    i dont know if this is related to the disappearing shared device.
    i have went to preferences and unticked and reticked the file sharing and screen sharing and restarted both computer and still nothing.
    im at a loss.

    As you have found out (the hard way) you can't resize a Boot Camp partition safely (one exception, CampTune can)
    Backing up your Windows installation may be possible using WinClone, or you could try to image the entire drive using Disk Utility.
    You are likely to have to erase the entire drive and reinstall though.
    There is a very knowledgable poster on this site, Christopher Murphy. Look for one of his threads and post a request in it for his help, you may be able to get out of this without reinstalling anything with his help.

  • Bootcamp Partition has Disappeared, need help.

    Alright, I'm out of my league here and I need some help. I've been using bootcamp for quite some time now, and I wanted to increase the partition size (**** steam sales).
    I don't remember the exact steps I took, but I'll try my best. I decreased the Mac partition in disk utility. While I was doing this, I noticed that there was no "BOOTAMP" partition on the left side, instead there was a "disk0s4". I then rebooted into windows (refit) to find a black screen that gave me an error, saying Missing bootable device, press any key to continue. I restarted, and did the refit table sync thing. It synced the tables, so I rebooted again into windows. I now get a Missing Operating Systems error. I restarted again and went into disk utility, and tried to verify and repair disk0s4, but I got an error for both saying "Invalid BS_jmpBoot in boot block: f682fc". When I went into Startup disk, the bootcap partition doesn't show up. When I restart and hold the option key, the Windows partition shows up but doesn't load into. I backed up the mac partition with Time Machine, but is there anyway I can back up my now non-existent bootcamp partition? Or is it just long gone? Any help would be greatly appreciated.
    If you need more information or pictures just tell me and I will try my best.
    Also, the disk0s4 partition is smaller than what it used to be. It may be what I originally had it as before I enlarged the partition.

    As you have found out (the hard way) you can't resize a Boot Camp partition safely (one exception, CampTune can)
    Backing up your Windows installation may be possible using WinClone, or you could try to image the entire drive using Disk Utility.
    You are likely to have to erase the entire drive and reinstall though.
    There is a very knowledgable poster on this site, Christopher Murphy. Look for one of his threads and post a request in it for his help, you may be able to get out of this without reinstalling anything with his help.

  • Macbook pro retina airplay disappearing, need help

    I just bought a macbook pro retina and an apple tv. So, this all week i was doing some search and reading forums but i`ve never seen anybody have this problem yet. I can use my apple tv with my Ipad and Iphone perfectly, but my macbook pro refuses to work. My airplay sign in the right-top side of the screen is keep disappearing and i can`t see my apple tv there. They are both connected to same Wi-Fi and i restarted both, I reset all my settings on both, vs.. Nothing changed so far. My macbook pro and apple tv is up-to-date too. So is there anybody can help me ?

    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • Tool Bar at top with file, edit and enhance options disappeared - need help now.

    I cannot access my catalogs for reach my photographs.  Have to get them for  speech this coming Monday for a photography society.  Please Help !!

    Thanks for the response.  I have already solved the problem - the screen had to be pulled down to show what was underneath.  Thanks for writing.  Have a good day.
    Frank Sharp

  • My new business bookmarks in Safari disappeared - need help

    I was organizing an extensive list of bookmarks into subfolders and they all disappeared. I am totally you know what if I can't recover them.  Any tips on how to restore them? I am not a savvy techie.  Thanks.

    I now realise that there is no option to add bookmarks in my safari! Seems I have look for a nuce Android tomorrow! Sorry about the whining but I get so frustrated!

  • My Airport Extreme "disappeared"  Need help

    I have a MacBook Pro which has a built in Airport Extreme. I never used it because I have an existing external one that I've been using and is hooked up to a phone line.
    Today, I went to my Airport Utility and now the computer does not see its own built in Airport Express! Can someone tell me what happened? I'm afraid someone nearby saw it, is tapping off of it and encrypted it. Yes? No?
    Anyway, how do I get it back?

    If you are talking about your built in airport card, all you must do is Turn Airport ON. Go into the Network Preferences pane. There is a button to turn the Airport ON..(and a checkbox to put it in your menu bar so you can access it without going into preferences again..)

  • Why do we need to create DTR client

    Can any one give me some info why DTR client are needed when working with JDI. Because, In NWDI we dont need them...But, now I am workign on older version JDI.. So, can anyone let me know.

    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/83/74c4ce0ed93b4abc6144aafaa1130f/content.htm">This</a> might give you some help you require.
    Regards,
    Shubhadip

  • TS3899 my mail icon on my iphone 4 has disappeared. anyone help with its recovery?

    My email icon on faceplate has disappeared. need help to find it.

    You can't delete it.  Look on all your screens and inside all your folders.  If you still can't find it go to Settings>General>Reset>Reset Home Screen Layout.  This will restore the home screen to its original configuration but may move other apps around to do so.

  • Automatic DTR Client creation...Please help

    Hello All,
    Am working on NW2004s. While working on NWDI I notifced that a DTR client automatically gets created having name kinda similar to the tracks that are imported.
    Example:
    I have a track named APPL_dev. The automatic DTR client created is named as EPT_APPL_D where,
    EPT is SID
    Question
    1. Is this behavior normal? If yes, does it mean that I should access a track using its associated client?
    2. Does '<b>D</b>' stand for development...<i>seems like but I dont wanna assume</i>.....
    Please help me understand.
    Awaiting Reply.
    Thanks & Warm Regards,
    Ritu

    Hi Ritu,
    in addition to Sidharts reply:
    EPT should be the CMS domain, not necessarily a SID (unless they are equal).
    1. yes, and if you should access the track using the client depends on what you want to do. For normal development you should work in the Development Configuration perspective and the perspective that is relevant for your project types. There  you would see the "APPL_dev" configuration, not the client itself.
    If you need to do DTR operations then you should use that client, although for some operations on DTR a "general" client (not specific to a configuration) is more useful. (E.g. if you want to delete DCs).
    2. Also yes. If you import the "APPL_cons" configuration you should get an EPT_APPL_C client.
    Regards,
    Marc

Maybe you are looking for

  • Can not open .sit files any more

    I get a warning that it is not a compressed file. I downloaded a new copy of Stuffit 11 and it dosen't work either. The files show as an icon of a little brown suitcase ant the suffix is .sit. If you look under get info it says that it is a stuffit a

  • Can't open iTunes or reinstall because of corrupt file ituneslocalized.qtr

    All of a sudden I am having issues with iTunes. I couldn't open up the program. I would get an error message while it was starting to load. It says "error writing to c:\ProgramFiles\iTunes\iTunesResources\nb.lproj\iTunesLocalized.qtr Verify that you

  • Album sorting not being saved

    I am using Photoshop Elements 8 and I successfully created and saved 3 albums and copied them to my IPAD using ITUNES. They were in the correct sorted sequence. I then went back and tried to make a best of show album with my 3 star pictures and every

  • Problems mounting USB drives

    I am having some problems getting USB flash drives to (auto) mount on my system. In the past, when I plugged in the device (a simple USB flash drive), it showed up in Thunar and I could click on it to mount it. Now nothing shows up in thunar when I p

  • Hyperion Upgrade 11.1.2.0 to 11.1.2.2 _ User ID

    Hi, We are planning an upgrade of Hyperion env from 11.1.2.0 to 11.1.2.2. The Hyp V11.1.2.0 install is done by a consultant User ID.........Now that user id is no longer used and the consultant is not working with us..... For the upgrade do we need t