URL Data Control: Connection to the URL source could not be created

Using JDev Studio 10.1.3.2
Trying to use a new URL data control pointing to a csv file.
I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
"Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
The data controls configuration file is shown below:
<?xml version="1.0" encoding="UTF-8" ?>
<DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
version="10.1.3.40.66" Package="com.xp.model"
id="DataControls">
<AdapterDataControl id="URLDataControl1"
FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
SupportsTransactions="false" SupportsSortCollection="true"
SupportsResetState="false" SupportsRangesize="false"
SupportsFindMode="false" SupportsUpdates="false"
Definition="URLDataControl1" BeanClass="URLDataControl1"
xmlns="http://xmlns.oracle.com/adfm/datacontrol">
<Source>
<Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
ConnectionName="URLConnection1"
Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
</Source>
</AdapterDataControl>
</DataControlConfigs>

Using JDev Studio 10.1.3.2
Trying to use a new URL data control pointing to a csv file.
I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
"Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
The data controls configuration file is shown below:
<?xml version="1.0" encoding="UTF-8" ?>
<DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
version="10.1.3.40.66" Package="com.xp.model"
id="DataControls">
<AdapterDataControl id="URLDataControl1"
FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
SupportsTransactions="false" SupportsSortCollection="true"
SupportsResetState="false" SupportsRangesize="false"
SupportsFindMode="false" SupportsUpdates="false"
Definition="URLDataControl1" BeanClass="URLDataControl1"
xmlns="http://xmlns.oracle.com/adfm/datacontrol">
<Source>
<Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
ConnectionName="URLConnection1"
Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
</Source>
</AdapterDataControl>
</DataControlConfigs>

Similar Messages

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • Windows VPN: Error 720 - A connection to the remote computer could not be established

    Dear all
    I have a windows7 Laptop 64bit Dell 1340.
    I was working with a UMTS card, was connected with a VPN to a windows 2003 server over PPTP and experienced a bluescreen. After this, I have the following errors when connecting to the VPN:
    "Registering your computer on the network... Error 720: A connection to the remote computer could not be established. You might need to change the network settings for this connection"
    and in the event view I receive the following:
    EventID: 1, Source RasSstp
    CoId={A3478DFD-FFA4-4E8F-9DA3-CE829BDA777B}:The initial Secure Socket Tunneling Protocol request could not be successfully sent to the server. This can be due to network connectivity issues or certificate (trust) issues. The detailed error message is provided below. Correct the problem and try again.
    I tried to use the Rarepair.exe tool but it looks to work only on windows xp. I deleted the IP and TCP settings without any luck.
    I run a registry cleaner as well with out any luck.
    Your help will be greatly appreciated!
    Marc

    Hi,
    Since it worked previously, a quick solution is to run System Restore and get back to the previous status when the issue didn’t occur.
    If system restore doesn’t help, please also try the following:
    1.    Check if you can establish the VPN via other connections except the connection through the UMTS card.
    2.    Reset the PPTP and L2TP WAN miniport with running the following commands one by one in an elevated command prompt:
    Netcfg -u MS_L2TP
    Netcfg -u MS_PPTP
    Netcfg -l %windir%\inf\netrast.inf -c p -i MS_PPTP
    Netcfg -l %windir%\inf\netrast.inf -c p -i MS_L2TP
    Then reboot the computer and see how it works.
    Meanwhile, I would like to share the following with you for your reference:
    Troubleshooting common VPN related errors
    Hope this helps. Thanks.
    Nicholas Li - MSFT

  • A Connection to the deployment share could not be made....

    Hi,
    I know this question has been posted a fair number of times on the forums but so far none of the responses have fixed my issue.
    I am having trouble connecting to the deployment share receiving the error message below.
    "A connection to the deployment share could not be made. The deployment will not proceed.
    The following networking device did not have a driver installed PCI\VEN_10EC&DEV_8168&SUBSYS_00041179&REV_10"
    I have downloaded the correct network drivers and even installed Windows 7 manually and added
    the drivers to check they are correct drivers.
    I have added them to the OOB drivers in the deployment share and then updated and also regenerated
    the deployment share. Then i have updated the .wim file in the boot images folder but yet i still cannot get past this stage.
    Does anyone have any further ideas that i could try?
    Thanks,
    Adam

    Hi,
    I can exit to cmd and attempt ipconfig/ping etc. but get confirmation that there is no IP.
    The imaging process is working for older versions of laptops and Netbooks but not for the newer models. They are all Toshiba models.
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    _SMSTSORGNAME=(*****)
    OSInstall=YES
    SkipAdminPassword=YES
    SkipApplications=YES
    SkipAppsOnUpgrade=YES
    SkipBDDWelcome=YES
    SkipBitLocker=YES
    SkipCapture=YES
    SkipComputerName=NO
    SkipComputerBackup=YES
    SkipDeploymentType=YES
    DeploymentType=NEWCOMPUTER
    SkipDomainMembership=YES
    JoinDomain=(*****)
    DomainAdmin=Build
    DomainAdminDomain=(*****)
    DomainAdminPassword=(*****)
    SkipFinalSummary=YES
    SkipLocaleSelection=YES
    KeyboardLocale=en-GB
    UserLocale=en-GB
    UILanguage=en-GB
    SkipPackageDisplay=YES
    SkipProductKey=YES
    SkipSummary=YES
    SkipTaskSequence=NO
    SkipTimeZone=YES
    TimeZoneName=GMT Standard Time
    skipUserData=Yes
    FinishAction=LOGOFF
    I have removed some of the information of the organisation with (*****)
    Thanks,
    Adam

  • Connection to the deployment share could not be made (network driver not installed)

    Hi guys! i bought the new laptop Dell Latitude E6510 and try to install the enterprise image but i got the error:
    "A connection to the deployment share could not be made. The deployment will not proceed. The following networking device did not have a driver installed PCI\VEN_8086&DEV_10EA&SUBSYS_040B1028&REV_05."
    I look on internet and i found out that it is the intel network card driver missing. So i get the driver from Dell website and i added this drivers in the MDT console.
    Then i have updated the deployment share to rebuild the boot images. Everything went fine but i always get this error.
    Am I missing something ?

    I too was having the problem...
    the single thing that I was forgetting is that while I was recreating & regenerating the images in the deployment workbench. I wasn't burning & booting from a CD...
    because (aha) I'm clever & using Windows deployment services to boot across the network & save all that time burning CDs etc.
    Doh, I didn't update the WIM that WDS was using...
    Open your windows deployment services console,
    expand out servers : <server name> : boot images
    Right click your boot image (I have 2, one for x86 & one for x64),
    choose "replace image" then navigate to your newly regenerated WIM images
    (probably C:\deployment_share\boot) & choose the appropriate WIM file.
    do this for any images you have, reboot your client machine & BAM, deployment goodness.
    MS should really add a module for PXE boot (etc) into the deployment workbench rather than have 2x deployment solutions & use the deployment module from one & the boot module from the other.
    Anyhoo, works now, must make a mental note to remember this in future...
    Cheers Toolman
    Thank you for this.  This resolved the issue that I had.

  • My IPad2 will not connect to the internet, "Safari could not open the page because the server stopped responding."  My AirPort utility shows that I am connected.  What could be the problem?

    My iPad2 will not connect to the internet, "Safari could not open the page because the server stopped responding".  I've run the AirPort utility and it shows that I'm connected to my Wi-Fi.  The connection works with both my iMac and iPhone.  I'm concerned that the problem is with hardware rather than software.

    Try the following:
    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings
    3. Reset iPad; hold the Sleep and Home button down until you see the Apple Logo

  • The Aperture Library could not be created at "/Volumes/Data/Aperture Library.aplibrary". Check the path and try again.

    Hi,
    I cannot reopen library. During opening aperture I can see a list of libraries. After selection "Aperture library.aplibrary" (default I guess) msg box is open
    "Library info directory path contains a file where a folder was expected.
    The Aperture Library could not be created at “/Volumes/Data/Aperture Library.aplibrary”. Check the path and try again."
    Moreover, aperture library is not visible in other apps like Final Cut X Pro. I assume this is  caused by the aperture problem.
    Can anybody help me?

    Sounds strange.
    Did you try to double click your "Aperture Library.aplibrary"?
    Maybe trying to open backuped library...
    Or creating a new library by pressing the alt key when clicking on the Aperture Dock icon.

  • HT3275 TIME MACHINE ERROR: The backup disk image "/Volumes/Data/Sean McGuire's MacBook Pro.sparsebundle" could not be created (error 1).

    I can select a disk (Time Capsule) and initiate the backup.  It only "waits to back up" then "making backup disk available" and remains frozen there.  I tried to update the software a while back and was unsuccessful, I think that may be the issue.
    Any insight would be greatly appreciated.  This is the error message I receive.
    TIME MACHINE ERROR: The backup disk image “/Volumes/Data/Sean McGuire’s MacBook Pro.sparsebundle” could not be created (error 1).
    Thanks

    See #C17 in Pondini's excellent support document Time Machine - Troubleshooting
    http://pondini.org/TM/Troubleshooting.html

  • BB Torch - bluetooth tethering for laptop internet use: "Error 720: A connection to the remote computer could not be establishe​d

    Trying to set up Blackberry Torch for laptop tethering...bluetooth. I have connection/drivers/etc. but keep getting error message: "Error 720: A connection to the remote computer could not be established. You might need to change the network settings for this connection." Where and what do I chancge setting to so this will work?
     I have synched my phone and laptop wirelessly across other internet connection....just cant get this above to work. Anybody know how to fix this? Thanks!

    Hi,
    Since it worked previously, a quick solution is to run System Restore and get back to the previous status when the issue didn’t occur.
    If system restore doesn’t help, please also try the following:
    1.    Check if you can establish the VPN via other connections except the connection through the UMTS card.
    2.    Reset the PPTP and L2TP WAN miniport with running the following commands one by one in an elevated command prompt:
    Netcfg -u MS_L2TP
    Netcfg -u MS_PPTP
    Netcfg -l %windir%\inf\netrast.inf -c p -i MS_PPTP
    Netcfg -l %windir%\inf\netrast.inf -c p -i MS_L2TP
    Then reboot the computer and see how it works.
    Meanwhile, I would like to share the following with you for your reference:
    Troubleshooting common VPN related errors
    Hope this helps. Thanks.
    Nicholas Li - MSFT

  • Error 720: A connection to the remote computer could not be established.

    So I got an aircard Novatel P720. It was working fine for months. Then I installed a VPN connection. Now, I get this error.
    Error 720: A connection to the remote computer could not be established.
    Most of of what I found recommends uninstalling the WAN Miniport (IP), it seems that  I have to go thru so many hoops to get this fixed. Wondering if I would be better off rebuilding my machine from scratch again. Is there an patch or another way to get me going.
    I think this is an old issue. Lots of comments on this thru Google. I am hoping I can get a definative answer from Lenovo's itself!

    josezald wrote:
    So I got an aircard Novatel P720. It was working fine for months. Then I installed a VPN connection. Now, I get this error.
    Error 720: A connection to the remote computer could not be established.
    Most of of what I found recommends uninstalling the WAN Miniport (IP), it seems that  I have to go thru so many hoops to get this fixed. Wondering if I would be better off rebuilding my machine from scratch again. Is there an patch or another way to get me going.
    I think this is an old issue. Lots of comments on this thru Google. I am hoping I can get a definative answer from Lenovo's itself!
    Well, seeing since your having an Issue with a non Lenovo product. I dont think your going to get an official answer from Lenovo. You may get suggestions however. 
    Ignorance is no excuse!

  • Error 720 a connection to the remote computer could not be established win 8

    hello, i have this error on my windose 8, error 720 a connection to the remote computer could not be established ,for VPN connection,  how can i fix it ? 

    Hi,
    For this issue,I would like to know your VPN protocol.
    Did you use Windows in-built VPN client?
    I think the issue is related to your security software or Firewall.
    Let’s temporarily disable other security software and Windows firewall to check if that helps.
    If it doesn't work, please uninstall the third-party security software or firewall to test it.
    Also, please check your event view to see if there are some related error in it.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • A connection to the deployment share could not be made. connection ok

    hi,
    i have deployment windows 7 by MDT,and there is something wrong with the test. i have a MDT Service and 2 clients that one is updated and another is used to capture the image.but when i captured the image,there is error."a connection to the deployment
    share could not be made. connection ok" 

    i create and capture the image from a physical
    machine,and i create the network drivers on the MDT console. And it will generate the winPE.When i capture
    and restart the machine, it will get the error. 

  • A connection to the QuickTime server could not be established. This computer may be having trouble accessing the Internet or the server may be offline

    When I select “Update existing software in QuickTime Pro I get an error message saying “A connection to the QuickTime server could not be established. This computer may be having trouble accessing the Internet or the server may be offline”
    This has persisted for several weeks. Any help will be welcomed as I do not know how to contact QuickTime support via Apple.
    I am using Windows 7 64 bit.  
    Many thanks

    I was able to download and install the latest version of iTunes  (10.6.3.25) without a hitch. After the reboot I tried again to update my exisitng Quicktime Pro software as described in my original posting and got exactly the same error message.
    If it happens that there is no software to download because I am already running the latest version, surely a message to that effect would appear and not the one saying “A connection to the QuickTime server could not be established. This computer may be having trouble accessing the Internet or the server may be offline”
    Still seeking advice if possible
    Cheers

  • "The home folder could not be created because the network name cannot be found" error in AD users and computers

    Our home folders are stored on a non-windows NAS device and with Windows XP and 2003 we've always got the above error when creating or modifying users home folders, even when the shares were al ready created and being used.
    However this was never really a big issue as the error that popped up was really for information and finshed with a "we've modified the user properties anyway, please create the share manually" type message.
    Unfortunately now we are moving to windows 7 and 2008R2, this last part of the the message is missing and it won't accept the correct value. 
    This issue may be in the way that the NAS device shares the folder, as only the username that matches the folder name can access the share.  This behaviour can't be modified.
    Is there a way to get Windows 7/2008R2 AD users and computers to behave the same way that Windows XP/2003 does , i.e. don't try and create the share just set the value in the user properties  ?
    The AD is still at 2003 level and we can still use Windows XP/2003 clients to make the changes but this is a bit of a limitation.

    The KB article is almost what we have apart from theitalic underlined
    part
    Consider the following scenario:
    You use a domain administrator account to log on to a computer that is running Windows 7 or Windows Server 2008 R2.
    You use the Active Directory Users and Computers Microsoft Management Console (MMC) snap-in to connect to a domain controller.
    You open the Properties dialog box of a user account.
    The user account has sole access to a shared folder path that cannot be accessed by the administrator account.
    You set the Remote Desktop Services Home Folderattribute to the shared folder path.
    NoteThis attribute is located on the
    Remote Desktop Services Profiletab.
    You click Apply or OK.
    In this scenario, you receive the following error message:
    The home folder could not be created because: The network name cannot be found.
    Note If you click Apply or OK again, no error message is returned. However, the setting is not saved.
    I think the important bit is
    The user account has sole access to a shared folder path that cannot be accessed by the administrator account.
    We manually create the shares on our NAS and then just want to enter the path in the profile tab, I suppose the question is how to we stop it trying to create the shares ?

  • The sent mailbox could not be created on the mail server.

    Complete message says:
    The sent mailbox could not be created on the mail server.  The local "Sent Messages (mail)" mailbox was created instead.  Mail has changed your account's Mailbox Behaviors preferences to use the local "Sent Messages (mail)" mailbox.
    I am using a gmail account with my own domain.  Any ideas how to fix it?

    Menu: Mailbox -> User This Mailbox For
    First, select folders of your IMAP account, and map them to different common folders.

Maybe you are looking for

  • New iPod update has messed up my Artist list!!!

    I would greatly appreciate if anyone could help me out, as this problem is causing a great deal of annoyance & frustration. My iPod recently that there was a new update to download, which I did. However, once I did this, this has greatly messed up my

  • Carriage returns in web galleries?

    Has anyone succeeded in putting carriage returns in web galleries? The most important place is in the caption option where you can string together a bunch of metadata fields. Surely people want a carriage return between their caption field and, for e

  • Can I add extra RAM on a mini?

    This may be a stupid question, but here it goes... my iBook G3 recently past away (a sad, sad day, I might add), so to save a little money, I decided to replace it with a Mac Mini until I can invest in a new iBook. While I eagerly await its arrival,

  • SCCM 2012 Reports not visible

    Hi All, I am unable to view Reports in the SCCM CM 2012 console and the URL. I have installed the Reporting service in DB server and later also ran the Reporting service configuration on DB server. After that I am able to browse to the URL but do not

  • Formatting error when installing Oracle VM 2.1.1

    Hi Guys, I am installing Oracle VM 2.1.1 on an HP NetServer LH6000. 3 disk arrays have been created using the HP Netraid utility and the default values used during the VM installation process including the default partitioning. When it gets to the la