Metadata for file

How to create a custom metadata for a file/document to be uploaded to KM and use just that metadata in search.
Kiran

Hi,
I defined some new metadata but it doesn't show up in the advanced TREX search. The properties are marked as indexable and the search index was reindexed.
Where should I enter this search query? In the "Filter by Custom Properties" in the Advanced Search screen or is there some dropdown list to choose from? When I enter the string in the "Filter by Custom Properties" field no results are found...
We didn't define a bundle file yet, the properties still use their technical key (e.g. company_division), could this be the problem?
I use the technical key in the "Filter by Custom Properties" or should I find the properties in the "Filter by Predefined Properties" dropdown box (if so, why don't they show up)?

Similar Messages

  • Use plug-in metadata for file renaming?

    Hi there,
    I'm writing a plug-in that adds a new export method to Lightroom and that defines some plug-in metadata fields.  I'd like the users to use these metadata fields to define their file renaming pattern in the export dialog. That means I'd like to create a token pattern from a plug-in metadata field.
    Is there a way to accomplish this?
    Regards,
    Robin

    I don't believe there's any way to incorporate plugin metadata fields directly into the builtin renaming patterns.   A couple of possibilities for alternate solutions:
    - Appropriate an existing metadata field that the renaming patterns know about (e.g. Description Writer) and have your plugin set that field with the desired custom metadata using photo:setRawMetadata(). 
    - Use or adapt the Exportant plugin, which provides greatly expanded file renaming possibilities.  The author Role Cole contributes here and is very helpful.

  • Help getting accurate metadata for files on network drives

    I need to read 1000's of very small files that are addressable through the file system API (File class). The location of the files may be a local drive or via a Windows shared drive. When the files are on a remote system, the files may actually be changed by a process running on that remote system. Much of the time, I can actually cache the information needed from the files, but if the file changes or is deleted then I have to detect the change and reload or delete from my in memory cache. Everything works great when on a local drive, but the File API doesn't work when on a Windows shared network drive.
    Basically, File.lastModified(), File.exists(), File.canRead(), File.isFile() etc, all return inaccurate results when the base path is on a mapped network drive, the files are changed by a remote process, and then are immediately accessed by my Java process.
    For example,
    <li> if the File existed
    <li> my program loaded and cached it
    <li> then a remote process changes the file
    <li> when I call file.lastModified() immediately following the change, it will report the old lastModified date.
    So, the net result is that I can't detect the change and end up serving up old data. This is even worse when the file is deleted, but Java File.exists() reports true. If I put in an artificial wait using Thread.sleep() in a while loop, then eventually the correct lastModified and exists will be reported. However, this doesn't help.
    I've tried a lot of different ways to try to get Java to report the correct info. So far, the only reliable way is to try to open the file and read the first byte, catching an exception if necessary. This seems to then force the file data to be updated and Java will then correctly report the lastModified date (or throw an exception if it no longer exists). However, attempting to open the IO to the file and reading a single byte pretty much invalidates any reason to cache the data in the files because most of the overhead is in opening and closing the streams.
    Is there any way to force Java or Windows to update the information about a file? It seems to me that this probably has to do with Windows caching shared drive file information and giving Java bad data, but it would be really nice to be able to force a refresh a file info.
    Example:
    //Assume that this is already behind code that did a file.exists() or file.canRead();
            long instanceFileModifyTime = fileObject.lastModified();
            MyObject cachedResult = INSTANCE_CACHE.get(cacheKey);
            if ((null != cachedResult) && (instanceFileModifyTime == cachedResult.getLoadTime())) {
                result = cachedResult;
            } else {
                //Open IO and load the data
            }

    I need to read 1000's of very small files that are addressable through the file system API (File class). The location of the files may be a local drive or via a Windows shared drive.This is a very bad idea.
    When the files are on a remote system, the files may actually be changed by a process running on that remote system. Much of the time, I can actually cache the information needed from the files, but if the file changes or is deleted then I have to detect the change and reload or delete from my in memory cache.That's also a very bad idea. Application-side caching is fraught with problems and this is one of them.
    Everything works great when on a local drive, but the File API doesn't work when on a Windows shared network drive.
    Basically, File.lastModified(), File.exists(), File.canRead(), File.isFile() etc, all return inaccurate results when the base path is on a mapped network drive, the files are changed by a remote process, and then are immediately accessed by my Java process. That will be the network file system. Nothing Java can do about it. Java neither knows nor cares. You are at the mercy of what the networked file system does. And that's why it's a very bad design. Networked file systems are for users, not for applications.
    So, the net result is that I can't detect the change and end up serving up old data.Only because you cached it, which is why that's a bad idea. If you hadn't cached it you would have had to read the file again and you would have got the current data. And it would have been slow, because networked file systems are slow, which is why that's a bad idea.
    Basically you are trying to use a remote file system as though it was a transactional database: it isn't, so you are trying to write more stuff in front of it to make it better; instead you are making it worse.
    What you should be doing is using a transactional database as a transactional database.

  • Read metadata for a file without Photoshop or Bridge

    Hi
    Suppose I have a file in desktop called "test.jpg". So I create this variable:
    var myFile = new File ("~/Desktop/test.jpg");
    This file has some keywords and instructions I need to read. And if the reading process finds the correct keyword, then it copies the file to the appropriated folder. Well, in resume, I could do everything directlly using #target estoolkit. I´d not like to involve (opening) Photoshop or Bridge.
    Is it possible to read the metadata of a file without targetting Bridge or Photoshop? Reading the reference I did not find any method or property for this, expect for the metadata library. BUT
    If I try to load the metadata library using:
    if (ExternalObject.AdobeXMPScript == undefined) {
            ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    then it sure will returns an error file or folder does not exists..
    Any idea how I could proceed to load this library and read the metadata of a file directlly?
    Thank you very much
    Best Regards
    Gustavo.

    Hi friends
    Thank you very much for your inputs. Muppet....what do you mean when you write The modified date gets bumped and can be a PITA? What means "PITA"?
    So, if it´s impossible to invoke [directly] the default library without targetting Bridge or Photoshop...I´ll simplify the things and use Bridge to house the script. No problem.
    So, look at what I´m doing:
    #target bridge
    if (ExternalObject.AdobeXMPScript == undefined) {
            ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    var test = new File ("~/Desktop/Test.jpg");
    var xmp = test.metadata;
    alert(xmp);
    ...But, the alert in Adobe Bridge is returning nothing (""). And I know this image exists and it has metadata.
    I remember to use metadata for reading the currently selected image in Content panel of Bridge (and it worked), but never tried direrctly declaring a file and reading this way.
    Am I missing anything obvious?
    Thank you very much
    Gustavo.
    Message was edited by: Gustavo Del Vechio

  • Batch Listing Metadata for Offline Files

    Hello all -
    I'm using Premiere CC 2014 on OSX. I'm trying to do a batch list export of the metadata for a few dozen offline clips in my project.
    Here are the details:
    I need the filenames and video ins and outs (NOT the media start and end) for all of my media files to put in a spreadsheet for archival purposes. I don't actually have access to the media itself - just to the project file.
    When I do a batch export by highlighting all of the files and going to File>Export>Batch List, the only three columns that export are the filename and the media start and end. I'm hoping to get an export with all of the columns of metadata so that I can narrow it down to just the data I need. Basically, this is the info that I want to be able to put in a spreadsheet:
    And this is what I'm getting when I do the batch list export:
    Does anyone know if this is possible?
    Thanks!

    Welcome to Apple Discussions:
    You might consider
    mdls
    in a terminal.
    If this is a server-specific issue, you might post in the server forum here:
    http://discussions.apple.com/category.jspa?categoryID=236

  • FatalInternalException The metadata for type "XYZ" did not come from a file,.....

    Hy !
    Did KODO have Problems if there is a mix of jdo metadata files in
    build.dir and in external jar's while registering a Schema with the
    MappingToolTask ?
    We extracting all *.jdo files from additional jars to a metadata dir and
    also copying all *.jdo files from the current build.dir, because KODO
    only supports a single Fileset for the Metadatafiles.
    The Ant Schema Task looks like:
    <target name="schema-create-kodo" depends="init-kodo-schematool">
         <echo message="Schema Create for KODO"/>
         <taskdef name="kodo-schematool"
              classname="kodo.jdbc.ant.MappingToolTask"
              classpathRef="jdo.schematool.class.path"/>
         <kodo-schematool action="refresh">
         <config propertiesFile="${zeus.persistence.jdo.properties}"/>
         <fileset dir="${jdo.metadata.dir}">
              <include name="**/*.jdo" />
         </fileset>
         <classpath>
              <pathelement path="${compile.project.class.path}"/>
         </classpath>
         </kodo-schematool>
    </target>
    jdo.schematool.class.path: is the Path for the KODO Schematool
    zeus.persistence.jdo.properties: ist the kodo.properties file
    jdo.metadata.dir: is the dir with all metadatafiles
    compile.project.class.path: is the classpath including a build.dir with
    class files + metadatfiles and differnet additional jar files containing
    also enhanced classes with corresponding metadata files
    and that fails with:
    [kodo-schematool] kodo.util.FatalInternalException: The metadata for
    type "class com.wuerth.phoenix.bcserver.base.versan
    t.PCapacityStruct" did not come from a file, and therefore we cannot
    determine where to place the corresponding mapping
    information. If you are using metadata from a jar or other resource,
    you should use one of the other available mapping
    factories.
    com.wuerth.phoenix.bcserver.base.versant.PCapacityStruct comes from a
    jar which also contains a metadatafile.
    We are wondering because if we exlicit give a different metadata file
    via a fileset the Schematool should ignore the other Metadata files
    inside the jar + build.dir !?
    mfg
    Christian

    The only Apple computers that have a Mag Safe connector are MacBook laptops (MacBook, MacBook Pro and MacBook Air).
    The Mac mini 2010 and 2011 models have a standard power connector, I believe it is called an IEC C7 connector. You can see a picture of the back of the Mac mini here http://www.apple.com/macmini/design.html
    Older Mac mini models prior to 2010 have a proprietary connector. While the following page is for a very old PowerPC Mac mini the connector is the same on early Intel Mac mini models as well. See http://support.apple.com/kb/HT3019

  • Selecting images for "Save metadata to file"

    To improve performance we're being "encouraged" to turn off "Automatically write changes". Which means I now have many images scattered throughout the catalog that have metadata changes of some sort on a regular basis. I agree that with the automatic write turned on, LR's performance is horrendous for any kind of metadata change, but turning it off means having to regularly and frequently manually save changes.
    Is there some mechanism that can be used to select ONLY those images that NEED to have the file updated rather than displaying all 36,000 images and starting the "Save metadata to file" and rendering LR unusable for hours? There HAS to be a better way than this blind, sledgehammer approach.

    >Is there some mechanism that can be used to select ONLY those images that NEED to have the file updated rather than displaying all... There HAS to be a better way than this blind, sledgehammer approach.
    Lightroom will only update those images that need to be updated. In other words, only those images were the metadata change date stored in the catalog is newer than the metadata change date stored in the file. The same criteria applies to the auto write to XMP feature. Furthermore, selecting a folder and choosing
    Save Metadata from the folder context menu is
    much faster than selecting the files and choosing the
    Save Metadata to File command found under the Metadata menu.
    It's also worth noting that any time you select multiple files Lightroom will spend time "accumulating" existing metadata. IMO, this is one of Lr's most painful and unnecessary performance drags. The more files you select the longer Lr will take to accumulate the metadata. So, you really should avoid selecting large numbers of files. If you can't avoid making such a selection then it's best that you deselect them immediately after issuing the Save/Read metadata command. Doing so will save yourself a
    lot of time.

  • Editing SharePoint metadata for Visio files

    When I am editing Visio files metadata in SharePoint 2007, it opens a web dialog page to enter the metadata for the SharePoint library, but, when a column field is type: choice-drop down menu. It doesn't take current metadata for those fields, so, the current
    metadata has to be chosen again. Is there any technical document that explains this?
    It also takes too much time to open Visio templates in SharePoint, it doesn't happen with Visio standard files, the solution was to uncheck automatically detect settings, but is there any other solution?
    I am using Windows 7, Office 2010, Visio 2010 and Internet Explorer v8.

    Hi Javi, 
    thank for the reply, 
    after some discussion, trial and research, seems there is a process that is missed.
    as i know, when we check out the document the metadata itself cannot be edited. so then while we already saved the metadata, as by design the web file properties will be out and the metadata needs to be re-input again, as they will not be passed on check
    in process.
    so, this behavior is most likely by design, if you need to customize this then i think you need to open a ticket to us.
    "By default you cannot edit MetaData in case the document is checked-out - which is by design and acceptable. But if you open up a checked-out document from a WSS doclib and edit it in Word and click File > Save As - in order to save the document back
    into WSS - you are prompted for typing in MetaData (Web File Properties). In case you change or fill out some of them and in order to see them reflected on the WSS page you have to check-in the document again - which you will be ask for to do while closing
    the office application btw.
    If you keep the document checked-out the metadata are not reflected on the WSS page and are hidden (stored somewhere...) to the user. Users are confused because they cannot see the Metadata they typed in until they check-in the document. This wasn´t necassary
    with SPS2001 where we could see the changes we made to metadata immediately on the dashboard. And as Joerg also mentioned bad user experience - we create unnecessary versions as we have to check-in the document which creates an additional version.
    Solution here would be: either to reflect the changed MetaData immediately without the need to check-in the document or to avoid the Web File Properties Dialog box while performing a Save As of a checked-out document. "
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Unable to edit metadata for some files, Bridge CS6

    I am editing metadata for .wav files, and somehow a few of them have become locked for editing. I have checked the properties for these files and still have full permissions for all users.
    As you can see in the screen capture below, the pencil icons you click to edit the metadata are gone and an error message comes up. Thanks for any help you can give!

    Wow, I just answered my own question...
    After an hour trying to figure this out, I decided to just go ahead and edit the images, but "Edit in Camera Raw" was not an option.  So, I went to Tools \ Cache \ Purge Cache for Folder "xxx"
    Problem solved.

  • Cannot publish Flash Updates Verification of file signature failed for file SCUP 2011, SCCM 2012 R2 and WSUS all on same Windows Server 2012 machine

    I am attempting to distribute Adobe Flash updates using SCUP 2011, SCCM 2012 R2, WSUS ver4 and Windows Server 2012.  Everything installs without error.  I have acquired a certificate for SCUP signing from the internal Enterprise CA.  I have
    verified the signing certificate has a 1024 bit key.  I have imported the certificate into the server's Trusted Publishers and Trusted Root CA stores for the computer.  When I attempt to publish a Flash update with Full content I receive the following
    error:
    2015-02-13 23:00:48.724 UTC Error Scup2011.21 Publisher.PublishPackage PublishPackage(): Operation Failed with Error: Verification of file signature failed for file:
    \\SCCM\UpdateServicesPackages\a2aa8ca4-3b96-4ad2-a508-67a6acbd78a4\3f82680a-9028-4048-ba53-85a4b4acfa12_1.cab
    I have redone the certificates three times with no luck.  I can import metadata, but any attempt to download content results in the verification error.
    TIA

    Hi Joyce,
    This is embarrassing, I used that very post as my guide when deploying my certificate templates, but failed to change the bit length to 2048.  Thank you for being my second set of eyes.
    I changed my certificate key bit length to 2048, deleted the old cert from all certificate stores, acquired the a new signing cert, verified the key length was 2048, exported the new cert to pfx and cer files, imported into my Trusted publishers
    and Trusted Root Authorities stores, reconfigured SCUP to use the new pfx file, rebooted the server and attempted to re-publish the updates with the following results:
    2015-02-16 13:35:44.006 UTC Error Scup2011.4 Publisher.PublishPackage PublishPackage(): Operation Failed with Error: Verification of file signature failed for file:
    \\SCCM\UpdateServicesPackages\a2aa8ca4-3b96-4ad2-a508-67a6acbd78a4\3f82680a-9028-4048-ba53-85a4b4acfa12_1.cab.
    Is there a chance this content was already created and signed with the old cert, so installing the new cert has no effect?  In ConfigMgr software updates I see 4 Flash updates, all marked Metadata Only (because they were originally published as "Automatic." 
    No Flash updates in the ConfigMgr console are marked as downloaded.  I can't find any documentation on how the process of using SCUP for downloading content for an update marked Metadata Only actually works. 
    Comments and suggestions welcome.

  • BCExeption: The IDOC metadata for null is not available in SID

    <h3>Hello Guys,</h3>
    we need some information about the error message:
    com.wm.pkg.sap.BCExeption: The IDOC metadata for null is not available in <SID>
    We use a Business Connector 4.8 and the backend is an ECC 6.0, we have an inbound xml scenario with FTP.
    We pick up the ORDRSP from the vendors ftp-server and we would like to drop it to our backend system.
    We can read the xml file into a string, but not send to the backend system, we use following steps:
    - bytesToString
    - stringToDocument
    - documentToRecord
    - recordToIDOC
    - lockSession
    - createTID
    so far works perfekt
    - sendIDoc
    - releaseSession
    On the step "sendIDoc" we see the described error message, but what is the message from the message?
    Any Ideas?
    Thank you and regards,
    Michael

    Hello Michal,
    thank you for your quick answer!
    In my opinion, i don't need any input for this service, because we pick up all data from the vendors ftp - server in a definied time interval.
    All needed fields are available in the xml file. In the result tab is the IDocList filled correct, but no sending to the backend system because the error is displayed.
    Is it a problem with my concept?
    Regards,
    Michael

  • Exception on creation of service metadata for WSDL URL

    Hi expert,
    im consuming a wsdl file in my wdj dc , and on trying to execute im getting exception as follows .
    WsdlApp--com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL 'E:\***********\MIOS_*********_********.wsdl' and service factory configuration 'null'
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:422)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:372)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:342)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:326)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo$Cache.getModelInfo(WSModelInfo.java:199)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:1035)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:248)
    at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(WSTypedModel.java:41)
    at com.*****.wsdlwdj.batch.****************Batch.<init>(******************Batch.java:51)
    at com.*****.wsdlwdj.comp.*************Component.test**********Auth(************Component.java:266)
    at com.*****.wsdlwdj.comp.wdp.Internal****Component.test****Auth(Internal********Component.java:331)
    at com.*****.wsdlwdj.comp.WsdlView.wdDoInit(WsdlView.java:97)
    at com.*****.wsdlwdj.comp.wdp.InternalWsdlView.wdDoInit(InternalWsdlView.java:129)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
    at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:445)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.doOpen(WebDynproWindow.java:295)
    at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.show(ApplicationWindow.java:182)
    at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.open(ApplicationWindow.java:177)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:364)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:783)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:303)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:185)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.setSpnegoParameter(RequestManager.java:963)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:157)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1064)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
    at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:158)
    at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:56)
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:92)
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:114)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:420)
    ... 55 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Problem with WSDL file parsing. See nested message.
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:182)
    at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:155)
    ... 59 more
    Caused by: com.sap.engine.lib.xml.util.NestedException: IO Exception occurred while parsing file:/usr/sap/*****/JC**/j2ee/cluster/server1/E:/****/FolderName/WSDLNAME.wsdl (No such file or directory) -> java.io.FileNotFoundException: /usr/sap/***/JC**/j2ee/cluster/server1/E:/WSDL FILE/FolderName/wsdlname.wsdl (No such file or directory)
    at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1039)
    at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadWSDLDocument(WSDLDOMLoader.java:1126)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:178)
    ... 60 more
    Caused by: java.io.FileNotFoundException: /usr/sap/***/JC**/j2ee/cluster/server1/E:/WSDL FILE/FolderName/wsdlname.wsdl (No such file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:69)
    at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:156)
    at java.net.URL.openStream(URL.java:913)
    at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:201)
    at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:263)
    at com.sap.engine.lib.xml.parser.Parser.parse_DTDValidation(Parser.java:260)
    at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:271)
    at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
    at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
    at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1023)
    ... 62 more
    Regards
    Govardan

    im using 7.01 and here we have options to use No Logical Destinations , but now i created destinations at visual admin at Server>Services>Web Service Security>WebService Clients>Sap.com-->Dynamic WS Proxies., as WS_METADATA_DEST and WS_MODELDATA_DEST     and have filled in other details too like url  , user name , password etc
    now im getting another error like as shown below please help
    com.****.wsdlwdj.applicaiton.WsdlApp
    [EXCEPTION]
    com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WS metadata destination 'WS_METADATA_DEST' and WS interface '{http://****.com/****}MIOS_Matrix***********'. One possible reason is that the metadata destination 'WS_METADATA_DEST' has not been properly configured; check configuration.
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:440)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:372)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:342)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:326)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo$Cache.getModelInfo(WSModelInfo.java:199)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:1035)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:248)
    at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(WSTypedModel.java:41)
    at com.****.wsdlwdj.model.test.TestModel.<init>(TestModel.java:51)
    at com.****.wsdlwdj.comp.VcWsdlComponent.matrixAuthExecut(VcWsdlComponent.java:448)
    at com.****.wsdlwdj.comp.wdp.InternalVcWsdlComponent.matrixAuthExecut(InternalVcWsdlComponent.java:280)
    at com.****.wsdlwdj.comp.VcWsdlComponent.wdDoInit(VcWsdlComponent.java:132)
    at com.****.wsdlwdj.comp.wdp.InternalVcWsdlComponent.wdDoInit(InternalVcWsdlComponent.java:225)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:783)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:303)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:185)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.setSpnegoParameter(RequestManager.java:963)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:157)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1064)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sap.engine.services.webservices.espbase.discovery.BaseIOException: Invalid Response Code 500 while accessing URL: http://devpid:8000/sap/xi/engine?type=entry&version=3.0&Sender.Service=BS_****_PORTAL&Interface=http%3A%2F%2F****.com%2Fbank_report%5EMIOS_Authorizers_List_Portal&sap-user=xi_portal&sap-password=****1234. Response Message: Empty HTTP request received. Content Type: text/xml. Body Content: <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP:Header>
    </SOAP:Header>
    <SOAP:Body>
    <SOAP:Fault xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"><faultcode>SOAP:Client</faultcode><faultstring>Empty HTTP request received</faultstring><faultactor>http://sap.com/xi/XI/Message/30</faultactor><detail><SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIProtocol</SAP:Category><SAP:Code area="MESSAGE">EMPTY_HTTP_REQUEST_RECEIVED</SAP:Code><SAP:P1/><SAP:P2/><SAP:P3/><SAP:P4/><SAP:AdditionalText/><SAP:ApplicationFaultMessage namespace=""/><SAP:Stack>Empty HTTP query received; message processing not possible
    </SAP:Stack></SAP:Error></detail></SOAP:Fault>
    </SOAP:Body>
    </SOAP:Envelope>
    at com.sap.engine.services.webservices.server.management.discovery.DestinationsResolver.resolveURL(DestinationsResolver.java:246)
    at com.sap.engine.services.webservices.server.management.discovery.DestinationsResolver.resolveEntity(DestinationsResolver.java:130)
    at com.sap.engine.services.webservices.espbase.query.WSQueryImpl.initialize(WSQueryImpl.java:184)
    at com.sap.engine.services.webservices.espbase.query.WSQueryImpl.findWSInterfaces(WSQueryImpl.java:151)
    at com.sap.engine.services.webservices.server.management.discovery.ServiceDiscoveryImpl.getWSDLUrl(ServiceDiscoveryImpl.java:71)
    at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:134)
    at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:429)
    ... 49 more

  • Exception on creation of service metadata for WS metadata destination

    Hi,
    I have imported a webservice from the backend to the model in webdynpro and i have also configured the destination for the metadata in the CE server but when i execute it its giving me  error as
    Exceptioncom.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WS metadata destination FLIGHT_GETLIST  and WS interface ZBapi_Flight_Getlist. One possible reason is that the metadata destination FLIGHT_GETLIST  has not been properly configured; check configuration.
    and during deployment i am getting the following warning
    local/SampleFlightList : References Test: There are no matching deploy time references (described in META-INF/SAP_MANIFEST.MF) for the following runtime references [sap.com/tcwdapi, sap.com/tcwdwslib~api] (described in the META-INF/application-j2ee-engine.xml)., file: SampleFlightList.ear, column 0, line 0, severity: warning
    can any one please help me to solve this issue.
    Thanks&Regards,
    Hamsa Shree

    Hi Hamsa,
    Did you also create and configure an "Execution Destination"?
    You can test the Metadata destination configuration on Web Service Navigator.
    On the web service navigator (http://hostname:portnumber/wsnavigator) search in the metatda destination you have created for the service you imported in web dynpro as a model. If you can find it there test it on the ws navigator.
    Best regards,
    Yasar

  • Exporting Metadate for multiple images

    Hi, I can't find a way of easily exporting the metadata for a number of images into a csv file. The "Export Metadata" function in Aperture 1.5 only exports the file name and the keywords, with a number of blank columns, and there are no column headings for useful information like shutter speed and aperture!
    I've looked at tools like "exiftool" but they are quite difficult to run and seem to only do one image at a time. I also tried using Automator to extract metadata, but couldn't make it work
    It would be very useful if I could (a) enter comments in a metadata field and (b) extract technical metadata to a csv file for a number of images
    any suggestions welcomed!
    Richard

    You should be able to do it using AppleScript. It is not straightforward, unfortunately, but the information seems to be there.
    http://homepage.mac.com/jlarson7/metadata/index.html

  • Context right-click to export XMP metadata to file

    I'd like to have the right click context menu include the option to "Export XMP Metadata to Files" in the Library grid or filmstrip. Currently an annoying trip to the Menu bar is required to invoke this function.

    It was there for B4.1. The Contextual Menus are getting crowded, so maybe that's why they took it out.
    I like lots of Contexual Menus,too. But they get a little useless if too crowded, so maybe they need ot be user configuarable for what one uses the most.
    Maybe by V1.5?
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.8 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

Maybe you are looking for

  • Error while Deploying OEDQ with a deployement plan on weblogic

    Hi I am trying to install OEDQ on a linux machine.I followed the below link [http://www.oracle.com/webfolder/technetwork/data-quality/edqdocs/oedq_advanced_install.pdf] The documentation suggests to use a deployement plan.On doing so i get the follow

  • Llvm(?) error while compiling to swc

    I'm trying to build a project using OpenCV with alchemy (that's a tough topic, I know). My idea was to isolate the parts I need from OpenCV (v.2.2), comile them with alchemy g++ and link with my code statically. So here's what I do: I have several pa

  • Stop auto updating of extension

    I use the extension 'Tab Mix Plus' When they went to version 4.0.X , one of the functions was discontinued. I contacted them and they say there will be no change. I load an earlier version, but periodically it auto updates. I can reload it but this r

  • 3 displays on Macmini5,1

    I have a model A1347 Mini Mini Macmini5,1 (2.3 GHz)  AMD Radeon HD 6630M Would like to have 3 displays and then later on add one more Using a 2 display setup now using the Thunderbolt digital video output and HDMI port Can anyone provide info on how

  • Limiting the Infoview export. CS 2008

    Is there any way to limit the export options in infoview? Restricting viewers to only export to PDF, Excel and CSV? I realise that you can block exporting completely from the security settings, but is there any way to just limit the file types that c