I just created a new symfony3.2.6. project and added a few vendors (FOS User Bundle, Propel2 and Twig) but no new console seem to be available. At least I do not see any of them when using 'app/console' or 'bin/console' command.
/app/autoload.php is loaded from the console-file which also seems to load the /vendor/autoload.php file.
Are you able to give me a hint on what I might have done wrong?
Thanks a lot!
Steffen
figured it out. The problem was a wrong version-requirement description on packagist.org THANKS FOR YOUR HELP!!!
I've downloaded the software and have run ./bin/karaf
what is the further procedure?
How to start controller? I want to use REST APIs to add flow entries.
Any help is greatly appreciated. Thanks!
Follow this link:
https://www.opendaylight.org/sites/opendaylight/files/bk-install-guide-20141002.pdf
install the necessary features
open the dlux web page using (odl ip address:8181/dlux/ndex.html)
there you can find the services which you want.
I am searching for almost 3 hours and I am unable to find the jar which has libcore.net.http.ChunkedInputStream If anyone know please guide me on this. thanks
I downloaded jars from http://www.java2s.com/Code/Jar/h/httpresponsecache.htm but couldn't find...
Please look at this screenshot, I am adding the correct jar but still I can't import it
I think you are looking at wrong package name, the fully qualified class name as per our discussion in chat and your image snapshot is as below.
org.apache.commons.httpclient.ChunkedInputStream
and not
libcore.net.http.ChunkedInputStream
You can download the file for the class mentioned above which is part of HTTP Commons from this location.
Is it possible to download complete solution from Ohloh? I am trying to implement elFinder in my asp.net web page, but I am unable to make it work. I am still getting "Unable to connect to backend" error. I have found a project on Ohloh, but I cannot see any download links for the complete solution, only for single files. Is it possible to download it in a single pack (zip/rar/tar)?
Ohloh does not actually host the sourcecode. Here's the CodePlex page for the elFinder: http://elfinderaspnet.codeplex.com/.
I've just started developing silverlight applications. I've created a webserivce in my asp.net project. Now, when I try to connect to it through my silverlight project I receive the following error:
"the opreation is not supported for a relative uri"
I am using the following url -->
http://192.168.1.2/MyWebsite/SubVersionedHistory.svc
I can find the class and its methods, but I receive this horrific error when I add it.
Thank you for your help and advice,
Vondiplo
I don't think you're alone in hitting this problem. I hit it today with VS2008SP1 + SL2 trying to create a Service Reference for an ADO.NET Data Service. First time I've hit the error.
Others have detailed similar experiences to reach this error:
http://silverlight.net/forums/t/87535.aspx
http://silverlight.net/forums/t/56629.aspx
It's not entirely clear at this point if the issue is with the IDE "Add Service Reference" dialog or something specific in the services causing this error. In my case, however, my code still worked despite the error message. I simply passed the URL to my service in the constructor of my DataService proxy client, like this:
var context = new DataServiceContext(new Uri("NorthwindDataService.svc", UriKind.Relative));
Summary point: Just because you hit this error in the IDE, your service reference may still work. Give it a try and let us know if you're seeing errors at run time.
Hope that helps.
[UPDATE] Based on some other advice I've found and tested, you can also try:
deleting your Service Reference
deleting your ServiceReferences.ClientConfig file
saving your solution
and then closing and reopening it in VS.
The simple act of closing and reopening your project has been shown to fix several problems with the Add Service wizard. Re-run the Add Service Ref wizard and you may have better luck. I personally tested this solution on a project today and can confirm it works. Hope that adds extra help to finding your solution.
You should be more specific about your problem. For example, are you having this problem when adding the reference or when you actually try to consume the service?
It sounds like you need to be using a full path, including the "http://" but that is just a shot in the dark based on the error message you provide.
[edit]If you are using the built in ASP.NET server instead of IIS then be sure you set a specific port number and use it in your path. For example, I have used http://localhost:4940/MyService.svc for testing[/edit]
Maybe this response can help you
You cannot use AbsolutePath, You need to use AbsoluteURL. Build your URL this way:
Uri url = new Uri(App.Current.Host.Source, "../settings.xml");client.DownloadStringAsync(url);
http://silverlight.net/forums/p/28912/95541.aspx
HTH
Braulio
Check the ServiceReferences.ClientConfig
if there are multiple endpoints there you will get this exception. one thing that can cause this is referencing a service using casini, later switiching to IIS express and rereferencing the service.