System.IO.FileNotFoundException: The Web application at ..not found - when getting document versions in a doc lib

i have created a    asmx file using vs 2012 4.5 framework, and published to my d:\  drive  and mapped to a  iis  web site
but when i trued to consume this from a another web appln, it throws me the below error:
 System.IO.FileNotFoundException: The Web application at http://srvr:4000/sites/mysitecollec could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a
new request URL mapping to the intended application.
   at Microsoft.SharePoint.SPSite.LookupSiteInfo(SPFarm farm, Boolean contextSite, Boolean swapSchemeForPathBasedSites, Uri& requestUri, Boolean& lookupRequiredContext, Guid& applicationId, Guid& contentDatabaseId, Guid& siteId,
Guid& siteSubscriptionId, SPUrlZone& zone, String& serverRelativeUrl, Boolean& hostHeaderIsSiteName, Boolean& appWebRequest, String& appHostHeaderRedirectDomain, String& appSiteDomainPrefix, String& subscriptionName, String&
appSiteDomainId, Uri& primaryUri)
   at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)
   at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)
   at Microsoft.SharePoint.SPSite..ctor(String requestUrl)
   at FetchlatestDocDet6Jan.FetchLatestDoc6Jan.<>c__DisplayClass1.<FetchLatestDocVer>b__0() in d:\PublishWSFetchLatestDoc6Jan.asmx.cs:line 41
   at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()
   at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)
   at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)
   at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated secureCode)
   at FetchlatestDocDet6Jan.FetchLatestDoc6Jan.FetchLatestDocVer(String fileName, String processID, String subProcessId) in d:\PublishedWS\FetchLatestDoc6Jan.asmx.cs:line 35
[WebMethod]
        public DataTable FetchLatestDocVer(string fileName,string processID,string subProcessId)
            DataTable dtFiles = new DataTable("File Details");
            dtFiles.Columns.Add("File Name");
            dtFiles.Columns.Add("File Version");
            dtFiles.Columns.Add("File Url");
            SPSecurity.RunWithElevatedPrivileges(delegate()
                // implementation details omitted       
            //using (SPSite mySite = new SPSite(siteUrl))
            using (SPSite mySite = new SPSite("http://srvr:4000/sites/mysitecoll"))
                using (SPWeb myWeb = mySite.OpenWeb())
                    SPList oList = myWeb.Lists["TEST DOC LIB "];
                    SPView oView = oList.Views["All Documents"];                  // SPQuery oQuery = new SPQuery(oView);
                    SPQuery oQuery = new SPQuery();
                    string query = "<Query><Where><And><Eq><FieldRef Name=Title/>" + "<Value Type=Text>" + fileName + "</Value></Eq>"
                                    +"<Eq><FieldRef Name=ProcessID /><Value Type=Text>"+processID+"</Value></Eq>"
                                    +"<Eq><FieldRef Name=SubProcessID /><Value Type=Text>"+subProcessId+"</Value></Eq>"
                                    +"</And></Where></Query>";
                    oQuery.Query = query;                    
                    oQuery.ViewAttributes = "Scope=\"Recursive\"";
                    SPListItemCollection collListItemsAvailable =
                     oList.GetItems(oQuery);
                    foreach (SPListItem oListItemAvailable in collListItemsAvailable)
                       // Console.WriteLine(oListItemAvailable["Name"].ToString());
                        SPFileVersionCollection versions = oListItemAvailable.File.Versions;
                        // If the file has versions, loop through all of the versions
                        if (versions != null)
                            if (versions.Count > 0)
                                foreach (SPFileVersion version in versions)
                                 //   Console.WriteLine("Version Info:: {0}, {1}", version.VersionLabel, version.Url);
                                    DataRow dr = dtFiles.NewRow();
                                    dr[0] = oListItemAvailable["Name"].ToString();
                                //Added data to the datatable
                            else
                              //  Console.WriteLine("Version Info:: {0}, {1}", oListItemAvailable.File.UIVersionLabel, oListItemAvailable.File.Url);
                                DataRow dr = dtFiles.NewRow();
                                dr[0] = oListItemAvailable["Name"].ToString();
                                dr[1] = oListItemAvailable.File.UIVersionLabel;
                                dr[2] = oListItemAvailable.File.Url;
                                dtFiles.Rows.Add(dr);
            return dtFiles;

"The Web application at http://server:port/ could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing
content, the system administrator may need to add a new request URL mapping to the intended application"
Here are the most common reasons this error can occur:
The code is executed on a different machine - The SharePoint object model (except the Client API) requires to be run on the SharePoint server itself. It is not possible to run the application on a server which is not within the same
SharePoint farm the code is trying to access.
Insufficient Rights on the site collection - The code is executed in context of an account which does not have read permission on the site collection
Incorrect Url being used - Verify that the site works correct in a browser and double check that the server is correct registered in the AAM settings
Incorrect bitness - The SharePoint object model needs to be executed with the same bitness as the operating system. That means you cannot use the SharePoint object model in a 32-bit application if the Operating System and SharePoint
are installed as 64-bit version. Ensure to compile the project using the correct bitness (64-bit on a 64-bit machine vs. 32-bit on a 32-bit machine)
Incorrect .NET framework version -  Ensure that the project is configured to use .NET 3.5. .NET 4.0 cannot be used with the current versions of SharePoint
from Mr.Stefan's post, i have checked with my code : as per the first reason: (1)
i am running the code from my  SP 2013 machine only. but the only difference is that, i am using a  asp.net web appln and have added a SP references of 15 hive and trying to make a  lists.asmx file.
also checked the reasons
2,3 ,4 ,5 all are  fine from my end.
here just wanna know: abt the below approach : whether its Correct or NOT.
create a plain GetDocsWebService.asmx file from asp.net 3.5 framework and  write the code for retrieving items from doc.lib using SPSite, spweb, splists, xmldocument and retrieve a datatable . [[[ i have added a web reference of sp 2013 microsoft.sharepoint
dll from  isapi folder, in this GetDocsWebService.asmx project ]]
i deployed this web service on my SP server's  new iis site, c:\inetpub\wwwroot\GETDOCSPUBLISH  site
now, at present , am adding a  normal asp.net 4.5 web appln and add the  web reference of this custom web service and trying to consume.
at this point am getting mulitpl errors: like
1) platform not supported : am stuck with this error!!
2) sometimes, am getting document not valid...<html> <head> document not valid........</html>
for the above 2 errorrs, i still could not able to find a solution!!
is it because, lists.asmx is not supported in sp 2013? we need to depend on rest-api/ecma/csom ?? 
so my question is ,  what should be the correct ad most recommended approach  for reading doc lib/ splist  records/items from a  remote macihne.

Similar Messages

  • The tag name: "embed" Not found in currently active versions.[XHTML 1.0 transitional]

    Hello I have this message "The tag name: "embed" Not found in
    currently active versions.[XHTML 1.0 transitional]" appear when I
    validate one of my pages in my site, the page contains a flash
    picture/animation. Please can anyone explain how I can correct this
    error?
    The tag name: "embed" Not found in currently active
    versions.[XHTML 1.0 transitional] this is in relation to:
    "<embed src="Map.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="536"
    height="437"></embed>"
    Any help would be appreciated.
    Thanks Steve

    > how I can correct this error?
    You don't. You ignore it. The <embed> tag is not valid
    HTML, but it is
    required to have reliable rendering of your Flash across
    various browsers.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Steve@FHS" <[email protected]> wrote in
    message
    news:fcm6ss$kvs$[email protected]..
    > Hello I have this message "The tag name: "embed" Not
    found in currently
    > active
    > versions.[XHTML 1.0 transitional]" appear when I
    validate one of my pages
    > in my
    > site, the page contains a flash picture/animation.
    Please can anyone
    > explain
    > how I can correct this error?
    >
    > The tag name: "embed" Not found in currently active
    versions.[XHTML 1.0
    > transitional] this is in relation to:
    >
    > "<embed src="Map.swf" quality="high"
    > pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Versio
    > n=ShockwaveFlash" type="application/x-shockwave-flash"
    width="536"
    > height="437"></embed>"
    >
    > Any help would be appreciated.
    >
    > Thanks Steve
    >
    >

  • BW: The following objects were not found when accessing server

    Hi All,
    Problem:
    - on the infoprovider, no authorization object is flagged as authorization relevant
    When trying to open the query in display mode, I get the message "The following objects were not found when accessing server", when I press cancel, the attributes are not available in the query.
    I tested with authorization objects and the only way to get these attributes visible is to put them in an authorization object with full (*) authorization for the field.
    Why does the system checks this? Because I don't want to give full authorization.
    Is there a way to unable this check, as I want the attributes to be visible (also without the *)
    +
    When a query administrator with the sufficient authorization (sap_all or the * authorization for the field in the authorization object) is creating the query in query designer including the 'attributes' which are not visible with the 'normal' authorizations, the query will not list the columns in the output when it is executed by the normal user.
    What can I do to get them visibIe in the output?
    I can not create an authorization object for each of these attributes with * (full authorization)... as it is not logic, and no authorization should need to be checked...
    Anyone who faced the same problem?
    (>> it seems the system acts as if the attributes are keyfigures, for which you need * authorization to be visisble)
    The attributes are navigational attributes.
    Thanks for your reply

    Hi Shivraj,
    BW 3.5 version
    Thanks

  • HELP"apple application support not found when installing itunes after a hard drive crash and replace

    HELP"   error "apple application support not found" when downloading itunes after a hard drive crash and replacement????

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • The following objects were not found when accessing server

    Hi All,
    Problem:
    - on the infoprovider, no authorization object is flagged as authorization relevant
    When trying to open the query in display mode, I get the message "The following objects were not found when accessing server", when I press cancel, the attributes are not available in the query.
    I tested with authorization objects and the only way to get these attributes visible is to put them in an authorization object with full (*) authorization for the field.
    Why does the system checks this? Because I don't want to give full authorization.
    Is there a way to unable this check, as I want the attributes to be visible (also without the *)
    Can anyone help me with this? Thanks in advance for your reply

    When a query administrator with the sufficient authorization (sap_all or the * authorization for the field in the authorization object) is creating the query in query designer including the 'attributes' which are not visible with the 'normal' authorizations, the query will not list the columns in the output when it is executed by the normal user.
    What can I do to get them visibIe in the output?
    I can not create an authorization object for each of these attributes with * (full authorization)... as it is not logic, and no authorization should need to be checked...
    Anyone who faced the same problem?
    (>> it seems the system acts as if the attributes are keyfigures, for which you need * authorization to be visisble)
    The attributes are navigational attributes.

  • The Web application could not be found

    Hello,
    I have a machine that has s share point portal .
    I create WCF on the same machine and set it on IIS and the identity of application pool is the administrator of machine 
              PlatformTarget : 64 bit ,  Framework : .net 4.5
    I have added sharepoint.dll as refrenece in WCF project.
    The identity 
    I have a method on the WCF :
              public void Test(string siteCollectionURL)
                    SPSite siteCollection = new SPSite(siteCollectionURL);
    When I call this method , I get the following Error :
             The Web application at http://[servername]:9090/sites/Dhofar could not be found. Verify that you have typed the      URL correctly. If the URL should be serving existing content, the system administrator may
    need to add a new request URL mapping to the intended application.
    Iam sure the url is correct  . So how can I solve it
    ASk

    Hi,
    For a better trouble shooting, I suggest you do as the followings:
    You can recreate a new WCF Service for SharePoint to test whether it works.
    More information about how to create WCF Service for SharePoint:
    http://www.thesharepointblog.net/Lists/Posts/Post.aspx?List=815f255a-d0ef-4258-be2a-28487dc9975c&ID=64
    http://msdn.microsoft.com/en-us/library/ff521584(v=office.14).aspx
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • Extending Web Application - File Not Found

    A quick search with no results and a ton of frustration are leading me here...I am attempting to use the very basic "Extend" functionality for a Web Application. We are trying to at the least add SSL/443 to SharePoint, if not convert entirely to
    443.
    I have tried simply extending the Web Application, or deleting the IIS Site (from Manage Web Applications -> Delete -> Remove SharePoint from IIS Web Site) and then extending the Web Application. Both are failing with the same error "File not
    found." A review of the ULS logs shows that the site is failing to find the web.config for the brand new IIS site it should be creating...which I guess makes sense, but shouldn't it be creating this file?
    I am tempted to mess around with the newly created site in IIS to make it work, but we are doing this in Dev as a proof of concept to do this in production. Needless to say, this needs to become much more reproducible before we'd even consider doing it in
    production.
    Some things I've tried:
    Extending a Web Application with an existing site
    Extending a Web Application without an existing site
    Creating a new Web Application and extending existing port 80 site
    Creating a new Web Application and extending after deleting existing port 80 site
    I haven't tried creating a site 443 out of the gate mainly because I am afraid this functionality failing could be an indication of something wrong with the farm and want to fix this correctly, rather than deleting a Web Application and creating it 443 from
    the get-go. Also, this method would obviously involve downtime.
    System.IO.FileNotFoundException: Could not find file 'C:\inetpub\wwwroot\wss\VirtualDirectories\ConstructionProjectsDev.agoc.com443\web.config'.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
    at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
    at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
    at System.Threading.CompressedStack.runTryCode(Object userData)
    at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
    at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
    at System.Xml.XmlTextReaderImpl.OpenUrl()
    at System.Xml.XmlTextReaderImpl.Read()
    at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
    at System.Xml.XmlDocument.Load(XmlReader reader)
    at System.Xml.XmlDocument.Load(String filename)
    at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyZoneSettingsToWebConfig(Uri responseUri, SPIisSettings settings)
    at Microsoft.SharePoint.Administration.SPWebApplication.Provision()
    at Microsoft.SharePoint.ApplicationPages.ExtendWebFarmPage.BtnSubmit_Click(Object sender, EventArgs e)
    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Thanks,
    Chris P.

    A quick search with no results and a ton of frustration are leading me here...I am attempting to use the very basic "Extend" functionality for a Web Application. We are trying to at the least add SSL/443 to SharePoint, if not convert entirely to
    443.
    I have tried simply extending the Web Application, or deleting the IIS Site (from Manage Web Applications -> Delete -> Remove SharePoint from IIS Web Site) and then extending the Web Application. Both are failing with the same error "File not
    found." A review of the ULS logs shows that the site is failing to find the web.config for the brand new IIS site it should be creating...which I guess makes sense, but shouldn't it be creating this file?
    I am tempted to mess around with the newly created site in IIS to make it work, but we are doing this in Dev as a proof of concept to do this in production. Needless to say, this needs to become much more reproducible before we'd even consider doing it in
    production.
    Some things I've tried:
    Extending a Web Application with an existing site
    Extending a Web Application without an existing site
    Creating a new Web Application and extending existing port 80 site
    Creating a new Web Application and extending after deleting existing port 80 site
    I haven't tried creating a site 443 out of the gate mainly because I am afraid this functionality failing could be an indication of something wrong with the farm and want to fix this correctly, rather than deleting a Web Application and creating it 443 from
    the get-go. Also, this method would obviously involve downtime.
    System.IO.FileNotFoundException: Could not find file 'C:\inetpub\wwwroot\wss\VirtualDirectories\ConstructionProjectsDev.agoc.com443\web.config'.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
    at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
    at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
    at System.Threading.CompressedStack.runTryCode(Object userData)
    at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
    at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
    at System.Xml.XmlTextReaderImpl.OpenUrl()
    at System.Xml.XmlTextReaderImpl.Read()
    at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
    at System.Xml.XmlDocument.Load(XmlReader reader)
    at System.Xml.XmlDocument.Load(String filename)
    at Microsoft.SharePoint.Administration.SPAspConfigurationFile.ApplyZoneSettingsToWebConfig(Uri responseUri, SPIisSettings settings)
    at Microsoft.SharePoint.Administration.SPWebApplication.Provision()
    at Microsoft.SharePoint.ApplicationPages.ExtendWebFarmPage.BtnSubmit_Click(Object sender, EventArgs e)
    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Thanks,
    Chris P.

  • BEx Web Application iView not found

    Hello,
    Any BEx Web Application iView that I create in the portal and try to run ends with an error. This is what I see on the trace file:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: iView not found: com.sap.ip.bi.web.portal.integration.launcher
    Any ideas...?

    Hi Roy,
    I am having exactly the same exception "iview not found" on my consumer production portal. I transported these BEx iviews from consumer pre-prod to consumer prod. My user ID is configured on the backend BW system and still its not working.
    Can you please tell me what user credentials were configured on your backend system?. This is an urgent production issue, and I appreciate your earliest response.
    Here's my exception details:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: iView not found: com.sap.ip.bi.web.portal.integration.launcher
    at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyContentProvider(DeploymentManager.java:1937)
    at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java:222)
    at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java:316)
    at com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java:387)
    at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(PortalRequest.java:488)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:607)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:545)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:434)
    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:1060)
    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)
    Thanks.

  • The web cam is not found

    hi hope you can help me. happens that when i turn on the lap a message appears saying that the web cam could not be started and suggests to restart. i did it already but the same window is shown. moreover, i cant find the web cam app. model: toshiba satellite m645-s4114

    Satellite M645-S4114 
    i cant find the web cam app.
    It's here.
       Toshiba Web Camera Application
    -Jerry

  • "application descriptor not found" when trying to create .ane file

    I have been trying to create a very simple native extention for the better part of a week now and I just can't seem to figure it out.
    Using tutorials and guides from the following sources:
    http://www.adobe.com/devnet/air/articles/extending-air.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/devices/pdfs/DevelopingActionScriptExtens ionsForAdobeAIR.pdf
    http://custardbelly.com/blog/2011/09/21/air-native-extension-example-ibattery-for-ios/
    I managed to get up to the point where I need to create the ane file, but I am getting "application descriptor not found".
    So, here is the detailed explanation of everything I have done to date. Can someone tell me where I have gone wrong?
    1. On the mac, I created an xcode project, using the iBattery example code from the link above, I managed to create static library .a file. I am not going to discount the possiblity that there are many errors still in this file, but I am going to assume for the moment that my current problem is not related to any issues in this static library.
    2. Copied the static library "DaveExtention.a" to my PC where I have flash CS5.5 installed (yes, I know there is a typo in the name)
    3. In my app folder, I created a lib folder that now contains the following files:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension.fla
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension-app.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\DaveExtension.as
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\BatteryStateEnum.as
    I set my project to compile an swc into the build folder and simply put the following code into my project:
    import com.extensions.DaveExtension.BatteryStateEnum;
    import com.extensions.DaveExtension.DaveExtension;
    var ext:DaveExtension = new DaveExtension;
    var batterystate:BatteryStateEnum;
    stop();
    I then publish the swc.
    4. Once the swc is created in the build folder, I copy the libDaveExtention.a to the build folder and create the extension.xml file, which looks like this:
    <extension xmlns="http://ns.adobe.com/air/extension/2.5">
      <id>com.extensions.DaveExtension</id>
      <versionNumber>1</versionNumber>
      <platforms>
        <platform name="iPhone-ARM">
            <applicationDeployment>
                <nativeLibrary>libDaveExtention.a</nativeLibrary>
                <initializer>ExtInitializer</initializer>
                <finalizer>ExtFinalizer</finalizer>
            </applicationDeployment>
        </platform>
      </platforms>
    </extension>
    5. I make a copy of the swc file and rename it to .zip... I then extract library.swf from it and delete the zip. My build folder now looks like this:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\DaveExtension.swc
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\extension.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\libDaveExtention.a
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\library.swf
    6. I downloaded the flex 4.5.1.21328 sdk and the Air 3.0 sdk, which I copied into the flex sdk folder (which is located in "D:\SDKs\flex_sdk_4.5.1.21328")
    7. In my build folder, I create a simple batch file called buildane.bat with the following command:
    D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    8. I then open a command prompt to my build folder and run buildane.bat and this is my output:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>buildane.bat
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    application descriptor not found
    No matter what I try, I can't get passed this.
    Can anyone tell me what I am doing wrong?

    >>D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    Either its a typo or by mistake you wrote adl in yout bat file. Change it to adt since that is the file that will package your ane. adl is just used for debugging/running on Desktop.
    Hope this helps. let me know how it goes.
    Thanks,
    Meet

  • From the Web application does not display the report...

    Hello,
    I have a Web application in VS 2010 (NET 4.0) running reports in VS 2003 (NET 1.1) and CR XI. What should I consider for the reports to run well? When setting up the basics of the folder where the reports are in IIS 7.5, item I keep in the Application Pool: NET 1.1, but when in the same IIS server I click on Browse *: 80, I generated the following error: HTTP Error 500.19 - Internal Server Error
    The requested page can not be accessed Because the related configuration data for the page is invalid.
    I can do, thanks.

    Reports are made in VS 2003 (. NET 1.1) and CR XI using a framework. This framework is placed in the web server (Windows 2008 Server R2) and called from VS 2010.
    Sorry, I'm still having problem understanding this.
    Only CRVS2010 will work with VS2010. The reports can be created in any version of CR you want, but to load the reports in VS2010, you need CRVS2010, create a project in VS2010, then deploy the project and the CRVS2010 runtime(?).
    E.g.;
    1) Create report using CR XI
    2) Install CRVS2010 on a computer that has VS2010
    3) Create a project using CRVS2010 in VS 2010 - can use any framework you want
    4) Deploy VS2010 project
    5) Install CRVS2010 runtime
    - Ludek

  • Apple Application Support not found when trying to open iTunes

    iTunes not opening. Error 2 message keeps popping up saying that Apple Application Support is not found. (Dont' know where it went!!!) It's asking me to uninstall and reinstall iTunes. B4 I do, will I lose my library and have to start over?

    downloaded winrar and extracted that bfile, haha answered my own question,

  • After System recovery all the installed apps are not their EXAMPLE Getting Started Windows 8

    I did a factory restore w/ HP tech. giveing me the advice to do so. I have a HP Pavillion 17 notebook. came installed w/ Windows 8 after a few months I upgraded to 8.1 Now after restore Im running 8 My problem is after this re-start I did not get all my factory installed apps. EXAMPLE Getting started Windows 8  and others. Desktop Icons also did not populate except trash quick start icon thats it Please help THE HP TECS I HAVE SPOKE WITH apx. 8 HOURS in 3 days time are very hard to UNDERSTAND AS IM SPEAKING TO THESE GUYS IN INDIA india. tHEY ALL HAVE GAVE ME DIFFERENT ADVICE AND HAVE CAUSED ME TO HAVE MORE PROBLEMS WITH MY SYSTEM THAN I DID IN THE BEGINNING.

    Hi @Justriden
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post serial numbers and case details.
    If you are unfamiliar with how the Forum's private message capability works, this post has instructions.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • DirectoryEntry Invoke(SetPassword) exception: The network path was not found.

    I have a local AD Machine with windows server 2003. Cloud AD is on Windows Server 2008 R2.
    Problem is that when I try to create a new user through LDAP(C#), it creates succesfully, but Invoke(SetPassword) gives following inner exception:
    System.IO.FileNotFoundException: The network path was not found. (Exception from HRESULT: 0x80070035).
    code I am using is:
    string szCloudUserPath = string.Format("LDAP://" + CloudDomain + "/" + "<GUID=" + CloudUserGUID+ ">");
    var deUser = new DirectoryEntry(szCloudUserPath, CloudAdmin, CloudPwd, AuthenticationTypes.Secure);
    deUser.Invoke("SetPassword", new object[] { szNewUserPassword });
    deUser.CommitChanges();
    Anybody can help me please?

    Hi,
    Based on your description, the following thread focuses on the similar issue and can be worth taking a look.
    DirectoryEntry.Invoke SetPassword - The network path was not found.
    http://forums.asp.net/t/1164221.aspx
    Besides, I notice that you have post the same thread in the ASP.Net forum. In my opinion, regarding this issue, we will get more professional help in that forum.
    Best regards,
    Frank Shen

  • Can any body tell where i have to place the mdb file in the web application

    Hi
    I am doing a web application in NetBeans 5.0 and using MSAccess (*.mdb ) file as a backend, so now where i have to place this mdb file in this web application in NetBeans. and tell me the code how to connect to that mdb file.
    The mdb file name is "db.mdb" and i am using a jsp page through which a servlet will be communicated. in servlet i am not able to connect to this mdb file.
    Reply asap.
    Sasi .

    DrClap wrote:
    duffymo wrote:
    Then I'd put it in my CLASSPATH. Maybe WEB-INF/classes.I'm not sure that I like the idea of the database being inside the web application's context. When you deploy a new version of the application, wouldn't that be a problem? My answer to "Where do I place the MDB in the web application" would be "Anywhere but there".DrClap, I'm embarrassed to read this, because you're only too correct. Thanks for the correction.
    When you think about it, your advice makes a great deal more sense. Any database BUT Access would be on a separate server (e.g., Oracle, MySQL, SQL Server, etc.) Why wouldn't that be a good idea for Access, too?
    On the other hand if it's a read-only database that would be different.You're too gracious to leave me this out. I throw myself on the mercy of the court for being a dumb ass. 8)
    %

Maybe you are looking for

  • Cost Element Category and Commitment Item Cat. for PS Cash Mgmt

    Dear All, We are activating PS Cash Mgmt. I want to know the difference between: 1. Maintaining the Cost Element Category as 1 and 11. Is it necessary to maintain 11 (Revenues) or maintaining 1 (Primary costs/cost-reducing revenues) will have same re

  • Printing Dark Area in smartforms

    Hi All, I am having problem with printing graphics in Smartform. In preview it is okay.. But when I print it ..it is just printing Dark black area. I am expereincing same problem with Table Hedings. Please let me know ..What could be the error. Thank

  • "disc burner is in use" error message?

    I am trying to burn CDs from an iTunes playlist and get the message "The disc burner is in use by an application other than iTunes" when it is not in use. This happens about half the time

  • Setting the keyboard map with hotplugging

    Just changed to awesome WM and my keyboard is slightly wrong. For a start I can't seem to produce the hash symbol at all. The wiki suggests that input hotplugging should be favoured for keyboard configuration. I have my keymap set as uk in rc.conf an

  • Steps to create Universe without using Fact Table

    Dear All, i am confronting with a problem by creating an Universe. The problem is that we do no have any fact table. Could you please  explain the steps for creating an universe without fatc table? Thanks Pat