The Given Path Format is Not Supported in MenuI'ds of Add-on

Hi Experts,
Im working on Add-On with Visual Studio 2008 and Database Sqlserevr2008,BidSetup with version 2.1.Afetr Building the Addon and After Registering the Addon .My Screens are Not Gettin Opened all the Screens(Menus) are throwing the Error with The Given path format is not supported(Here,Im Using Xml Conversion)To the open the screen..How do i solve this problem..
Help would be appreciated
Regards,
Vijay Kumar

Hi ,
  Can you explain load xml coding so we can get actual problem

Similar Messages

  • Error while connecting to an OData Feed from Excel 2013 PowerPivot . Error: Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported

    I am trying to connect to a Odata Data feed from Excel 2013 Power Pivot
    The datasource is in sharepoint site eg: https://sitename/Shared%20Documents/datafeed.atomsvc
    getting below error
    Error message:
    Failed to connect to the server. Reason: The payload kind 'BinaryValue' of the given data feed is not supported.
    ============================
    Call Stack:
    ============================
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.ValidatePayloadKind(ODataPayloadKind payloadKind, ODataMessageReader odataMessageReader)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.InterceptODataException(Action action)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader..ctor(IODataResponseMessage responseMessage, Int64 maxReceivedMessageSize)
       at Microsoft.Data.DataFeedClient.DataFeedODataReader.CreateReader(IWebResponse webResponse, Int64 maxReceivedMessageSize, Boolean applySlashUpdatingBaseUriResolver)
       at Microsoft.Data.DataFeedClient.ODataHelper.GetCollectionsFromServiceDocumentUrl(Uri serviceDocumentUrl, DataFeedConnection connection)
       at Microsoft.Data.DataFeedClient.DataFeedConnection.Open()
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.InitializeConnectionObject(String connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open(String& connectionIdentifier)
       at Microsoft.AnalysisServices.BackEnd.RelationalDataSourceConnection.Open()
       at Microsoft.AnalysisServices.Common.DataSourceBasic.ClickTestConnection(Object progressControl)
    Appreciate suggestions/answers
    NOTE: The error is showing only while using Excel 2013 powerpivot
    its working good with Excel 2010 powerpivot

    Anita,
    Please look into using Power Query to use OData as a source in Power Pivot.
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610.

    I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610 using Adobe Acrobat Pro 11. I recently purchased the printer. I believe I ame using all of the defaults. How can I correct the problem?

    Hi,
    Both printer and computer seem to be on same network.
    Please download and run the following utility to troubleshoot on the issue.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&jumpid=reg_r1002_usen_c-0...
    Also download and install the firmware update from the link below.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-89897-4&cc=us&dlc=en&lc=en&...
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • I get the error "the given path's format is not supported report" when trying to edit a Report from SharePoint 2013 is SSDT 2012

    I downloaded a copy into my project and I get these errors when I try to Preview

    Have a look at these links please:
    Convert existing project the given path's format is not supported
    Unable
    to open Project File of SSRS 2008 into Visual Studio 2012
    sqldevelop.wordpress.com

  • ITunes error message - "video format is not supported by the iPad" My video is mp4, mpeg-4.

    When syncing my iPad 2....  Why do I get this iTunes error message? "video format is not supported by the iPad"
    My video is mp4, another is mpeg-4.
    I thought the iPad 2 could play almost any format.

    Must conform to these specs:
    Video formats supported: H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    Or download an alternate video player,such as avplayerhd.

  • After using iTunes Match, 5 songs have a "was not copied because the audio format is not supported by the iPhone".

    After using iTunes Match, 5 songs have a "was not copied because the audio format is not supported by the iPhone".
    I have deleted these songs and downloaded them from iTunes Match (they were "matched" and not "uploaded" files).  However, it still does not work.

    I have the same issue with 8 songs in my library. All are "Matched" and I've tried deleting them and redownloading them from iTunes Match, but they won't play in iTunes or transfer to any of my iDevices.

  • HOw to create a text file in the given path and delete it after the use?

    Hi all,
    I am trying to create a text file at the given path and delete the created file after the use.
    I am using following code.:
    import java.io.*;
    // write binary data as characters
    public class RanIO {
                                            public static void main(String f[])
                                                      // First illustrate append
                                                      String lineSep = "\n";
                                                      try {
                                                                     File temp= new File("C:/Ash","cute.txt");
                                                      boolean ch=temp.createNewFile();
                                                      if(ch)
                                                           System.out.println("file created");
                                                      else
                                                      System.out.println("file Not created");
                                                      //writing to file
                                                 /*     PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
                                                      p.print("Emp NO");
                                                      p.close();*/
                                                                // Open fileWriter in append mode
                                                                               FileWriter fos = new FileWriter(temp, true);
                                                                               BufferedWriter bw = new BufferedWriter(fos);
                                                                               PrintWriter pw = new PrintWriter(fos);
                                                                               double d=550;
                                                                          // lineSep = System.getProperty("line.separator");
                                                                          pw.print("Hello");
                                                                          //pw.print( lineSep );
                                                                          pw.print( d );
                                                                          pw.close();
                                  boolean det=temp.delete();
                                                 if(det)
                                                      System.out.println("File deleted");
                                                 else
                                                      System.out.println("File not deleted");
                                                 } catch (IOException ioe)
                                                                System.out.println( "Append IO error:" + ioe );
    My problem:
    1)
    I am not able to write to the file. I want to know, where i am going wrong.
    It is giving error message like
    "Canot resolve Symbol: temp,"
    But, FileWriter Constructor should accept a File type parameter.
    here temp is a file parameter.
    If i am not using file=new file();
    i can't delete the file after the use. i.e if i use
    PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
    how can i delete cute.txt after the use?
    2)
    I am not able to write to the text file. file is created but, a blank file.
    "Hello" is not written into the text file.
    can anyone help me in this regard
    Thanks in advance
    Ashvini

    Thank you Ram,
    But, i want to create a text file in Append mode.
    for that i used
    FileWriter fos = new FileWriter(temp,true); But, it is not accepting FileWriter constructor in
    this format. if i use
    FileWriter fos = new
    FileWriter("c:/ash/cute.txt",true); it works fine. !!!!!Here's the javadoc
    public FileWriter(File file,
    boolean append)
    throws IOExceptionConstructs a FileWriter object given a File object. If the second argument is true, then bytes will be written to the end of the file rather than the beginning.
    Parameters:
    file - a File object to write to
    append - if true, then bytes will be written to the end of the file rather than the beginning
    Throws:
    IOException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
    Since:
    1.4
    Are you using jdk.13 or lower ?
    >
    ONe more doubt, Does flush method deletes a file?
    if not, then i need to use
    File temp=new File("c:/ash/cute.txt");
    FileWriter fos = new FileWriter(temp,true); //which
    is again a problem
    if(temp.delete())
    out.println("File is deleted");
    }I don't know whether i am taking it wrong ! or
    anything wrong with my coding ! but, after creating
    and writing data into a text file. I must delete it
    as it contains confidential informations.
    Regards,
    Thanks.'flush' writes to a file immediately. Else you should explicitly call 'flush' to write contents from buffer to underlying source.
    javadoc again
    PrintWriter
    public PrintWriter(Writer out,
    boolean autoFlush)Create a new PrintWriter.
    Parameters:
    out - A character-output stream
    autoFlush - A boolean; if true, the println, printf, or format methods will flush the output buffer
    cheers,
    ram.
    Question; What do you gain by opening a file, writing to it and deleting it in the same program ?

  • Error message "The currently attached accessory is not supported by this iPod" is shown when connected to my Zeppelin Air Dock.

    I have 2 iPods, one is a 60GB Classic formatted to Mac the other is a 80GB Classic formatted to Windows. When either is connected to my Zeppelin Air Dock, a message appears on the iPod saying "The currently attached accessory is not supported by this iPod"
    I have updated the firmware on the Zeppelin and have the latest updates on each of the iPods.
    The Zeppelin works fine and connects to the computer and laptop without issues.

    I'm having the same problem, it just started today. I've been running w/ the nike+ sensor and receive w/ my iPod nano for 6 months, logging 75 runs, so don't understand why I'm getting this error now.
    Can someone please reply w/ how to resolve this issue? I have Nike+ challenges coming up soon that I can't miss. Thanks!

  • Video that used to sync now "format is not supported"

    Hi there,
    After some odd behavior from my 160GB iPod Classic, I have restored it and am in the process of reloading it. I have one TV episode I ripped that is no longer syncing over to my iPod though. The video worked yesterday on the iPod and today it won't sync. I am receiving the "video format is not supported by the iPod" error. Any ideas on why this would happen all of a sudden? What the problem might be? How to easily resolve the problem w/o a re-rip? Thanks! The details of the video follow:
    h.264 file - 640x480
    AAC Stereo Audio (48 kHz)
    29.97fps
    bit rate: 1652.83 kbits/sec
    Thanks again!

    I feel ya...I just bought a tv episode and it won't sync to my 160gb IPod and mine hasn't been restored just authorized for my other new laptop....anyone have any answers for us??

  • Scanning conflict   Acrobat 9 pro   "Color Format Selected Not Supported"

    I have had several conflicts with Adobe Acrobat 9 and my HP C5180 printer/scanner/copier.   I have downloaded new drivers from HP.   When I try to create  a PDF from the scanner,  I get this conflict warning:   "Color Format Selected Not supported".    So, I change the color format selections in both HP and Acrobat and I still get the warning.    I must admit I haven't tried the black and white color format.  But I want to scan simple color images.  No luck.  
    Has anyone else had such a problem?

    This may have nothing to do with your problem, but -- at least with Acrobat 8, there is a 100MB limit to the scanned image. Are you trying to scan something larger than that?

  • I can't open lesson from DVD for CS6  "file format is not supported"

    Please help me!!!
    I have Mac.
    I can not open the lesson from DVD for CS6
    "file format is not supported"

    Hi Aleksandr,
    It's probably an activation issue. FAQ: Why are some codecs and sequence presets missing from my installation of Premiere Pro?
    Try this: Choose Help > Sign Out, Restart Premiere Pro, choose Help > Sign In
    Thanks,
    Kevin

  • Back ground job to download data into excel in the given path on sel-screen

    Hi Friends,
      I have 2 radion buttons on the selection screen 1. Online 2. Back ground.
    If i select the back ground radion button all program should run in back ground only, and finally the data should be downloaded to excel file on the given path in selection screen.
    Does any one have code for this.
    Thanks in advance
    Ajay
    Edited by: Ajay kumar on Aug 30, 2010 11:03 AM

    Hi Ajay,
    try this way..
    If sy-batch = 'X' . "background Job
    *   Submit report in background and creating spool
      SUBMIT (w_rname) USING SELECTION-SET p_var
          TO SAP-SPOOL WITHOUT SPOOL DYNPRO
          SPOOL PARAMETERS wa_pri_params AND RETURN.
      COMMIT WORK AND WAIT.
    *   To fetch the spool number from TSP01 table
      IF sy-subrc EQ 0.
        SELECT rqident
               FROM tsp01
               INTO p_spool
    *             UP TO 1 ROWS
               WHERE rq2name = wa_pri_params-plist.
        ENDSELECT.
      ENDIF.
    ENDIF.
    * Fetching Spool data into internal table
      CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
        EXPORTING
          rqident              = p_spool
        TABLES
          buffer               = t_Excel_data.
    "Now format the Data into excel format or Comma seperated format and download to Appl server.
    Prabhudas

  • Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file

    Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file
    How do I fix this?

    That would probably be a question best taken up in on a site for Windows support questions. Not knowing anything about the movie you're trying to play, all I can suggest is to confirm that the format of the movie you wish to play is supported in your version of WMP. If it isn't, you'll either need to convert the movie or use some other player software.
    Regards.

  • Cannot load ClassDiagram.cd on Visual Studio. "URI formats are not supported

    When I try to open a class diagram for my asp.net webforms project I get the following error. The Class Diagram (.cd) files get generated
    but I can't open them.
    I do have some classes that use the URI class but i don't really think that could be the issue. Right? Why would a class diagram care about one of my classes using a URI datatype? 
    i get this (
    Cannot
    load ClassDiagram.cd on Visual Studio. “URI formats are not supported”

    Hi princeusa3,
    Since this forum is to discuss the VS-testing issue, just make this issue clearly, do you create the test project for your web app?
    It seems that it is not the test issue, if it is related to the ASP.net development, I suggest you post this issue in
    http://forums.asp.net where asp.net experts live in, and there you would get dedicated support. Thanks for your understanding.
    If I have misunderstood anything, please make free feel to let me know.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Creative Zen V Plus - Seeking your help with "Audio format is not supported" error

    Hi,
    I have a problem with my Creative Zen V Plus and am looking for someone to do a quick test to help me. I listen to a lot of MP3 podcasts, so I often rewind, fast forward or set bookmarks inside tracks. When I do those operations in some tracks, I get the error ?Audio format is not supported? when I ?land on certain places in a track (and I am able to reproduce the problem, which happens always at the same place in a particular track).
    Here is what I mean by ?land?. For instance, there is a particular track (see the mp3 link below) that whenever I rewind to exactly 35 min 37 seconds, I get the error ?Audio format is not supported? and playback is stopped. If I fast forward to exactly 35 min 37 seconds, I also get the error. If I set a bookmark to exactly 35 min 37 seconds and I then go to that bookmark, I also get the error. But I don?t get the error if I play the track normally without any rewinding or fast forwarding: the track is played and passes the 35 min 37 seconds mark without any error.
    Creative Labs customer support wants me to return my player for repair, but I am not sure if the problem is with my player or if the problem would also be present on other Zen V Plus, thus my asking for your help.
    I would appreciate if someone of you could try one of my problematic tracks on their player. Here is what you could do to help me:
    1- Download and transfer to your Zen V Plus player the following audio file (it'ss a technology podcast and don?t worry, it'ss virus-free, it comes from CNET):
    http://podcast-files.cnet.com/podcas...oud_090808.mp3
    2- Go to the 35 min and 37 seconds mark, press PAUSE and set a bookmark there.
    3- Go into the Bookmarks menu and go to the bookmark you just set.
    4- Do you see the error ?Audio format is not supported?, or the audio plays just fine? If the audio plays just fine, could you tell me what are the first words you hear
    when going to that bookmark, just so that I am sure we are indeed doing the same test on each of our side?
    5- What firmware version is your player at ?
    Thank you very much for any help you could bring me.
    Patrick

    never mind. figured it out!

Maybe you are looking for

  • How to upload/download file into/from blob column in ADF/JDev 11g.

    Hello to all. I found demo from Kuba user on that page: http://kuba.zilp.pl/?id=1 But that demo is for release 10g and too complicated for me for this time (I'm fish in Jdeveloper). I can create some simple table view (of form view) with oracle conne

  • Read the content of a file attached to a document

    Hi, I have a requirement to read the content of the file attached to the document and send in the body of the email. The original get stored in the KPRO server. Can anyone suggest how can i read the content of the file stored in the KPRO server. HTTp

  • IPhoto deleting previously uploaded pics without even asking me

    Well, this has happened to me lot of times and i have to say that I'm really angry about this. When doing random things on iPhoto (maybe things related to web albums [flickr, Facebook]), suddenly a box appears saying that "the album 'x' was deleted f

  • Oracle Standby setup for firewall

    Hi, Recently one of my client separated their primary and standby databases with Juniper firewall. After the activity, some primary database servers were unable to ship the archives whereas some of the primary databases were shipping the archives but

  • Asynchronous calls from EJB

    Hi all, I have some problem in designing my application. I would appreciate , if some one can help me out regarding the same. My application: GUI client requests my EJB for some data, giving some a list of input parameters.(data returned will be dire