Questions tagged [webresource]

104 questions
0
votes
2 answers

Java Jersey Newbie Q: Import Statement Error?

I'm working on making a REST call from Jersey, using docs from blogs.oracle.com. Here's my import statement to get access to WebResource: import com.sun.jersey.api.client.WebResource; I'm getting the error, "Cannot resolve symbol 'Client'". How can…
VikR
  • 4,818
  • 8
  • 51
  • 96
0
votes
1 answer

Pop-up a webresource in new window in Microsoft CRM

I am creating a timer application for Microsoft CRM. I created the application as a web resource already and it works. It uses CRM's XRM client-side code to do the work. It needs to update data in a custom entity within CRM. However requirements…
cmartin
  • 2,819
  • 1
  • 26
  • 31
0
votes
1 answer

JavaScript .click doesnt work in IE 11

I have been trying to get this code working for multi select option sets for dynamic crm. My problem here is that this code works effortlessly in Chrome, does exactly what I want it to but in IE the .click event returns false no matter what, if the…
shabbzy
  • 85
  • 1
  • 8
0
votes
2 answers

Issue with using Xrm.Utility.openQuickCreate() from HTML web resource

I'm trying to open an entity's Quick Create form from an HTML web resource from navigation of an entity. I'm using Xrm.Utility.openQuickCreate("entityname", null, null) for a start. I get an error saying JQueryApi is not defined in the browser's…
priyeshwagh777
  • 65
  • 2
  • 11
0
votes
1 answer

Want to access "form_title_div" control in WebResource (js) in CRM 2011

I have an Entity in CRM-2011. I want to put up a small panel in the title of this entity. I am adding a webresource javascript file inside which i am trying to access the title bar of this entity. What i have written is…
Avdhut Vaidya
  • 314
  • 2
  • 13
0
votes
1 answer

Unable to get property 'setSrc' of undefined or null reference: Cant figure out this error.

I have upgraded from CRM 2011 to CRM 2015 Online and when I open up a "Contact:Information" record I get an error saying: Unable to get property 'setSrc' of undefined or null reference at fiframhistory(name of web resource) This is for an Iframe…
PJM
  • 45
  • 2
  • 7
0
votes
1 answer

CRM 2011, Creating SalesOrderDetail with JavaScript

I'm having some trouble creating a salesorderdetail with JavaScript in CRM 2011 from a WebResource. I have tried using XrmServiceToolkit (both rest and soap) and also just with jquery. They all fail and the error messages I get don't really point me…
Aidal
  • 799
  • 4
  • 8
  • 33
0
votes
2 answers

How to pass CRM Dynamics 2015 Form data(filed values) to an HTML page which has JavaScript functions

I recently acquired a JavaScript API for a web-phone web client. From CRM I want to launch this client and pass my CRM Form data to it, I have created a custom ribbon button that has to call that HTML Page and pass relevant data to it. The ribbon…
Papi
  • 555
  • 13
  • 40
0
votes
1 answer

How to display html webresource on top of MS dynamcis CRM main page

I have created a HTML web resource which contains jQuery DateTime Picker control customized as per my needs. When I add it to the CRM entity page it shows an input fields as usual. However when I click into this input field, the DateTime picker…
VJOY
  • 3,752
  • 12
  • 57
  • 90
0
votes
1 answer

can escaping ruin my http GET request?

I try to trigger an http GET request It should be as follows: https://www.my_service.com/myRequest?from=x%3A34.78104114532471+y%3A31.243920719573723&to=x%3A34.77901339530945+y%3A31.242416368424312& I wrote this code …
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
0
votes
2 answers

Embedding a Bitmap in ASP.NET's WebResource

I am generating a System.Drawing.Bitmap on the fly in an ASP.NET Custom Web Server Control, and then I want to serve this bitmap as part of the WebResource, because I do not want to save it on the hosting computer. Is there a way to instruct ASP.NET…
Andreas Grech
  • 105,982
  • 98
  • 297
  • 360
0
votes
0 answers

How to combine WebResource requests in java

I am writing a script using java that send requests to two API's and in my code I am using many WebResource requests because I have to go back and forth between them fetching information. WebResource sample = client.resource("http://" +…
jquerynoob
  • 663
  • 1
  • 7
  • 15
0
votes
1 answer

Web-resources from Javascript

I need to get handlebars templates in Javascript. So I create template file in tpl folder and wrote such line in ML: if I put some image to this folder I can to get it from CSS: .css …
waldemar
  • 655
  • 2
  • 10
  • 24
0
votes
1 answer

webResource.get(String.class) return null

I created a Jersey client program to consume a REST web service that return XML. Client client = Client.create(); WebResource webResource = client.resource("http://xyz:abc/myRestservice/getval"); I use the webResource get method to store the return…
Karut
  • 1
  • 1
  • 2
0
votes
1 answer

Access Denied error on web resource Dynamics CRM 2011

I'm trying to call a web page hosted on another domain on a iFrame inside a web resource. I'm getting the Access Denied error when the page is trying to use the jQuery code under his code. I've been searching the web and a found some ways that…